/* ==========================================
   MÜŞTERİ YORUMLARI GENEL AYARLAR
   ========================================== */
.testimonials-section {
    background: #f4f6f9; /* Üstteki beyaz bölümden ayrılması için çok hafif mavi-gri bir ton */
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.container-testi {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ÜST BAŞLIK --- */
.testi-header {
    text-align: center;
    margin-bottom: 50px;
}
.testi-header .badge-light {
    margin: 0 auto 15px auto;
}
.testi-header h2 {
    font-size: 38px;
    color: #111;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}
.testi-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* --- YORUM KARTLARI IZGARASI --- */
.testi-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

/* Kart Tasarımı */
.testi-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 35px 30px;
    flex: 1 1 calc(33.333% - 25px); /* Masaüstünde yan yana 3'lü */
    min-width: 320px;
    max-width: 450px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #ffd6d6;
}

/* Tırnak İkonu */
.quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 45px;
    color: rgba(227, 6, 19, 0.08); /* Çok hafif, filigran gibi duran kırmızı tırnak */
    transition: all 0.4s ease;
}
.testi-card:hover .quote-icon {
    color: rgba(227, 6, 19, 0.15);
    transform: scale(1.1) rotate(5deg);
}

/* Yıldızlar */
.stars {
    color: #ffc107; /* Orjinal sarı yıldız rengi */
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}

/* Yorum Metni */
.testi-text {
    color: #444;
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Müşteri Bilgileri */
.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}
.c-avatar {
    font-size: 40px;
    color: #d1d1d1; /* Resim olmadığı için şık bir standart avatar ikonu */
}
.c-details {
    display: flex;
    flex-direction: column;
}
.c-details strong {
    font-size: 15px;
    color: #111;
    font-weight: 700;
}
.c-details span {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* ==========================================
   MOBİL UYUMLULUK
   ========================================== */
@media (max-width: 1024px) {
    .testi-card { flex: 1 1 calc(50% - 25px); } /* Tablette yan yana 2'li */
}

@media (max-width: 768px) {
    .testimonials-section { padding: 60px 0; }
    .testi-header h2 { font-size: 28px; }
    .testi-card { flex: 1 1 100%; max-width: 100%; padding: 25px 20px; }
    .testi-text { font-size: 13.5px; }
}