/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 11: TESTIMONIALS — Shree Studio
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(201, 169, 110, 0.05) 0%,
    transparent 60%
  );
  z-index: 1;
}
.testimonials-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.testimonials-header {
  text-align: center;
}
.testimonials-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 50px;
  color: #c9a96e;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.testimonials-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: #fff;
}
.testimonial-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.testimonial-quote-icon {
  font-size: 40px;
  color: rgba(201, 169, 110, 0.3);
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.testimonial-quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.5vw, 26px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 800px;
  font-style: italic;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #c9a96e;
  font-size: 14px;
}
.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201, 169, 110, 0.3);
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-author-info {
  text-align: left;
}
.testimonial-author {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.testimonial-role {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.testimonial-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 169, 110, 0.3);
}
.testimonial-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.testimonial-dot.active {
  background: #c9a96e;
  width: 24px;
  border-radius: 4px;
}
.testimonials-section [data-animate] {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.testimonials-section [data-animate].is-visible {
  opacity: 1;
  transform: none !important;
}
.testimonials-section [data-animate="fade-up"] {
  transform: translateY(50px);
}
.testimonials-section [data-delay="200"] {
  transition-delay: 0.2s;
}
.testimonials-section [data-delay="400"] {
  transition-delay: 0.4s;
}
@media (max-width: 768px) {
  .testimonials-section {
    height: auto;
    min-height: 100vh;
    padding: 80px 0;
  }
  .testimonial-card {
    padding: 0 10px;
  }
  .testimonials-container {
    padding: 0 20px;
  }
}
