.testimonial-section {
  min-height: 100vh;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  font-family: sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.header {
  text-align: center;
  margin-bottom: 60px;
}

.header h1 {
  font-size: 48px;
  color: #1f2937;
  margin-bottom: 12px;
}

.header p {
  font-size: 20px;
  color: #6b7280;
}

.slider-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Indicators */
.indicators {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.indicator {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

.indicator span {
  font-size: 18px;
  color: #9ca3af;
}

.indicator .line {
  width: 64px;
  height: 4px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.indicator .fill {
  height: 100%;
  width: 0;
  background: #f97316;
  transition: 0.3s;
}

.indicator.active span {
  color: #374151;
  font-weight: 600;
}

.indicator.active .line {
  width: 96px;
}

.indicator.active .fill {
  width: 100%;
}

/* Slider */
.slider {
  overflow: hidden;
  flex: 1;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  padding: 0 16px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 650px;
  margin: auto;
  text-align: center;
}

.quote {
  position: absolute;
  font-size: 100px;
  color: #e5e7eb;
  font-family: serif;
}

.quote.top {
  top: 20px;
  left: 20px;
}

.quote.bottom {
  bottom: 20px;
  right: 20px;
  transform: rotate(180deg);
}

/* Avatar */
.avatar {
  width: 96px;
  height: 96px;
  margin: auto;
  border-radius: 50%;
  border: 4px solid #f97316;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.initial {
  width: 100%;
  height: 100%;
  background: #7c3aed;
  color: white;
  font-size: 36px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card h3 {
  font-size: 24px;
  margin: 20px 0 12px;
  color: #1f2937;
}

/* Rating */
.rating {
  font-size: 24px;
  margin-bottom: 20px;
}

.star {
  color: #d1d5db;
}

.star.active {
  color: #facc15;
}

.card p {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
}
