/* ==================== FAQ Section ==================== */
.faq-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3b82f6;
    display: block;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.faq-title span {
    color: #71717a;
    /* Zinc 500 */
}

.faq-subtitle {
    font-size: 18px;
    color: #a1a1aa;
    /* Zinc 400 */
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
    color: #3b82f6;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.faq-toggle::before {
    width: 14px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-toggle::before {
    background-color: #3b82f6;
    transform: rotate(180deg);
}

.faq-item.active .faq-toggle::after {
    background-color: #3b82f6;
    transform: rotate(90deg);
}

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

.faq-answer-content {
    padding: 0 30px 24px;
    color: #a1a1aa;
    /* Zinc 400 */
    line-height: 1.6;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust based on content length */
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-question h4 {
        font-size: 16px;
        padding-right: 18px;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
    }
}