/* Genel Bölüm Ayarları */
.musteri-yorumlari-bolumu {
    background-color: #0a0a0a; /* Önceki bölümlerle uyumlu zifiri karanlık arka plan */
    padding: 80px 20px;
    position: relative;
}

/* 1600px Sınır Kapsayıcısı */
.yorumlar-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* --- BAŞLIK ALANI --- */
.yorumlar-baslik-alani {
    text-align: center;
    margin-bottom: 60px;
}

.kucuk-baslik {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.kucuk-baslik .cizgi {
    width: 40px;
    height: 1px;
    background-color: var(--yellow);
}

.ana-baslik {
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sari-yazi {
    color: var(--yellow);
}

.aciklama-metni {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
}

/* --- MÜŞTERİ YORUMLARI GRID (Masaüstü 4'lü) --- */
.yorumlar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Kart Genel Yapısı */
.yorum-karti {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden; /* Dışarı taşan arka plan resmini keser */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.yorum-karti:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 167, 7, 0.3);
}

/* Sağ Alttaki Araç Görseli ve Fade (Geçiş) Efekti */
.yorum-arka-plan {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 80%;
    height: 60%;
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.15; /* Sadece gölge gibi durması için */
    z-index: 1;
    /* Resmi soldan sağa ve yukarıdan aşağıya yavaşça kaybederek siyaha karıştırır */
    mask-image: linear-gradient(to bottom right, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 10%, black 100%);
}

/* Sağ Üstteki Devasa Tırnak */
.dev-tirnak {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 45px;
    color: var(--yellow);
    opacity: 0.8;
    z-index: 2;
}

/* İçeriklerin üstte kalması için z-index ayarı */
.kart-icerik-ust, .musteri-bilgi {
    position: relative;
    z-index: 3;
}

/* Yıldızlar */
.yildizlar {
    color: var(--yellow);
    font-size: 16px;
    margin-bottom: 25px;
    display: flex;
    gap: 4px;
}

/* Yorum Metni */
.yorum-metni {
    color: #ddd;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Müşteri Kimlik Alanı (Alt kısım) */
.musteri-bilgi {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto; /* İçeriği hep en alta iter */
}

.avatar-kutu {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
}

.avatar-kutu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.musteri-isim {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.musteri-unvan {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 500;
}


/* --- ALT İSTATİSTİK BARI --- */
.istatistik-kutusu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 35px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-ikon {
    color: var(--yellow);
    font-size: 40px;
}

.stat-icerik {
    display: flex;
    flex-direction: column;
}

.stat-deger {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-metin {
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
}


/* ========================================== */
/* === MOBİL VE TABLET TASARIMI ============= */
/* ========================================== */

@media (max-width: 1200px) {
    /* Tablet için kartları 2x2 yapalım */
    .yorumlar-grid { grid-template-columns: repeat(2, 1fr); }
    .ana-baslik { font-size: 40px; }
}

@media (max-width: 992px) {
    /* İstatistikleri tablet için 2x2 yapalım */
    .istatistik-kutusu { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid rgba(255, 255, 255, 0.05); justify-content: flex-start; padding-left: 20%;}
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
    /* Mobil Tam Ekran (App Görünümü) */
    .musteri-yorumlari-bolumu { padding: 60px 15px; }
    
    .ana-baslik { font-size: 32px; }
    
    .yorumlar-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .yorum-karti { padding: 30px 20px; }
    
    .dev-tirnak { font-size: 35px; top: 20px; right: 20px; }
    
    .yorum-metni { font-size: 14px; }
    
    .yorum-arka-plan { opacity: 0.1; width: 90%; } /* Mobilde resmi biraz daha belirsiz yapalım ki yazıyı ezmesin */

    /* Mobilde İstatistikleri Ortala */
    .stat-item { justify-content: flex-start; padding: 25px 15px; }
    .stat-ikon { font-size: 32px; }
    .stat-deger { font-size: 22px; }
    .stat-metin { font-size: 12px; }
}