/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: linear-gradient(135deg, rgba(221, 146, 159, 0.08), rgba(238, 208, 196, 0.05));
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="40" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q10 0 20 10 T40 10" fill="none" stroke="rgba(161,60,175,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
  opacity: 0.7;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .testimonials__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial__card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(161, 60, 175, 0.1);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-2xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
  .testimonial__card {
    padding: var(--spacing-lg);
  }
}

.testimonial__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: rgba(161, 60, 175, 0.2);
}

.testimonial__stars {
  color: #FFD700;
  margin-bottom: var(--spacing-base);
  font-size: var(--font-size-sm);
}

.testimonial__text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--spacing-base);
}

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

@media (max-width: 767px) {
  .testimonial__author img {
    width: 40px;
    height: 40px;
  }
}

.testimonial__info h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: var(--font-size-base);
}

.testimonial__info span {
  color: var(--text-light);
  font-size: var(--font-size-sm);
}