/* =========================
   TESTIMONIALS SLIDER
   Light section + subtle premium cards
   ========================= */

.pr-testimonials {
  padding: 56px 0 64px;

  /* ✅ light background */
  background: #ffffff;
  color: #0f172a;

  border-top: 1px solid rgba(15,23,42,0.06);
}

.pr-testimonials-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.pr-testimonials-head {
  text-align: center;
  margin-bottom: 26px;
}

.pr-testimonials-kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0284c7;
  margin: 0 0 4px;
}

.pr-testimonials-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  color: #0f172a;
}

.pr-testimonials-subtitle {
  margin: 0;
  font-size: 14px;
  color: #475569;
}

/* Slider shell */

.pr-testimonials-slider {
  margin-top: 26px;
  position: relative;
  overflow: hidden;
}

.pr-testimonials-track {
  display: flex;
  gap: 18px;
  transition: transform 0.6s ease;
}

/* Cards */

.pr-testimonial {
  flex: 0 0 calc(33.333% - 12px);

  /* ✅ light grey card */
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
  border-radius: 22px;
  padding: 18px 18px 20px;

  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);

  position: relative;
}

@media (max-width: 1024px) {
  .pr-testimonial {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .pr-testimonial {
    flex: 0 0 100%;
  }
}

.pr-testimonial-quote-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;

  /* premium warm accent */
  background: linear-gradient(135deg, rgba(249,115,22,0.22), rgba(250,204,21,0.18));
  border: 1px solid rgba(249,115,22,0.16);

  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 18px;
  margin-bottom: 10px;
}

.pr-testimonial-stars {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #d97706; /* warmer gold, less neon */
  margin-bottom: 10px;
}

.pr-testimonial-text {
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
  margin: 0 0 16px;
}

.pr-testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: #64748b;
}

.pr-testimonial-name {
  font-weight: 900;
  color: #0f172a;
}

/* Dots */

.pr-testimonials-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.pr-testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.45);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pr-testimonials-dot.is-active {
  width: 16px;
  background: linear-gradient(90deg, #38bdf8, #f97316);
}