/**
 * FAQ List Component - Ultra Dark Mode Edition
 */

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .faq-item {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.faq-item[open] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

[data-theme="dark"] .faq-item[open] {
    background: rgba(30, 41, 59, 0.9);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1d20;
    cursor: pointer;
    list-style: none;
    transition: all 0.2s ease;
}

[data-theme="dark"] .faq-question {
    color: #f1f5f9;
}

.faq-question:hover {
    background: rgba(12, 35, 64, 0.03);
}

[data-theme="dark"] .faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: #d4af37;
    transition: transform 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    border-top: 1px solid transparent;
}

[data-theme="dark"] .faq-answer {
    color: rgba(255, 255, 255, 0.7);
}

.faq-item[open] .faq-answer {
    border-top-color: rgba(0, 0, 0, 0.06);
    padding-top: 1rem;
}

[data-theme="dark"] .faq-item[open] .faq-answer {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.faq-actions {
    text-align: center;
    margin-top: 2.5rem;
}

.faq-cta {
    border-color: rgba(12, 35, 64, 0.2);
    color: #1a1d20;
    transition: all 0.3s ease;
}

.faq-cta:hover {
    border-color: #0c2340;
    color: #0c2340;
    background: rgba(12, 35, 64, 0.05);
}

[data-theme="dark"] .faq-cta {
    border-color: rgba(212, 175, 55, 0.4);
    color: #d4af37;
}

[data-theme="dark"] .faq-cta:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}
