/* Testimonials Section */
.testimonials-section {
  background-color: #000;
  padding: 50px 40px;
  overflow-x: clip;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-badge {
  margin-bottom: 24px;
}

.testimonials-title {
  margin: 0 0 16px 0;
}

.testimonials-description {
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 80px;
}

.testimonials-slider {
  overflow: hidden;
  border-radius: 20px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(176, 166, 223, 0.1) 0%,
    rgba(176, 166, 223, 0.05) 100%
  );
  border: 1px solid rgba(176, 166, 223, 0.2);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 60px);
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--event-color);
}

.testimonial-quote {
  margin-bottom: 40px;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.testimonial-quote p {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
  margin: 0;
  max-height: min(34vh, 240px);
  overflow-y: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
}

.testimonial-role {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-nav:hover {
  background-color: var(--event-color);
  border-color: var(--event-color);
}

.testimonial-nav svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.testimonial-prev {
  left: -80px;
}

.testimonial-next {
  right: -80px;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: var(--event-color);
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 920px) {
  .testimonial-card {
    min-height: 320px;
  }

  .testimonial-quote p {
    max-height: min(30vh, 220px);
  }

  .testimonial-nav {
    width: 48px;
    height: 48px;
  }

  .testimonial-prev {
    left: 10px;
  }

  .testimonial-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .testimonials-slider-wrapper {
    padding: 0 50px !important;
  }

  .testimonials-header {
    margin-bottom: 50px !important;
  }

  .testimonial-slide {
    padding: 0 10px;
  }

  .testimonial-card {
    min-height: 280px;
  }

  .testimonial-stars {
    margin-bottom: 20px;
  }

  .testimonial-stars svg {
    width: 16px;
    height: 16px;
  }

  .testimonial-quote {
    margin-bottom: 24px;
  }

  .testimonial-quote p {
    max-height: min(26vh, 180px);
  }

  .testimonial-name {
    font-size: 17px !important;
  }

  .testimonial-role {
    font-size: 15px !important;
  }

  .testimonial-nav {
    width: 44px;
    height: 44px;
  }

  .testimonial-nav svg {
    width: 18px;
    height: 18px;
  }

  .testimonial-prev {
    left: 5px;
  }

  .testimonial-next {
    right: 5px;
  }
}
