/* =========================
   TESTIMONIALS SLIDER
========================= */

.rg-testimonial-section {
  padding: 80px 0 100px;
  background: #eef1f7;
}

.rg-testimonial-slider {
  position: relative;
  overflow: hidden;
}

.rg-testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

.rg-testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--glass);
  backdrop-filter: var(--blur);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  position: relative;
}

.rg-testimonial-text {
  font-style: italic;
  font-size: 15px;
  color: #2c3e60;
  margin-bottom: 20px;
}

.rg-testimonial-meta h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.rg-testimonial-meta span {
  font-size: 14px;
  color: #6b7c93;
}

.rg-testimonial-stars {
  margin-top: 12px;
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 2px;
}

/* Controls */
.rg-testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 35px;
}

.rg-testimonial-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #ff1616, #000000);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(176, 47, 47, 0.4);
}

.rg-testimonial-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(176, 138, 47, 0.55);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .rg-testimonial-card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .rg-testimonial-card {
    min-width: 100%;
  }
}
