/* FAQ PAGE STYLES - PREMIUM DARK THEME */
.nextai-faqs-wrapper {
    width: 100%;
    background: #080808;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding: 100px 5%;
    min-height: 80vh;
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.faqs-header {
    text-align: center;
    margin-bottom: 80px;
}

.faqs-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.faqs-subtitle {
    font-size: 20px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Sections */
.faq-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #0066FF;
    border-left: 4px solid #0066FF;
    padding-left: 20px;
}

/* Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.2);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question i {
    font-size: 20px;
    transition: transform 0.4s ease;
    color: #0066FF;
}

.faq-item.active .faq-question {
    color: #0066FF;
}

.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);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #94a3b8;
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    /* Large enough to contain any answer */
}

/* MOBILE */
@media (max-width: 768px) {
    .faqs-title {
        font-size: 42px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}