/**
 * FAQ Section Styles
 */

.faq-section {
    padding: 4rem 2rem;
    background: rgba(2, 11, 19, 0.2);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: rgba(250, 247, 242, 0.92);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.01em;
}

.faq-subtitle {
    font-size: 14px;
    color: rgba(250, 247, 242, 0.52);
    margin: 0;
}

.faq-list {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.02);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--sovereign, #D4AF37);
}

.faq-question.open {
    color: var(--sovereign, #D4AF37);
    background: rgba(212, 175, 55, 0.05);
}

.faq-q-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(250, 247, 242, 0.92);
    flex: 1;
}

.faq-question:hover .faq-q-text {
    color: inherit;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 175, 55, 0.45);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover .faq-icon {
    color: var(--sovereign, #D4AF37);
}

.faq-question.open .faq-icon {
    transform: rotate(180deg);
    color: var(--sovereign, #D4AF37);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.04);
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: rgba(250, 247, 242, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

.faq-answer a {
    color: var(--sovereign, #D4AF37);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* FAQ Page — hero + category headings */
.faq-page-hero {
    padding: 80px 2rem 60px;
    text-align: center;
    background: var(--obsidian, #020B13);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.faq-page-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}
.faq-page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    color: rgba(250, 247, 242, 0.95);
    line-height: 1.15;
    margin: 12px 0 20px;
    letter-spacing: -0.02em;
}
.faq-page-title em {
    font-style: italic;
    color: var(--sovereign, #D4AF37);
}
.faq-page-intro {
    font-size: 15px;
    color: rgba(250, 247, 242, 0.55);
    font-style: italic;
    margin: 0;
}
.faq-page-body {
    background: var(--obsidian, #020B13);
    min-height: 50vh;
}
.faq-page-body .faq-section {
    padding: 60px 2rem 80px;
    border: none;
    background: none;
}
.faq-category {
    max-width: 800px;
    margin: 0 auto 3rem;
}
.faq-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sovereign, #D4AF37);
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Light background pages */
.about-page .faq-section,
.contact-page .faq-section {
    background: rgba(10, 10, 10, 0.02);
    border-top-color: rgba(10, 10, 10, 0.1);
    border-bottom-color: rgba(10, 10, 10, 0.1);
}

.about-page .faq-title,
.contact-page .faq-title {
    color: rgba(10, 10, 10, 0.92);
}

.about-page .faq-q-text,
.contact-page .faq-q-text {
    color: rgba(10, 10, 10, 0.92);
}

.about-page .faq-question:hover,
.contact-page .faq-question:hover {
    color: #8B2635;
}

.about-page .faq-answer-content,
.contact-page .faq-answer-content {
    color: rgba(10, 10, 10, 0.72);
}

.about-page .faq-answer a,
.contact-page .faq-answer a {
    color: #8B2635;
}

/* Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: 2.5rem 1rem;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: 13px;
    }
}
