/* contact Hero Section Styles */
.contact-hero-section {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

/* Background Image */
.contact-hero-section .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
    z-index: 1;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

/* Container content above image */
.contact-hero-section > .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Titles */
.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Optional: Background image zoom animation */
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
/* Contact Section */
.support-contact-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    padding: 100px 0;
}

/* Form Wrapper */
.support-contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 75, 154, 0.1);
    padding: 50px;
    transition: all 0.4s ease;
}
.support-contact-form-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 75, 154, 0.2);
}


/* Submit Button */
.support-submit-btn {
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding: 14px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-submit-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 75, 154, 0.2);
    transform: translateY(-3px);
}

/* Contact Info Right */
.support-contact-info {
       background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 75, 154, 0.1);
    padding: 25px;
}
.support-contact-info h3 {
    font-family: "Poppins", sans-serif;
    color: #004b9a;
    margin-bottom: 30px;
}
.support-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.support-contact-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #007bff;
}
.support-contact-details h6 {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #004b9a;
}
.support-contact-details p {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* Quick Contact Card */
.support-quick-contact-card {
    background: #003A78;
    color: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.support-quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 75, 154, 0.15);
}
.support-quick-icon {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}
.support-alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 12px 15px;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
}
.support-recaptcha-error {
    display: block;
    color: red;
    margin-top: 5px;
    font-size: 0.85rem;
}

/* Map Section */
.contact-map-section {
    padding: 0;
    background-color: #f8f9fa;
}

.contact-map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 0;
}

/* FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background-color: white;
}

.contact-faq-title {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #004b9a;
}

.contact-accordion {
    border: none;
}

.contact-accordion-item {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-accordion-item:hover {
    border-color: #004b9a;
    box-shadow: 0 4px 12px rgba(0, 75, 154, 0.1);
}

.contact-accordion-button {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #004b9a;
    font-size: 1rem;
    padding: 20px;
    background-color: white;
    border: none;
}

.contact-accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #004b9a;
    box-shadow: none;
}

.contact-accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.contact-accordion-body {
    font-family: "Inter", sans-serif;
    color: #666;
    padding: 20px;
    background-color: #f8f9fa;
    line-height: 1.8;
}

/* CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #004b9a 0%, #003d7a 100%);
    color: white;
    padding: 80px 0;
}

.contact-cta-title {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-cta-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta-btn-primary {
    background-color: white;
    color: #004b9a;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #004b9a;
}

.contact-cta-btn-secondary {
    background-color: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-cta-btn-secondary:hover {
    background-color: white;
    color: #004b9a;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-cta-title {
        font-size: 1.8rem;
    }

    .contact-cta-buttons {
        flex-direction: column;
    }

    .contact-cta-btn-primary,
    .contact-cta-btn-secondary {
        width: 100%;
    }

    .contact-accordion-button {
        font-size: 0.95rem;
        padding: 15px;
    }

    .contact-accordion-body {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding: 50px 0;
    }

    .contact-info-section,
    .contact-form-section,
    .contact-faq-section,
    .contact-cta-section {
        padding: 50px 0;
    }

    .contact-hero-title {
        font-size: 1.5rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-faq-title {
        font-size: 1.5rem;
    }

    .contact-cta-title {
        font-size: 1.5rem;
    }

    .contact-info-card {
        padding: 25px 15px;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
    }
}
