.testimonials {
  background: var(--bg-secondary);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: var(--space-lg);
}

.testimonial-item {
  background: var(--card-bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-flowing);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: none;
}

.testimonial-item.active {
  display: block;
}

.testimonial-content {
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: var(--space-lg);
  color: #fbbf24;
}

.testimonial-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-modern);
  object-fit: cover;
  flex-shrink: 0;
}

.author-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-info h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.2;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  margin: var(--space-xl) auto 0;
  max-width: 300px;
}

.testimonial-prev,
.testimonial-next {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.05);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  justify-content: center;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}