/* ============================================
   FAQ PAGE - SOLNER
============================================ */

/* Hero */
.hero-faq {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #001489 0%, #0a2b9e 60%, #1a3cb5 100%);
    padding-top: 194px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-faq .hero-background-image,
.hero-faq .hero-overlay,
.hero-faq .hero-gradient-mesh,
.hero-faq .hero-grid-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-faq .hero-overlay {
    background: rgba(0, 20, 137, 0.6);
}

/* FAQ Page Section */
.faq-page-section {
    padding: 80px 0 100px;
    background: #f8f9fc;
}

.faq-page-tabs {
    max-width: 860px;
    margin: 0 auto;
}

.faq-tab-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.faq-tab-btn {
    padding: 10px 22px;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    background: #fff;
    color: #525252;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.faq-tab-btn:hover {
    border-color: #dc582a;
    color: #dc582a;
}

.faq-tab-btn.active {
    background: #dc582a;
    border-color: #dc582a;
    color: #fff;
}

.faq-tab-content {
    display: none;
}

.faq-tab-content.active {
    display: block;
}

/* FAQ Items */
.faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.faq-item.open {
    border-color: #dc582a;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: #262626;
    line-height: 1.5;
}

.faq-question svg {
    flex-shrink: 0;
    color: #dc582a;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    border-top: 1px solid #f0f0f0;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    color: #525252;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-top: 14px;
}

@media (max-width: 768px) {
    .faq-page-section {
        padding: 50px 0 70px;
    }
    .faq-tab-buttons {
        gap: 8px;
    }
    .faq-tab-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
    .faq-question {
        padding: 16px 18px;
    }
    .faq-question span {
        font-size: 0.95rem;
    }
}
