/* Hero Banner: Enhanced for better readability */
.contact-hero {
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
    position: relative;
    color: var(--white);
    text-align: center;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Form Card Styling */
.contact-form-card {
    background: var(--rgba-white-48);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

/* Info Panel Styling */
.info-panel {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    opacity: 0.9;
    color: white;
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
}

.info-panel h3 {
    font-weight: 700;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item .icon {
    font-size: 1.5rem;
    margin-right: 1.5rem;
    min-width: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.info-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.info-item a:hover {
    opacity: 0.8;
}

/* Form Input Groups */
.input-group-text {
    background-color: var(--gray-200);
    border-color: var(--gray-200);
    border-right: none;
    border-radius: 16px 0 0 16px !important;
    color: var(--primary-color);
}

.form-control {
    border-radius: 16px !important;
    border: 2px solid var(--gray-200);
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 16px 16px 0 !important;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--rgba-primary-03);
    background-color: white;
}

/* Submit Button */
.submit-btn {
    background: var(--gray-800);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--rgba-primary-08);
}

/* FAQ & Map Sections */
.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--rgba-primary-03);
    color: var(--primary-dark);
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}
