/* ULTRA PREMIUM TESTIMONIALS */

#testimonials {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  background: #050505;
}

.testimonial-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120vw;
  height: 120vh;
  background: radial-gradient(circle at center, rgba(255, 46, 147, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.testimonial-carousel-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden; /* Hide overflow for carousel */
  padding: 4rem 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s var(--cinematic-easing);
  will-change: transform;
}

.testimonial-card-cinematic {
  flex: 0 0 600px; /* More balanced slide width */
  margin: 0 2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  padding: 4rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  transition: all 0.8s var(--cinematic-easing);
  position: relative;
  overflow: hidden;
}

.testimonial-card-cinematic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card-cinematic:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 46, 147, 0.3);
}

.testimonial-card-cinematic:hover::before {
  opacity: 1;
}

.testimonial-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem; /* More elegant, reduced size */
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 3.5rem;
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--hot-pink); /* Elegant accent border */
}

.testimonial-quote::before {
  content: '“';
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 10rem;
  color: var(--hot-pink);
  opacity: 0.1;
  font-family: serif;
}

.testimonial-user-cinematic {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.testimonial-user-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 0.4rem;
}

.testimonial-user-info span {
  font-size: 0.7rem;
  color: var(--hot-pink);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 400;
}

/* CAROUSEL CONTROLS */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 5rem;
}

.testi-nav {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-nav:hover {
  background: var(--hot-pink);
  border-color: var(--hot-pink);
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.4);
}

.testi-dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
}

.dot.active {
  background: var(--hot-pink);
  transform: scale(1.5);
  box-shadow: 0 0 10px var(--hot-pink);
}

@media (max-width: 1024px) {
  .testimonial-card-cinematic {
    flex: 0 0 85%;
    margin: 0 2rem;
  }
}

@media (max-width: 768px) {
  .testimonial-card-cinematic {
    flex: 0 0 90%;
    margin: 0 1rem;
    padding: 3rem 2rem;
  }
  .testimonial-quote {
    font-size: 1.8rem;
  }
}
