/* ============================================================
   FLORAPANEL - SIKÇA SORULAN SORULAR (SSS)
   ============================================================ */

/* 1. HEADER ALANI */
.faq-header-section {
    background: linear-gradient(to bottom, #1B4D3E, #2C7A62); /* Koyu yeşil gradyan */
    padding: 60px 0;
    color: #fff;
    margin-bottom: 30px;
}

.faq-main-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.faq-main-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 20px;
}

.divider-center {
    width: 60px; height: 4px;
    background-color: var(--accent); /* Turuncu */
    margin: 0 auto;
    border-radius: 2px;
}

/* 2. SSS LİSTESİ */
.faq-wrapper {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.faq-item {
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.3s ease;
}
.faq-item:last-child { border-bottom: none; }

/* Aktif Durum */
.faq-item.active {
    background-color: #f9fafb;
}

/* Soru Butonu */
.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.question-text {
    padding-right: 20px;
    line-height: 1.4;
}

/* İkon Kutusu (+/-) */
.icon-state {
    width: 35px; height: 35px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background-color: #f3f4f6;
    color: var(--primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Cevap Alanı (Animasyonlu) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.answer-content {
    padding: 0 25px 25px;
    color: #4b5563; /* Gri metin */
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- AKTİF DURUM EFEKTLERİ --- */

/* İkonu döndür ve renklendir */
.faq-item.active .icon-state {
    transform: rotate(45deg); /* Artı işaretini çarpı yapar */
    background-color: var(--primary);
    color: #fff;
}

/* Aktif soru rengi */
.faq-item.active .faq-question {
    color: var(--primary-dark);
}

/* 3. İLETİŞİM KUTUSU */
.contact-redirect-box {
    padding: 30px;
    background: #F0FDFA; /* Çok açık yeşil */
    border-radius: 12px;
    border: 1px dashed var(--primary);
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .faq-header-section { padding: 40px 0; }
    .faq-main-title { font-size: 2rem; }
    .faq-question { padding: 15px 20px; font-size: 1rem; }
}