/* FAQ Accordion Light Version - Clean design for light backgrounds */
.wp-block-acf-faqaccordion.cng-faq-accordion-light {
    position: relative;
    background: #ffffff !important;
    padding: 100px 0;
    overflow: hidden;
}

/* Remove any dark overlays */
.cng-faq-accordion-light::before,
.cng-faq-accordion-light::after {
    display: none !important;
}

/* Container */
.cng-faq-accordion-light .faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Header Section */
.cng-faq-accordion-light .faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.cng-faq-accordion-light .faq-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.cng-faq-accordion-light .faq-title {
    font-weight: 800;
    color: #0f172a !important;
    margin-bottom: 24px;
    line-height: 1.1;
}

.cng-faq-accordion-light .faq-description {
    color: #64748b !important;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Filters */
.cng-faq-accordion-light .faq-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.cng-faq-accordion-light .filter-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cng-faq-accordion-light .filter-button:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #f0f9ff;
}

.cng-faq-accordion-light .filter-button.active {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: #3b82f6;
    color: #ffffff;
}

.cng-faq-accordion-light .filter-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
}

.cng-faq-accordion-light .filter-button.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

/* FAQ Items */
.cng-faq-accordion-light .faq-items {
    margin-bottom: 80px;
}

.cng-faq-accordion-light .faq-item {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cng-faq-accordion-light .faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cng-faq-accordion-light .faq-item.active {
    border-color: #3b82f6;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

/* Question Button */
.cng-faq-accordion-light .faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.cng-faq-accordion-light .faq-question:hover {
    background: #f8fafc;
}

.cng-faq-accordion-light .question-text {
    font-weight: 600;
    color: #0f172a;
    line-height: 1.5;
    flex: 1;
}

/* Question Icon */
.cng-faq-accordion-light .question-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cng-faq-accordion-light .faq-item:hover .question-icon {
    background: #e0e7ff;
}

.cng-faq-accordion-light .question-icon svg {
    position: absolute;
    color: #64748b;
    transition: all 0.3s ease;
}

.cng-faq-accordion-light .icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.cng-faq-accordion-light .faq-question[aria-expanded="true"] .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.cng-faq-accordion-light .faq-question[aria-expanded="true"] .icon-minus {
    opacity: 1;
    transform: rotate(0);
}

.cng-faq-accordion-light .faq-question[aria-expanded="true"] .question-icon {
    background: #3b82f6;
}

.cng-faq-accordion-light .faq-question[aria-expanded="true"] .question-icon svg {
    color: #ffffff;
}

/* Answer Section */
.cng-faq-accordion-light .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.cng-faq-accordion-light .answer-content {
    padding: 0 32px 24px;
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cng-faq-accordion-light .faq-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    border: 2px solid #e2e8f0;
}

.cng-faq-accordion-light .faq-cta h3 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.cng-faq-accordion-light .faq-cta p {
    color: #64748b;
    margin-bottom: 32px;
}

.cng-faq-accordion-light .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cng-faq-accordion-light .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cng-faq-accordion-light .cta-button.primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cng-faq-accordion-light .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.cng-faq-accordion-light .cta-button.secondary {
    background: #ffffff;
    color: #3b82f6;
    border: 2px solid #e2e8f0;
}

.cng-faq-accordion-light .cta-button.secondary:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cng-faq-accordion-light {
        padding: 80px 0;
    }
    
    .cng-faq-accordion-light .faq-question {
        padding: 20px 24px;
    }
    
    .cng-faq-accordion-light .answer-content {
        padding: 0 24px 20px;
    }
    
    .cng-faq-accordion-light .faq-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        margin: 0 -24px 48px;
        padding: 0 24px;
    }
    
    .cng-faq-accordion-light .filter-button {
        flex-shrink: 0;
    }
    
    .cng-faq-accordion-light .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cng-faq-accordion-light .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cng-faq-accordion-light .faq-header {
        margin-bottom: 40px;
    }
    
    .cng-faq-accordion-light .faq-cta {
        padding: 40px 24px;
    }
}
