/* ===== FAQ Page Specific Styles ===== */

.faq-page-hero {
    background: var(--bg-dark);
    padding: 120px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
}

.faq-page-hero .hero-content {
    position: relative;
    z-index: 2;
}

.faq-page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 16px;
}

.faq-page-hero p {
    color: var(--text-dim);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-search {
    max-width: 500px;
    margin: 32px auto 0;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-sm);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    color: var(--text-bright);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.faq-search input::placeholder {
    color: var(--text-muted);
}

.faq-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
}

.faq-search svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
}

.faq-categories {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.faq-cat {
    padding: 6px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    border-radius: 100px;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.faq-cat:hover, .faq-cat.active {
    background: rgba(200,16,46,0.15);
    border-color: rgba(200,16,46,0.3);
    color: var(--primary-light);
}

/* FAQ full list */
.faq-full-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 16px;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
}

.faq-section-title:first-child {
    margin-top: 0;
}

/* CTA box at bottom of FAQ */
.faq-cta-box {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    color: var(--text-bright);
    position: relative;
    overflow: hidden;
}

.faq-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
}

.faq-cta-box > * {
    position: relative;
    z-index: 2;
}

.faq-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-cta-box p {
    color: var(--text-dim);
    margin-bottom: 24px;
}

/* Structured data for SEO - JSON-LD */
.faq-jsonld {
    display: none;
}
