/* FAQ Section Styles */
.faq-section {
    background: transparent;
    padding: 70px 20px;
    margin: 0;
}

/* Hizmet sayfaları için daha kompakt S.S.S alanı */
.service-faq-compact.faq-section {
    padding: 28px 0;
}

.service-faq-compact .faq-header {
    margin-bottom: 0;
}

.service-faq-compact .faq-title {
    font-size: 20px;
    margin: 0;
}

.service-faq-compact .faq-item {
    border-width: 1px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.service-faq-compact .faq-question {
    padding: 12px 12px;
}

.service-faq-compact .faq-question-text {
    font-size: 14px;
    padding-right: 14px;
}

.service-faq-compact .faq-icon {
    width: 30px;
    height: 30px;
}

.service-faq-compact .faq-icon i {
    font-size: 14px;
}

.service-faq-compact .faq-answer-text {
    font-size: 13.5px;
    line-height: 1.7;
}

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

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

.faq-badge {
    display: inline-block;
    background: var(--primary, #1abdb8);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.faq-description {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    width: 100%;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary, #1abdb8);
    box-shadow: 0 4px 12px rgba(26, 189, 184, 0.1);
}

.faq-item.active {
    border-color: var(--primary, #1abdb8);
    box-shadow: 0 4px 12px rgba(26, 189, 184, 0.15);
}

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

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

.faq-question-text {
    font-size: 14.5px;
    font-weight: 600;
    color: #1f2937;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 16px;
    color: #1f2937;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--primary, #1abdb8);
    border-color: var(--primary, #1abdb8);
}

.faq-item.active .faq-icon i {
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 15px;
}

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

.faq-answer p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 70px 20px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-description {
        font-size: 14px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question-text {
        font-size: 15px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    
    .faq-icon i {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px 15px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

