/**
 * FAQ Section Styles
 */

.faq-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 20px;
    margin: 60px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.faq-title {
    font-size: 2.5em;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 1.2em;
    color: #64748b;
    line-height: 1.6;
}

.faq-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-category-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 0.95em;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-2px);
}

.faq-category-btn.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: white;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    user-select: none;
}

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

.faq-question-text {
    font-size: 1.1em;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
}

.faq-question-icon {
    font-size: 1.5em;
    color: #6366f1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95em;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

.faq-answer-content strong {
    color: #1e293b;
    font-weight: 600;
}

.faq-answer-content a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer-content a:hover {
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-cta-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.faq-cta-text {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 1em;
}

.faq-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.faq-cta-btn.primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.faq-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.faq-cta-btn.secondary {
    background: #f1f5f9;
    color: #475569;
}

.faq-cta-btn.secondary:hover {
    background: #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }
    
    .faq-title {
        font-size: 1.8em;
    }
    
    .faq-subtitle {
        font-size: 1em;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question-text {
        font-size: 1em;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
        font-size: 0.9em;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
    }
    
    .faq-cta-btn {
        width: 100%;
    }
}
