/* ==========================================
   testimonials.css — Testimonials Slider
   Maheswar Reddy Beverages
   ========================================== */

.testimonials { background: var(--navy); }

.testimonials-slider {
  max-width: 600px;
  margin: 0 auto 32px;
  position: relative;
  min-height: 240px;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  display: none;
  animation: fadeSlideIn 0.5s ease forwards;
}

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

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.t-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.t-text {
  color: var(--gray-light);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.t-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(29,185,84,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.t-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.t-author span {
  font-size: 0.75rem;
  color: var(--gray);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.tn-prev,
.tn-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03);
  color: var(--gray-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.tn-prev:hover,
.tn-next:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,165,60,0.1);
}

.tn-dots {
  display: flex;
  gap: 8px;
}

.tn-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition);
}

.tn-dots span.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}
