/* ============================================================
   FAQ SECTION - PREMIUM STYLING
============================================================ */

.faq-section {
    padding: 60px 20px;
    background: #0f0f0f;
    margin: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f5f5f5;
    margin: 0 0 12px 0;
}

.faq-header p {
    color: #cfcfcf;
    font-size: 1rem;
    margin: 0;
}

/* ========================= */
/* FAQ ITEMS               */
/* ========================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 161, 79, 0.2);
    border-radius: 8px;
    overflow: hidden;
    animation: slideIn 0.5s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(n+5) { animation-delay: 0.25s; }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: rgba(200, 161, 79, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(200, 161, 79, 0.1);
    border-left: 3px solid #c8a14f;
    padding-left: 19px;
}

.faq-question-text {
    font-size: 1rem;
    font-weight: 600;
    color: #f5f5f5;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-question:hover .faq-question-text {
    color: #c8a14f;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #c8a14f;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(200, 161, 79, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 18px 22px;
}

.faq-answer-text {
    color: #cfcfcf;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* ========================= */
/* ANIMATIONS              */
/* ========================= */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================= */
/* RESPONSIVE              */
/* ========================= */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
        margin: 40px 0;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 15px 16px;
    }

    .faq-item.active .faq-answer {
        padding: 15px 16px;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .faq-answer-text {
        font-size: 0.9rem;
    }
}
