/* FAQ Elegant & Minimalist Design */

/* FAQ Section */
#faq {
    position: relative;
    background: var(--bg-color);
}

/* Search Box - Minimalist */
.faq-search-wrapper {
    max-width: 650px;
    margin: 0 auto 50px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.search-box input {
    width: 100%;
    padding: 18px 20px 18px 56px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.search-box input:focus {
    border-color: var(--accent-color);
    outline: none;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.08);
}

.search-box input:focus + i,
.search-box:focus-within i {
    color: var(--accent-color);
}

/* FAQ Categories - Clean Pills */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-cat-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-cat-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(204, 255, 0, 0.05);
}

.faq-cat-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-color);
}

.faq-cat-btn i {
    font-size: 0.95rem;
}

/* FAQ Wrapper */
.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

/* FAQ Items - Clean & Elegant */
.faq-item-main {
    margin-bottom: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item-main[style*="display: none"] {
    display: none !important;
}

.faq-question-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-main:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item-main.active .faq-question-main {
    border-color: rgba(204, 255, 0, 0.2);
    background: rgba(204, 255, 0, 0.03);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-q-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.faq-q-content span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

/* FAQ Icon - Simple Circle */
.faq-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(204, 255, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-item-main.active .faq-icon {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Arrow - Minimal */
.faq-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.faq-item-main.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent-color);
}

/* FAQ Answer - Clean */
.faq-answer-main {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item-main.active .faq-answer-main {
    max-height: 400px;
    opacity: 1;
}

.faq-answer-main p {
    padding: 24px 26px 26px 86px;
    background: rgba(204, 255, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: none;
    border-radius: 0 0 12px 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* FAQ CTA - Elegant */
.faq-cta {
    margin-top: 60px;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.faq-cta:hover {
    border-color: rgba(204, 255, 0, 0.2);
    background: rgba(204, 255, 0, 0.02);
}

.faq-cta-content h3 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-cta-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-cta .btn {
    white-space: nowrap;
}

/* Responsive - Mobile First */
@media (max-width: 992px) {
    .faq-search-wrapper {
        margin-bottom: 40px;
    }
    
    .faq-categories {
        gap: 8px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .search-box input {
        padding: 16px 18px 16px 50px;
        font-size: 0.95rem;
    }
    
    .search-box i {
        left: 18px;
    }
    
    .faq-cat-btn {
        padding: 9px 18px;
        font-size: 0.85rem;
    }
    
    .faq-question-main {
        padding: 18px 20px;
        gap: 14px;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.1rem;
    }
    
    .faq-q-content {
        gap: 12px;
    }
    
    .faq-q-content span {
        font-size: 0.95rem;
    }
    
    .faq-answer-main p {
        padding: 20px;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-cta {
        padding: 30px 24px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .faq-cta-content h3 {
        font-size: 1.3rem;
    }
    
    .faq-cta-content p {
        font-size: 0.95rem;
    }
    
    .faq-cta .btn {
        width: 100%;
    }
}

