/* ==================================
   CONTACT HERO
================================== */

.contact-hero {

    position: relative;

}

.hero-overlay {

    background:
        linear-gradient(
            rgba(0,0,0,.50),
            rgba(0,0,0,.50)
        );

}

.hero-subtitle {

    color: #bfdbfe;

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: .9rem;

    margin-bottom: 1.5rem;

}

.hero-title {

    font-size: clamp(
        3rem,
        6vw,
        5.5rem
    );

    line-height: 1.05;

    color: white;

    font-weight: 700;

}

.hero-text {

    color: rgba(255,255,255,.9);

    max-width: 700px;

    line-height: 1.9;

    font-size: 1.1rem;

    margin-top: 2rem;

}

/* ==================================
   CONTACT CARDS
================================== */

.contact-card {

    background: white;

    border: 1px solid #E2E8F0;

    border-radius: 24px;

    padding: 2.5rem;

    text-align: center;

    transition: .3s ease;

}

.contact-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.08);

}

.contact-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 24px;

    border-radius: 20px;

    background: #EAF1FC;

    display: flex;

    align-items: center;

    justify-content: center;

}

.contact-icon i {

    color: #0A3D91;

    font-size: 1.8rem;

}

.contact-card h3 {

    font-size: 1.4rem;

    color: #0F172A;

    margin-bottom: 10px;

}

.contact-card p {

    color: #64748B;

    font-size: 1rem;

}

/* ==================================
   CONTACT FORM
================================== */

.contact-form-wrapper {

    background: white;

    border-radius: 32px;

    padding: 4rem;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.05);

}

.contact-form label {

    display: block;

    margin-bottom: 10px;

    color: #0F172A;

    font-weight: 500;

}

.contact-form input,
.contact-form textarea {

    width: 100%;

    border: 1px solid #E2E8F0;

    border-radius: 18px;

    padding: 16px 18px;

    transition: .3s ease;

    background: white;

}

.contact-form textarea {

    resize: vertical;

}

.contact-form input:focus,
.contact-form textarea:focus {

    outline: none;

    border-color: #0A3D91;

    box-shadow:
        0 0 0 4px
        rgba(10,61,145,.10);

}

#formStatus {

    font-size: .95rem;

    font-weight: 500;

}

/* ==================================
   FAQ
================================== */

.faq-wrapper {

    display: flex;

    flex-direction: column;

    gap: 24px;

}

.faq-item {

    background: #F8FAFC;

    border: 1px solid #E2E8F0;

    border-radius: 20px;

    padding: 30px;

}

.faq-item h3 {

    color: #0F172A;

    font-size: 1.2rem;

    margin-bottom: 12px;

}

.faq-item p {

    color: #64748B;

    line-height: 1.9;

}

/* ==================================
   CTA BUTTONS
================================== */

.white-btn {

    background: white;

    color: #0A3D91;

    padding: 16px 32px;

    border-radius: 999px;

    font-weight: 600;

    transition: .3s ease;

}

.white-btn:hover {

    transform: translateY(-3px);

}

/* ==================================
   FOOTER
================================== */

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-top: 20px;

}

.footer-links a {

    color: rgba(255,255,255,.75);

    transition: .3s ease;

}

.footer-links a:hover {

    color: white;

}

.social-links {

    display: flex;

    gap: 12px;

    margin-top: 20px;

}

.social-links a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.15);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s ease;

}

.social-links a:hover {

    background: #0A3D91;

    border-color: #0A3D91;

}

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.1);

    margin-top: 60px;

    padding-top: 30px;

    text-align: center;

}

/* ==================================
   RESPONSIVE
================================== */

@media (max-width: 1024px) {

    .contact-form-wrapper {

        padding: 3rem;

    }

}

@media (max-width: 768px) {

    .hero-title {

        font-size: 3rem;

    }

    .hero-text {

        font-size: 1rem;

    }

    .contact-form-wrapper {

        padding: 2rem;

    }

}

@media (max-width: 576px) {

    .hero-title {

        font-size: 2.5rem;

    }

    .contact-card {

        padding: 2rem;

    }

    .contact-form-wrapper {

        padding: 1.5rem;

    }

}