/* FAQ Page - Premium V2 Styles */
:root {
    --brand-red: #e2001a;
    --brand-dark: #0f172a;
    --text-slate: #64748b;
    --faq-bg: #f8fafc;
}

.faq-hero {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #1e293b 100%);
    padding: 100px 0 140px;
    text-align: center;
    color: #fff;
    position: relative;
}

.faq-container {
    max-width: 1000px;
    margin: -100px auto 100px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Category Pills */
.faq-category-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    overflow-x: auto;
    padding: 10px 10px 25px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.faq-category-nav::-webkit-scrollbar { display: none; }

.faq-cat-btn {
    padding: 14px 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-dark);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-cat-btn:hover {
    transform: translateY(-2px);
    border-color: var(--brand-red);
    color: var(--brand-red);
    box-shadow: 0 10px 20px -5px rgba(226, 0, 26, 0.1);
}

.faq-cat-btn.active {
    background: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
    box-shadow: 0 10px 25px -5px rgba(226, 0, 26, 0.3);
}

/* Section Blocks */
.faq-section-block {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.faq-section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 10px;
}

.faq-section-title i {
    width: 44px;
    height: 44px;
    background: #fff;
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
}

/* FAQ Cards */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.faq-card-header {
    width: 100%;
    padding: 24px 30px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-dark);
    transition: all 0.3s ease;
}

.faq-card-header span { flex: 1; margin-right: 20px; }

.faq-card-header .chevron {
    width: 32px;
    height: 32px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #94a3b8;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fff;
}

.faq-card-content {
    padding: 0 30px 30px;
    color: var(--text-slate);
    line-height: 1.7;
    font-size: 15px;
    border-top: 1px solid transparent;
    transition: border-color 0.4s ease;
}

/* Active State */
.faq-card.active {
    border-color: var(--brand-red);
    box-shadow: 0 20px 40px -15px rgba(226, 0, 26, 0.15);
}

.faq-card.active .faq-card-header {
    color: var(--brand-red);
    padding-bottom: 15px;
}

.faq-card.active .faq-card-header .chevron {
    background: var(--brand-red);
    color: #fff;
    transform: rotate(180deg);
}

.faq-card.active .faq-card-body {
    max-height: 800px;
}

.faq-card.active .faq-card-content {
    border-top-color: #f1f5f9;
    padding-top: 20px;
}

/* Support CTA */
.faq-cta {
    margin-top: 60px;
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.faq-cta h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; color: var(--brand-dark); }
.faq-cta p { color: var(--text-slate); margin-bottom: 25px; }
.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-dark);
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    background: var(--brand-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(226, 0, 26, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .faq-hero { padding: 70px 0 110px; }
    .faq-container { margin-top: -70px; }
    
    .faq-category-nav {
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }
    
    .faq-cat-btn { 
        padding: 10px 18px; 
        font-size: 13px; 
        border-radius: 12px;
    }
    
    .faq-card-header { padding: 18px 20px; font-size: 15px; }
    .faq-card-content { padding: 0 20px 20px; }
    .faq-section-title { font-size: 18px; margin-bottom: 18px; }
    .faq-section-title i { width: 34px; height: 34px; font-size: 15px; border-radius: 10px; }
}
