/* TESTIMONIALS SECTION */
.testimonials-section {
  /* fixed selector name */
  background-color: #f8f9fa;
  padding: 80px 80px 60px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background-color: var(--surface);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testimonial-card .rating {
  color: #ffc107;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.testimonial-card .quote {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
  margin-bottom: 18px;
}
.customer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.customer-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.customer-details h4 {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text);
  margin: 0;
}
.customer-details p {
  color: var(--muted);
  margin: 0;
}

/* TESTIMONIALS RESPONSIVE */
@media (max-width: 1023px) {
  .testimonials-section {
    padding-left: 40px;
    padding-right: 40px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
}
@media (max-width: 767px) {
  .testimonials-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .testimonial-card {
    padding: 22px;
  }
}