/* ============================================
   FAQ PAGE - PREMIUM STYLES
   ============================================ */

/* ---------- HERO ---------- */
.faq-hero {
    min-height: 600px;
}
.faq-hero .highlight {
    color: #6FB3FF;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb-section {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
}
.breadcrumb-section .breadcrumb {
    font-size: 0.85rem;
}
.breadcrumb-section .breadcrumb a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumb-section .breadcrumb a:hover {
    color: var(--color-primary);
}
.breadcrumb-section .breadcrumb .active {
    color: var(--color-primary);
}

/* ---------- FAQ CONTENT ---------- */
.faq-content {
    padding: 80px 0;
    background: var(--color-bg-white);
}

.faq-category {
    margin-bottom: 2.5rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category h3 {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: 0.5rem;
}

.faq-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-primary-gradient);
    border-radius: 3px;
}

/* ---------- ACCORDION ---------- */
.faq-content .accordion-item {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-content .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-content .accordion-button {
    font-weight: 600;
    padding: 1rem 1.25rem;
    background: var(--color-bg-white);
    color: var(--color-text-primary);
    transition: var(--transition);
}

.faq-content .accordion-button:hover {
    background: #f8fafc;
}

.faq-content .accordion-button:not(.collapsed) {
    background: #f0f4ff;
    color: var(--color-primary);
    box-shadow: none;
}

.faq-content .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-content .accordion-button::after {
    transition: transform 0.3s;
}

.faq-content .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.faq-content .accordion-body {
    padding: 1.25rem 1.25rem 1.5rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    background: #fafbfc;
    border-top: 1px solid var(--color-border-light);
}

.faq-content .accordion-body a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.faq-content .accordion-body a:hover {
    text-decoration: underline;
}

.faq-content .accordion-body strong {
    color: var(--color-text-primary);
}

/* ---------- STILL HAVE QUESTIONS ---------- */
.still-questions {
    padding: 60px 0;
    border-top: 1px solid var(--color-border-light);
}

.still-questions .highlight {
    color: var(--color-primary);
}

.still-questions .btn {
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
}

.still-questions .btn-primary {
    background: var(--color-primary-gradient);
    color: #fff;
}
.still-questions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.still-questions .btn-outline-primary {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.still-questions .btn-outline-primary:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .faq-hero {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        min-height: 400px;
    }
    .faq-content {
        padding: 48px 0;
    }
    .still-questions {
        padding: 40px 0;
    }
    .faq-content .accordion-button {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
    }
    .faq-content .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
    .faq-category h3 {
        font-size: 1.25rem;
    }
    .faq-nav .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        min-height: 44px;
    }
}

@media (max-width: 576px) {
    .faq-hero h1 {
        font-size: 1.8rem;
    }
    .faq-content .accordion-button {
        font-size: 0.85rem;
    }
    .still-questions .btn {
        width: 100%;
        justify-content: center;
    }
}
