/* ========================================
   FAQ ACCORDION FUNCTIONALITY - DISABLED
   All FAQ answers are now always visible
   ======================================== */

.faq-item {
    cursor: default;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 217, 255, 0.2) !important;
}

.faq-question {
    cursor: default;
    position: relative;
    padding-right: 0 !important;
    user-select: none;
}

/* Remove the +/- indicators */
.faq-question::after {
    display: none;
}

.faq-item.active .faq-question::after {
    display: none;
}

/* Make answers always visible */
.faq-answer {
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    margin-top: 0.75rem !important;
}

.faq-item.active .faq-answer {
    max-height: none !important;
    opacity: 1 !important;
    margin-top: 0.75rem !important;
}

/* Remove animation */
@keyframes fadeIn {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer {
    animation: none;
}

/* Remove active state styling */
.faq-item.active {
    background: var(--bg-secondary) !important;
    border-left-color: var(--primary-color) !important;
}

/* Focus styles for accessibility */
.faq-question:focus {
    outline: none;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .faq-question::after {
        display: none;
    }
    
    .faq-item.active .faq-answer {
        max-height: none !important;
    }
}
