
/* --------------------------------
   9. FAQ
-------------------------------- */
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.faq-category {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-bright);
    margin: 30px 0 15px;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.faq-category::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 8px auto 0;
}

.faq-item {
    border: 1px solid #000;
    margin-bottom: 10px;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 25px;
    font-size: 1.05em;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
    font-family: var(--system-font);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: var(--gold);
    font-family: var(--system-font);
    transition: var(--transition-base);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer-content {
    padding: 0 25px 25px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}
