/* Testimonials Section - Fully Responsive */
#testimonials {
  padding: 60px 0;
  background: #f8f9fa;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
}

.testimonial-author .location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 575.98px) {
  #testimonials {
    padding: 40px 0;
  }

  .testimonial-card {
    padding: 20px;
  }
}

@media (min-width: 992px) {
  #testimonials {
    padding: 80px 0;
  }
}
