/* ══════════════════════════════════════════
   FAQ PAGE STYLES
   Matches design with categorized accordions
   and premium typography/spacing.
   ══════════════════════════════════════════ */

.faq-hero {
    padding: 80px 60px 40px 80px;
    background: transparent;
}

.faq-hero-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: var(--heading-size);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #0d0d0d;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.faq-hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: var(--content-size);
    color: #555;
    max-width: 500px;
    line-height: 1.6;
}

/* ── FAQ Content Area ── */
.faq-content-wrap {
    padding: 20px 80px 100px 80px;
    max-width: 95%;
}

.faq-category-group {
    margin-bottom: 60px;
}

.faq-cat-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #8b1a1a;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(139, 26, 26, 0.1);
}

/* ── Accordion List ── */
.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-acc-item {
    /* background: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-acc-item[open] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(139, 26, 26, 0.2);
}

.faq-acc-summary {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    /* Hide default arrow */
}

.faq-acc-summary::-webkit-details-marker {
    display: none;
    /* Hide default arrow Chrome */
}

.faq-acc-q {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: var(--subheading-size);
    color: #0d0d0d;
    padding-right: 20px;
}

.faq-acc-icon {
    position: relative;
    width: 20px;
    height: 2px;
    background: #8b1a1a;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-acc-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8b1a1a;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.faq-acc-item[open] .faq-acc-icon::after {
    transform: rotate(0deg);
}

/* ── Answer Content ── */
.faq-acc-answer {
    padding: 0 30px 30px 30px;
    font-family: 'Inter', sans-serif;
    font-size: var(--content-size);
    line-height: 1.75;
    color: #444;
}

.faq-acc-answer ul {
    margin: 15px 0 0 20px;
    padding: 0;
}

.faq-acc-answer li {
    margin-bottom: 8px;
}

/* ── Footer CTA ── */
.faq-footer-cta {
    margin-top: 40px;
    padding: 40px;
    background: rgba(139, 26, 26, 0.03);
    border-radius: 16px;
    text-align: center;
}

.faq-footer-cta p {
    font-family: 'Inter', sans-serif;
    font-size: var(--content-size);
    font-weight: 600;
    color: #0d0d0d;
    margin-bottom: 20px;
}

.faq-btn-primary {
    display: inline-block;
    background: #8b1a1a;
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
}

.faq-btn-primary:hover {
    background: #a11e1e;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .faq-hero {
        padding: 60px 24px 30px 24px;
    }

    .faq-hero-heading {
        font-size: 38px;
    }

    .faq-content-wrap {
        padding: 20px 24px 80px 24px;
    }

    .faq-acc-q {
        font-size: 17px;
    }
}

/* ══════════════════════════════════════════
   DARK MODE
   ══════════════════════════════════════════ */

body.dark .faq-hero-heading {
    color: #f0f0f0;
}

body.dark .faq-hero-sub {
    color: #ccc;
}

body.dark .faq-cat-title {
    color: #f0f0f0;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark .faq-acc-item {
    background: #1e1e1e;
    border-color: #333;
}

body.dark .faq-acc-item[open] {
    border-color: #444;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body.dark .faq-acc-q {
    color: #e0e0e0;
}

body.dark .faq-acc-answer {
    color: #aaa;
}

body.dark .faq-footer-cta {
    background: #1a1a1a;
}

body.dark .faq-footer-cta p {
    color: #f0f0f0;
}