/* =====================================================
   FAQ.CSS - PAGE FAQ LBAM
===================================================== */

.faq-hero {
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at 15% 20%, rgba(199,161,90,.22), transparent 34%),
        radial-gradient(circle at 85% 10%, rgba(0,0,0,.08), transparent 28%),
        linear-gradient(135deg, #faf7f1 0%, #f1e6d4 100%);
}

.faq-hero-content {
    max-width: 880px;
}

.faq-hero-content p {
    font-size: 20px;
    line-height: 1.75;
    max-width: 760px;
    margin: 28px 0 34px;
}

/* INTRO */

.faq-intro-section {
    margin-top: -45px;
    position: relative;
    z-index: 3;
}

.faq-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.faq-intro-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 38px;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.faq-intro-card i {
    font-size: 42px;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

.faq-intro-card h2 {
    font-size: 30px;
    margin-bottom: 14px;
}

.faq-intro-card p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.faq-intro-card.featured {
    background: var(--black);
    color: rgba(255,255,255,.75);
}

.faq-intro-card.featured h2 {
    color: var(--white);
}

.faq-intro-card.featured i {
    color: var(--gold);
}

/* FAQ SECTIONS */

.faq-section {
    padding: 110px 0;
    background: var(--white);
}

.faq-section-alt {
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 42px;
}

.faq-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 16px 45px rgba(0,0,0,.06);
    transition: .28s ease;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.faq-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.faq-icon i {
    font-size: 24px;
    color: var(--gold-dark);
}

.faq-card h3 {
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.faq-card p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* CTA */

.faq-section + .cta-section {
    padding-top: 0;
}

.cta-box {
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(199,161,90,.38), transparent 32%),
        linear-gradient(135deg, #1c1815, #3b2d22);
    color: rgba(255,255,255,.82);
    border-radius: 42px;
    padding: 90px 50px;
    box-shadow: var(--shadow);
}

.cta-box span {
    display: inline-block;
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 14px;
}

.cta-box h2 {
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 24px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.15;
}

.cta-box p {
    max-width: 760px;
    margin: 0 auto 36px;
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,.85);
}

.cta-box .hero-actions {
    justify-content: center;
}

.cta-box .btn-secondary {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
}

.cta-box .btn-secondary:hover {
    background: rgba(255,255,255,.2);
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .faq-intro-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .faq-hero {
        padding: 70px 0 70px;
    }

    .faq-hero-content p {
        font-size: 17px;
    }

    .faq-intro-section {
        margin-top: -25px;
    }

    .faq-intro-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-intro-card,
    .faq-card {
        padding: 28px;
        border-radius: 26px;
    }

    .faq-section {
        padding: 75px 0;
    }

    .faq-card h3 {
        font-size: 21px;
    }

    .cta-box {
        padding: 60px 24px;
        border-radius: 30px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .cta-box p {
        font-size: 17px;
    }

    .cta-box .hero-actions {
        flex-direction: column;
    }

    .cta-box .hero-actions a {
        width: 100%;
    }
}

.cta-section {
    padding: 0 0 110px;
}

.btn-main,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: all .25s ease;
}

.btn-main {
    background: #151515;
    color: #fff;
    border: 2px solid #151515;
}

.btn-main:hover {
    background: #c7a15a;
    border-color: #c7a15a;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #151515;
    border: 2px solid rgba(0,0,0,.14);
}

.btn-secondary:hover {
    background: #151515;
    color: #fff;
    border-color: #151515;
    transform: translateY(-2px);
}