/* ═══════════════════════════════════════════════════════════
   MÜŞTERİ YORUMLARI (Bento & Marquee Style)
   ═══════════════════════════════════════════════════════════ */

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: var(--space-12) 0;
}

.testimonials-slider {
  padding: var(--space-4) 0;
  overflow: visible; /* Let cards cast shadows outside */
}

/* Linear easing for smooth infinite marquee */
.testimonials-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ─── Bento Style Card ──────────────────────────────────── */
.testimonial-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 164, 92, 0.3);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(200, 164, 92, 0.05);
}

/* Quote Watermark */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 150px;
  font-family: Georgia, serif;
  color: rgba(200, 164, 92, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: var(--gold-primary);
  filter: drop-shadow(0 0 5px rgba(200, 164, 92, 0.5));
}

.testimonial-stars i {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-stars i.empty {
  color: var(--dark-border);
  fill: none;
  filter: none;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-6);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--dark-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-lg);
  font-family: var(--font-display);
  box-shadow: 0 4px 10px rgba(200, 164, 92, 0.3);
}

.testimonial-author-info h4 {
  font-size: var(--text-base);
  margin-bottom: 2px;
  color: #fff;
  font-weight: 600;
}

.testimonial-author-info p {
  font-size: var(--text-xs);
  color: var(--gold-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hide pagination for marquee style */
.swiper-pagination {
  display: none !important;
}

@media (max-width: 1024px) {
  .testimonial-card {
    padding: var(--space-6);
  }
}

@media (max-width: 640px) {
  .testimonial-text {
    font-size: var(--text-base);
  }
}
