/* ==========================================================================
   YABIZ TESTIMONIALS SECTION (DANIŞAN YORUMLARI) - STYLESHEET
   Birebir Referans Tasarımı + Line Art Sanatı + Cursive "Yorumlar"
   ========================================================================== */

/* Google Fonts: Caveat & Dancing Script for Handwritten "Yorumlar" */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Dancing+Script:wght@600;700&display=swap');

.yabiz-testimonials-wrapper {
  background-color: #f7f5f0;
  padding: 5rem 0;
  margin: 3rem 0 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.yabiz-testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .yabiz-testimonials-container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
  }
}

/* ==========================================================================
   Sol Kolon: Estetik Çizgi Sanatı (Line Art Woman)
   ========================================================================== */
.yabiz-testi-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.yabiz-testi-lineart {
  width: 100%;
  max-width: 360px;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.04));
  transition: transform 0.4s ease;
}

.yabiz-testi-visual:hover .yabiz-testi-lineart {
  transform: scale(1.03);
}

/* ==========================================================================
   Sağ Kolon: Başlık, Yorum Kartları & Kaydırıcı
   ========================================================================== */
.yabiz-testi-content {
  display: flex;
  flex-direction: column;
}

/* Başlık Alanı (Fotoğraftaki Birebir Düzen) */
.yabiz-testi-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.yabiz-testi-title {
  font-family: var(--nav-font, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  font-weight: 700;
  line-height: 1.3;
  color: #475569;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 440px;
  margin: 0;
}

/* El Yazısı "Yorumlar" Vurgusu (Fotoğraftaki Mavi Vurgu) */
.yabiz-testi-script {
  font-family: 'Dancing Script', 'Caveat', cursive;
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  font-weight: 700;
  color: #5ba4cf; /* Referanstaki zarif mavi ton */
  line-height: 1;
  transform: rotate(-3deg);
  display: inline-block;
}

/* ==========================================================================
   Yorum Slider Alanı
   ========================================================================== */
.yabiz-testi-slider {
  position: relative;
  min-height: 200px;
}

.yabiz-testi-item {
  display: none;
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.yabiz-testi-item.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.yabiz-testi-quote-wrap {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

/* Tırnak İkonu */
.yabiz-testi-quote-icon {
  font-size: 2.5rem;
  color: #5ba4cf;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -0.25rem;
}

.yabiz-testi-text-box {
  display: flex;
  flex-direction: column;
}

.yabiz-testi-paragraph {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1.25rem;
  font-weight: 450;
}

.yabiz-testi-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.yabiz-testi-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.yabiz-testi-author span {
  font-weight: 500;
  color: #64748b;
  font-size: 0.85rem;
}

.yabiz-testi-stars {
  display: flex;
  gap: 2px;
  color: #eab308;
  font-size: 0.9rem;
}

/* ==========================================================================
   Sayfalama Noktaları (Pagination Dots - Fotoğraftaki ⊙ • • •)
   ========================================================================== */
.yabiz-testi-dots {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
  padding-left: 3.75rem;
}

.yabiz-testi-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #94a3b8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
  outline: none;
}

.yabiz-testi-dot:hover {
  background-color: #5ba4cf;
}

.yabiz-testi-dot.active {
  background-color: transparent;
  border: 2px solid #5ba4cf;
  width: 14px;
  height: 14px;
  position: relative;
}

.yabiz-testi-dot.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #5ba4cf;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .yabiz-testimonials-wrapper {
    padding: 3.5rem 0;
  }

  .yabiz-testi-lineart {
    max-width: 260px;
  }

  .yabiz-testi-dots {
    padding-left: 0;
    justify-content: center;
  }

  .yabiz-testi-header {
    justify-content: center;
    text-align: center;
  }

  .yabiz-testi-quote-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
