/* Testimonials Section */
.testimonials-section {
  padding: 4rem 2rem;
  background: #ffffff;
  display: block;
}

.testimonials-section .testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-section .testimonials-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin-bottom: 0.5rem;
}

.testimonials-section .testimonials-subtitle {
  text-align: center;
  color: #555555;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.testimonial-card .testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  background: #f0f0f0;
}

.testimonial-card .testimonial-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,140,0,0.2) 0%, rgba(255,140,0,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #FF8C00;
  font-weight: 700;
}

.testimonial-card .testimonial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
}

.testimonial-card .testimonial-text {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

/* Dark theme (instant booking page) */
body.instant-booking-page .testimonials-section {
  background: var(--bg-dark);
}

body.instant-booking-page .testimonials-section .testimonials-title {
  color: var(--white);
}

body.instant-booking-page .testimonials-section .testimonials-subtitle {
  color: var(--white-muted);
}

body.instant-booking-page .testimonial-card {
  background: var(--bg-card);
  border-color: var(--gold-border);
}

body.instant-booking-page .testimonial-card .testimonial-name {
  color: var(--white);
}

body.instant-booking-page .testimonial-card .testimonial-text {
  color: var(--white-muted);
}

.testimonials-empty a {
  color: var(--gold, #FF8C00);
  text-decoration: underline;
}

body.instant-booking-page .testimonials-empty {
  color: var(--white-muted);
}

body.instant-booking-page .testimonials-empty a {
  color: var(--gold);
}

@media (max-width: 600px) {
  .testimonials-section {
    padding: 3rem 1rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
