/* FAQ Section */
.faq-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.faq-title {
    font-family: sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--space-4xl);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* FAQ List */
.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:nth-child(1) {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-item:nth-child(2) {
    border-color: rgba(16, 185, 129, 0.3);
}

.faq-item:nth-child(3) {
    border-color: rgba(245, 158, 11, 0.3);
}

.faq-item:nth-child(4) {
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-item:nth-child(5) {
    border-color: rgba(236, 72, 153, 0.3);
}

.faq-item:nth-child(6) {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    padding: var(--space-2xl) var(--space-3xl);
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: var(--font-weight-medium);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
    transition: all var(--transition-normal);
}

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

.faq-question span:first-child {
    flex: 1;
}

/* FAQ Icon */
.faq-icon {
    font-size: 2rem;
    font-weight: var(--font-weight-light);
    color: var(--color-text-secondary);
    transition: all var(--transition-normal);
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    color: var(--color-primary);
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 var(--space-3xl);
}

.faq-section .faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--space-3xl) !important;
}

.faq-answer p {
    color: var(--color-text-secondary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 !important;
    padding: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: var(--space-3xl) 0;
    }

    .faq-title {
        margin-bottom: var(--space-3xl);
        font-size: 1.8rem;
    }

    .faq-question {
        padding: var(--space-xl) var(--space-2xl);
        font-size: 1.1rem;
    }

    .faq-icon {
        font-size: 1.5rem;
    }

    .faq-answer {
        padding: 0 var(--space-2xl);
    }

    .faq-section .faq-item.active .faq-answer {
        padding-bottom: var(--space-2xl) !important;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: var(--space-lg) var(--space-xl);
        font-size: 1rem;
        gap: var(--space-md);
    }

    .faq-answer {
        padding: 0 var(--space-xl);
    }

    .faq-section .faq-item.active .faq-answer {
        padding-bottom: var(--space-xl) !important;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}
