.testimonials-section {
  padding: 6rem 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1739285388427-d6f85d12a8fc?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NDQ2Mzl8MHwxfHNlYXJjaHwyfHxtZWRpY2FsJTIwY29uc3VsdGF0aW9ufGVufDB8fHx8MTc2MjI3OTI0MXww&ixlib=rb-4.1.0&q=85');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  z-index: 0;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-teal-100), var(--accent-teal-200));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.quote-icon {
  color: var(--accent-teal-600);
}

.rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star-icon {
  color: #F59E0B;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

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

.author-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}
