/* FAQ Section Styles */
.faq-section {
    padding: 120px 0;
    background-color: #05050a; /* Portfolyo ile uyumlu derin siyah */
    color: #fff;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(230, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    transition: 0.3s;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Aktif Durum (Açıldığında) */
.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-red);
}

.faq-item.active .faq-icon {
    transform: rotate(135deg); /* Artı ikonunu çarpıya çevirir */
    background: var(--primary-red);
    color: #fff;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-red);
}

/* Cevap Alanı */
.faq-answer {
    max-height: 0; /* Başlangıçta gizli */
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Cevabın uzunluğuna göre ayarlanır */
    padding: 0 30px 25px 30px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* Mobil */
@media (max-width: 768px) {
    .faq-question { padding: 20px; }
    .faq-question h3 { font-size: 1rem; padding-right: 15px; }
}