/* FAQ Section Styles */

/* === FAQ SECTION === */
.faq-section {
    padding: 120px 5%;
    background-color: rgba(5, 5, 5, 0.9);
    position: relative;
    z-index: 5;
}

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

.faq-item {
    background-color: var(--card-background);
    border: 1px solid #222;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 215, 0, 0.05);
}

.faq-question h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(255, 215, 0, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    border-top: 1px solid #333;
}

.faq-answer p {
    padding: 25px 30px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1em;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 5%;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 1.1em;
    }
    
    .faq-answer p {
        padding: 20px;
        font-size: 0.95em;
    }
    
    .faq-toggle {
        margin-left: 15px;
    }
}