/* ===== FAQ PAGE STYLES ===== */

/* Breadcrumbs */
.faq-breadcrumbs {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
}
.faq-breadcrumbs a {
    color: #2e7d32;
    text-decoration: none;
}
.faq-breadcrumbs a:hover {
    text-decoration: underline;
}

/* Hero */
.faq-hero {
    background: linear-gradient(135deg, #1a5c2e 0%, #2e7d32 50%, #43a047 100%);
    color: #fff;
    padding: 60px 0;
}
.faq-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    align-items: center;
    gap: 28px;
}
.faq-hero__content {
    text-align: left;
}
.faq-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.faq-hero__sub {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0;
}
.faq-hero__media {
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq-hero__img {
    display: block;
    width: min(100%, 260px);
    height: auto;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,0.18));
}

/* Truth Section */
.faq-truth {
    padding: 50px 0 30px;
}
.faq-truth__box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: #fff8e1;
    border: 2px solid #ffb300;
    border-radius: 16px;
    padding: 35px;
    max-width: 900px;
    margin: 0 auto;
}
.faq-truth__icon {
    font-size: 3rem;
    flex-shrink: 0;
}
.faq-truth__content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}
.faq-truth__content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}
.faq-truth__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.faq-truth__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 0.95rem;
    color: #333;
}
.faq-truth__badge-icon {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Accordion Section */
.faq-accordion {
    padding: 50px 0 60px;
}
.faq-accordion .section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
}
.faq-accordion__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-accordion__item {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-accordion__item[open] {
    background: #fff;
    border-color: #2e7d32;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
}
.faq-accordion__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.3s;
}
.faq-accordion__question::-webkit-details-marker {
    display: none;
}
.faq-accordion__question::after {
    content: '▼';
    font-size: 0.75rem;
    color: #999;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}
.faq-accordion__item[open] .faq-accordion__question::after {
    transform: rotate(180deg);
    color: #2e7d32;
}
.faq-accordion__item[open] .faq-accordion__question {
    color: #2e7d32;
}
.faq-accordion__answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.75;
    color: #555;
}
.faq-accordion__answer p {
    margin-bottom: 10px;
}
.faq-accordion__answer ul {
    margin: 10px 0;
    padding-left: 20px;
}
.faq-accordion__answer ul li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 5px;
}
.faq-accordion__answer ul li::marker {
    color: #2e7d32;
}

/* CTA */
.faq-cta {
    background: linear-gradient(135deg, #1a5c2e 0%, #2e7d32 50%, #43a047 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.faq-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.faq-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.faq-cta__btn {
    display: inline-block;
    background: #ff6d00;
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 109, 0, 0.4);
}
.faq-cta__btn:hover {
    background: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 109, 0, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 1.8rem;
    }
    .faq-hero__sub {
        font-size: 1rem;
    }
    .faq-truth__box {
        flex-direction: column;
        padding: 25px;
        gap: 15px;
    }
    .faq-truth__badges {
        grid-template-columns: 1fr;
    }
    .faq-truth__content h2 {
        font-size: 1.25rem;
    }
    .faq-accordion .section-title {
        font-size: 1.5rem;
    }
    .faq-accordion__question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    .faq-accordion__answer {
        padding: 0 18px 16px;
        font-size: 0.95rem;
    }
    .faq-cta h2 {
        font-size: 1.5rem;
    }
    .faq-cta p {
        font-size: 1rem;
    }
    .faq-cta__btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 40px 0;
    }
    .faq-hero h1 {
        font-size: 1.5rem;
    }
    .faq-truth__box {
        padding: 20px;
    }
    .faq-truth__icon {
        font-size: 2.5rem;
    }
    .faq-accordion__question {
        padding: 14px 15px;
        font-size: 0.9rem;
    }
}

/* ===== TRUST PAGE OVERRIDES ===== */
.faq-breadcrumbs {
    background: transparent;
    border-bottom: 1px solid rgba(31, 90, 75, 0.08);
}

.faq-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 68%, #2d7967 100%);
    border-radius: 0 0 34px 34px;
    box-shadow: var(--shadow-lg);
    padding: 72px 0;
}

.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 24%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 52%);
    pointer-events: none;
}

.faq-hero .container {
    position: relative;
}

.faq-truth,
.faq-accordion {
    background: transparent;
}

.faq-truth__box {
    background: linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
    border: 1px solid rgba(196, 145, 66, 0.3);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.faq-truth__content h2 {
    color: var(--text-main);
}

.faq-truth__content p,
.faq-accordion__answer {
    color: var(--text-muted);
}

.faq-truth__badge,
.faq-accordion__item {
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.faq-truth__badge {
    background: rgba(255, 255, 255, 0.88);
}

.faq-accordion__item {
    background: rgba(255, 255, 255, 0.94);
}

.faq-accordion__item[open] {
    border-color: rgba(31, 90, 75, 0.22);
    box-shadow: var(--shadow-md);
}

.faq-accordion__question {
    color: var(--text-main);
    padding: 22px 24px;
}

.faq-accordion__answer {
    padding-bottom: 24px;
}

.faq-cta {
    background: transparent;
}

.faq-cta .container {
    background: linear-gradient(135deg, var(--brand-strong) 0%, var(--brand) 72%, #2d7967 100%);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    padding: 3rem 2rem;
}

.faq-cta__btn {
    background: linear-gradient(135deg, #234b60 0%, var(--brand) 100%);
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(31, 90, 75, 0.22);
    letter-spacing: 0.02em;
    text-transform: none;
}

.faq-cta__btn:hover {
    background: linear-gradient(135deg, #102d36 0%, #19483b 100%);
}

@media (max-width: 768px) {
    .faq-hero {
        border-radius: 0 0 26px 26px;
        padding: 54px 0;
    }

    .faq-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .faq-hero__content {
        text-align: center;
    }

    .faq-hero__sub {
        margin: 0 auto;
    }

    .faq-hero__media {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .faq-hero__img {
        width: min(100%, 210px);
        max-height: 240px;
    }

    .faq-truth__box {
        border-radius: 24px;
    }

    .faq-cta .container {
        border-radius: 24px;
        padding: 2.3rem 1.2rem;
    }
}
