/* Premium FAQ Page CSS */
.faq-page {
    font-family: 'Cerebri Sans', sans-serif;
    color: #1e293b;
    line-height: 1.8;
    background-color: #f8fafc;
}

.text-gradient {
    background: linear-gradient(135deg, #086ad8 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.bg-dark-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #ffffff;
}

.sec-pad {
    padding-top: 80px;
    padding-bottom: 80px;
}

.faq-breadcrumb {
    padding-top: 15px !important;
    padding-bottom: 20px !important;
}

/* Hero Section */
.faq-hero {
    background: radial-gradient(circle at 10% 20%, rgba(8, 106, 216, 0.05) 0%, rgba(124, 58, 237, 0.05) 90.2%);
    padding: 80px 0;
    text-align: center;
}

.faq-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-hero p {
    font-size: 17px;
    max-width: 850px;
    margin: 0 auto;
    color: #475569;
}

/* Layout */
.faq-sidebar {
    position: sticky;
    top: 110px;
    z-index: 10;
    margin-bottom: 30px;
}

.faq-sidebar-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 15px;
    padding-left: 5px;
}

.faq-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-nav-item {
    display: block;
    padding: 12px 20px;
    color: #475569;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.faq-nav-item:hover {
    color: #086ad8;
    border-color: #086ad8;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(8, 106, 216, 0.05);
}

.faq-nav-item.active {
    background: linear-gradient(135deg, #086ad8 0%, #7c3aed 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(8, 106, 216, 0.15);
}

.faq-nav-item.active:hover {
    color: #ffffff;
    transform: none;
}

/* FAQ Accordion Cards */
.faq-section {
    margin-bottom: 50px;
    scroll-margin-top: 120px;
}

.faq-section-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.faq-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #086ad8, #7c3aed);
}

.faq-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-card:hover {
    border-color: #086ad8;
    box-shadow: 0 10px 25px rgba(8, 106, 216, 0.05);
}

.faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.faq-btn:focus {
    outline: none;
}

.faq-btn .faq-icon {
    font-size: 14px;
    color: #64748b;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-btn:not(.collapsed) {
    color: #086ad8;
    background-color: rgba(8, 106, 216, 0.02);
}

.faq-btn:not(.collapsed) .faq-icon {
    background: linear-gradient(135deg, #086ad8 0%, #7c3aed 100%);
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 24px 24px 24px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    background-color: rgba(8, 106, 216, 0.02);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.faq-body ul {
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 20px;
}

.faq-body li {
    margin-bottom: 6px;
}

/* Still Have Questions CTA */
.faq-cta-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.faq-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #086ad8, #7c3aed);
}

.faq-cta-card h3 {
    font-weight: 800;
    margin-bottom: 12px;
}

.faq-cta-card p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 25px;
    max-width: 600px;
}

.faq-cta-card .btn {
    padding: 14px 30px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Responsiveness */
@media (max-width: 991px) {
    .faq-sidebar {
        position: static;
    }
    
    .faq-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .faq-nav-item {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .faq-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .faq-cta-card {
        padding: 30px 20px;
    }
    
    .faq-hero h1 {
        font-size: 28px;
    }
    
    .faq-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .faq-body {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
}
