/* Modern FAQ Section - Site Uyumlu */
.faq-section {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(74, 222, 176, 0.1), rgba(74, 222, 176, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(74, 222, 176, 0.08), rgba(74, 222, 176, 0.03));
    border-radius: 50%;
    z-index: 1;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4adeb0, #26a69a);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 400;
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 20px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 222, 176, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 222, 176, 0.15);
    border-color: rgba(74, 222, 176, 0.2);
}

.faq-item.active {
    border-color: #4adeb0;
    box-shadow: 0 8px 30px rgba(74, 222, 176, 0.2);
}

.faq-question {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid rgba(74, 222, 176, 0.1);
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #4adeb0, #26a69a);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-question::before,
.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
    color: #1a202c;
}

.faq-arrow {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4adeb0, #26a69a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 222, 176, 0.3);
}

.faq-arrow.rotate {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #26a69a, #4adeb0);
}

.faq-answer {
    padding: 0 30px 30px 30px;
    background: white;
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    display: none;
    animation: fadeInUp 0.4s ease;
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    margin: 0;
    padding-top: 10px;
}

.faq-answer strong {
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 25px 20px;
        font-size: 0.95rem;
    }
    
    .faq-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }
    
    .faq-question {
        padding: 18px 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 15px 20px 15px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.faq-item:nth-child(even):hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
}

/* Active State Styling */
.faq-item.active .faq-question {
    background: linear-gradient(135deg, #e8f8f5 0%, #d1f2e8 100%);
    color: #1a202c;
}

.faq-item.active .faq-answer {
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
}