/* Font Awesome CDN - head etiketine ekle */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* MÜŞTERİ YORUMLARI STYLES */
.musteri-yorumlari {
    background: linear-gradient(135deg, #323030 0%, #000000 100%);
    padding: 100px 0;
    position: relative;
}

.yorum-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.yorum-header {
    text-align: center;
    margin-bottom: 80px;
}

.yorum-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.yorum-header p {
    font-size: 1.3rem;
    color: #bdc3c7;
}

/* SLIDER CONTAINER */
.yorum-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
}

.yorum-track {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    transition: transform 0.5s ease;
}

/* YORUM ITEM STYLES */
.yorum-item {
    position: absolute;
    width: 450px;
    transition: all 0.5s ease;
}

.yorum-prev {
    left: 50px;
    transform: translateX(0) scale(0.85);
    opacity: 0.6;
    z-index: 1;
}

.yorum-active {
    left: 50%;
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 3;
}

.yorum-next {
    right: 50px;
    transform: translateX(0) scale(0.85);
    opacity: 0.6;
    z-index: 1;
}

/* YORUM CARD */
.yorum-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.yorum-active .yorum-card {
    box-shadow: 0 30px 70px rgba(74, 74, 74, 0.3);
    border: 2px solid #5e5e5e;
}

/* MÜŞTERİ BİLGİ */
.musteri-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.musteri-resim {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 4px solid #000000;
    box-shadow: 0 5px 15px rgba(74, 74, 74, 0.3);
}

.musteri-detay h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

/* PUANLAMA SİSTEMİ */
.puanlama {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yildizlar {
    display: flex;
    gap: 3px;
}

.yildizlar i {
    color: #f39c12;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(243, 156, 18, 0.3);
}

.yildizlar .fa-star-half-alt {
    color: #f39c12;
}

.yildizlar .far.fa-star {
    color: #ddd;
}

.puan {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    background: #f8f9fa;
    padding: 6px 14px;
    border-radius: 20px;
    border: 2px solid #e9ecef;
}

/* YORUM TEXT */
.yorum-text {
    color: #555;
    line-height: 1.3;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-style: italic;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* YORUM FOOTER */
.yorum-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.proje-bilgi {
    color: #000000;
    font-weight: 700;
    font-size: 1rem;
}

.yorum-tarih {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* SLIDER BUTONLARI */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000000;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #3f3f3f;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(74, 74, 74, 0.3);
}

.prev-btn {
    left: -30px;
}

.next-btn {
    right: -30px;
}

/* INDICATORS */
.slider-indicators {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #3498db;
    transform: scale(1.3);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .yorum-slider {
        max-width: 1000px;
        height: 450px;
    }
    
    .yorum-item {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .yorum-slider {
        height: 500px;
        max-width: 600px;
    }
    
    .yorum-item {
        width: 350px;
    }
    
    .yorum-prev {
        left: 20px;
        transform: translateX(0) scale(0.8);
    }
    
    .yorum-next {
        right: 20px;
        transform: translateX(0) scale(0.8);
    }
    
    .yorum-card {
        padding: 30px;
        height: 380px;
    }
    
    .musteri-resim {
        width: 70px;
        height: 70px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .prev-btn {
        left: -25px;
    }
    
    .next-btn {
        right: -25px;
    }
}


}
@media (max-width: 480px) {
    .yorum-slider {
        height: 550px;
    }
    
    .yorum-item {
        width: 320px;
    }
    
    .yorum-prev {
        left: 10px;
        transform: translateX(0) scale(0.75);
    }
    
    .yorum-next {
        right: 10px;
        transform: translateX(0) scale(0.75);
    }
    
    .yorum-card {
        padding: 25px;
        height: 400px;
    }
    
    .musteri-info {
        flex-direction: column;
        text-align: center;
    }
    
    .musteri-resim {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .puanlama {
        justify-content: center;
    }
    
    .yorum-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .yorum-header h2 {
        font-size: 2.5rem;
    }
    
    .yorum-header p {
        font-size:1.1rem;
    .musteri-detay h4 {
        font-size: 1rem;
    }
    
    .yildizlar i {
        font-size: 0.9rem;
    }
    
    .yorum-text {
        font-size: 0.85rem;
        line-height: 1.45;
    }
    
    .puan {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
    
    .proje-bilgi {
        font-size: 0.85rem;
    }
    
    .yorum-tarih {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .musteri-detay h4 {
        font-size: 0.95rem;
    }
    
    .yorum-text {
        font-size: 0.82rem;
        line-height: 1.4;
    }
    
    .proje-bilgi,
    .yorum-tarih {
        font-size: 0.78rem;
    }
}