/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 8rem; /* Space for wave */
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 1200" opacity="0.05"><path d="M0 0h1200v1200H0z" fill="none"/><circle cx="600" cy="600" r="400" fill="%23fff"/></svg>');
    background-size: 400px;
}

.contact-wave {
    height: 120px;
}

/* Contact Cards */
.contact-card {
    transition: all 0.3s ease;
    border-radius: 16px !important;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.contact-icon {
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info p {
    line-height: 1.6;
}

/* Form Styles */
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > label {
    color: #6c757d;
    padding: 1rem 0.75rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 1rem 0.75rem;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

/* Map Placeholder */
.map-placeholder {
    border-radius: 16px;
}

/* Utility Classes */
.bg-light-subtle {
    background-color: #f8f9fa;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.9);
}

/* Custom form focus effects */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    transform: scale(0.85) translateY(-0.8rem) translateX(0.15rem);
    color: #3498db;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .form-side, .info-side {
        border-radius: 16px !important;
    }
    
    .info-side {
        margin-top: 1rem;
    }
}