/* Testimonials */
.testimonials {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.testimonials .glass-effect {
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonial {
  flex: 0 0 100%;
  padding: 0 20px;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}

.testimonial-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  transition: all var(--transition-normal);
}

.testimonial-content::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  z-index: -1;
  background: var(--gradient-subtle);
}

.quote-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.quote-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-subtle);
}

.author-name {
  font-weight: 600;
  color: var(--text-dark);
}

.author-title {
  font-size: 0.875rem;
  color: var(--muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.slider-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-prev,
.slider-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-dark);
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--accent);
  color: white;
  border-color: transparent;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}
