/* ========================================
   FAQ PAGE - Özel stiller
   Ortak stiller custom.css'te tanımlıdır
   ======================================== */

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.faq-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--orange);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    color: var(--orange);
}

.faq-item.active .faq-question i.fa-plus-circle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--bg-light);
    padding: 0 25px 0 60px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 25px 25px 60px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}



/* ========================================
   RESPONSIVE - FAQ Page
   ======================================== */
@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-category-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px 55px;
    }
    
    /* Responsive styles for FAQ page */
}

@media (max-width: 480px) {
    .faq-answer.active {
        padding: 0 15px 15px 50px;
    }
}
