.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.contact-subtitle {
    color: #64748b;
    max-width: 600px;
    margin: auto;
}

.contact-info-cards .card {
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.contact-info-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card {
    background: #f1f5f9;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.map-card {
    background: #f1f5f9;
    transition: all 0.3s ease;
}

.map-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-control {
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    padding: 12px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

.btn-success {
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

@media (max-width: 991px) {
    .map-card {
        min-height: 300px;
        margin-top: 20px;
    }
}

.invisible-link {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.invisible-link:hover {
    color: #ff6b6b;
}
