/* ========================================
   FAQ (SSS) PAGE STYLES
   ======================================== */

.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #04223e;
    margin-bottom: 20px;
}

.faq-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #e74c3c;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    background: #ffffff;
    border-color: #e74c3c;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #e74c3c;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.faq-item.active .faq-icon {
    background: #e74c3c;
    color: #ffffff;
    transform: rotate(45deg);
    border-color: #e74c3c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 30px 30px 30px;
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
}

/* Secondary CTA on FAQ */
.faq-help-box {
    margin-top: 80px;
    padding: 60px;
    background: #04223e;
    border-radius: 24px;
    text-align: center;
    color: #ffffff;
}

.faq-help-box h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.faq-help-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2.2rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 20px;
    }

    .faq-help-box {
        padding: 40px 20px;
    }
}