/* FAQ Section - Premium Design */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
    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(168, 85, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.25);
}

.faq-item.active {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 8px 28px rgba(168, 85, 247, 0.12);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(168, 85, 247, 0.02);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    flex: 1;
    letter-spacing: -0.01em;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border-radius: 8px;
    color: #a855f7;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(102, 126, 234, 0.2) 100%);
    transform: rotate(45deg);
}

.faq-icon i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    border-top: 1px solid transparent;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 24px 28px 28px 28px;
    border-top-color: rgba(168, 85, 247, 0.25);
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.04) 0%, rgba(102, 126, 234, 0.02) 50%, transparent 100%);
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-header {
        margin-bottom: 50px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px 20px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 20px 24px 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-subtitle {
        font-size: 15px;
    }
    
    .faq-question {
        padding: 18px 20px;
        gap: 16px;
    }
    
    .faq-question-text {
        font-size: 15px;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px 20px 22px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

