/* FAQ Styles — Premium Futuristic Glassmorphism */
.faq-section {
    padding: 80px 0;
    position: relative;
}

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

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 211, 105, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item:hover {
    border-color: rgba(255, 211, 105, 0.3);
    background: rgba(255, 211, 105, 0.05);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--gold-energy);
    background: rgba(255, 211, 105, 0.08);
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--gold-energy);
    transition: transform 0.4s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: rgba(248, 249, 250, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }
}
