/* ============================================================
   PAGE: testimonials.css
   Page-specific overrides for testimonials.html
   ============================================================ */

.testimonials-hero {
  background: linear-gradient(135deg, #4a0072 0%, #6a0da0 100%);
  color: #fff;
  padding: 72px 0 56px;
  text-align: center;
}
.testimonials-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 12px;
}
.testimonials-hero p {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 620px;
  margin: 0 auto;
}

/* Trust counters */
.trust-counters {
  background: #fff;
  border-bottom: 3px solid #ffd54f;
  padding: 28px 0;
}
.trust-counters__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  text-align: center;
}
.trust-counter__num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #4a0072;
  line-height: 1.1;
}
.trust-counter__label {
  font-size: 0.85rem;
  color: #555;
}

/* Testimonial cards grid */
.testimonials-section {
  background: #f4f7f6;
  padding: 56px 0;
}
.testimonials-section .section-head {
  text-align: center;
  margin-bottom: 40px;
}
.testimonials-section .section-head h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #4a0072;
  margin: 0 0 8px;
}
.testimonials-section .section-head p {
  color: #555;
  font-size: 1rem;
  margin: 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.tcard {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(74,0,114,0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s;
}
.tcard:hover {
  box-shadow: 0 6px 24px rgba(74,0,114,0.14);
}
.tcard__stars {
  color: #ffd54f;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.tcard__quote {
  font-size: 0.97rem;
  color: #333;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.tcard__meta {
  border-top: 1px solid #f0e0ff;
  padding-top: 14px;
}
.tcard__name {
  font-weight: 700;
  color: #4a0072;
  font-size: 0.97rem;
}
.tcard__detail {
  font-size: 0.83rem;
  color: #777;
  margin-top: 2px;
}
.tcard__tag {
  display: inline-block;
  background: #f3e5ff;
  color: #4a0072;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 6px;
}

/* CTA */
.testimonials-cta {
  background: #4a0072;
  color: #fff;
  padding: 52px 0;
  text-align: center;
}
.testimonials-cta h2 {
  font-size: 1.7rem;
  margin: 0 0 12px;
}
.testimonials-cta p {
  opacity: 0.85;
  font-size: 1rem;
  margin: 0 auto 24px;
  max-width: 560px;
}
.testimonials-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 600px) {
  .testimonials-hero { padding: 48px 0 36px; }
  .tcard { padding: 20px 16px; }
}
