/* Elegant FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item.elegant {
    background: white;
    border-radius: 16px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.faq-item.elegant:hover {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    border-color: rgba(0, 120, 227, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8faff 0%, #f0f4fa 100%);
}

.question-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.1) 0%, rgba(0, 120, 227, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0078e3;
    font-size: 1rem;
    box-shadow: 
        0 4px 10px rgba(0, 120, 227, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 120, 227, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex-grow: 1;
    line-height: 1.4;
}

.toggle-icon {
    color: #0078e3;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 120, 227, 0.05);
}

.faq-answer {
    padding: 0 2rem 1.5rem 5.5rem;
    display: none;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

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

.faq-item.active .faq-answer {
    display: block;
    opacity: 1;
    height: auto;
    padding-top: 1.5rem;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

/* FAQ Section - Elegant Design */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4fa 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 120, 227, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(254, 210, 92, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header.elegant {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.1) 0%, rgba(0, 120, 227, 0.05) 100%);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 120, 227, 0.2);
    margin-bottom: 1.5rem;
    color: #0078e3;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 
        0 8px 25px rgba(0, 120, 227, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.section-badge i {
    font-size: 1rem;
}

/* Responsive styles for FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .question-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.9rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.25rem 4.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}
