/* 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 {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 1.35rem 1.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.testimonial-card .testimonial-quote {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,140,0,0.35);
  background: rgba(255,140,0,0.12);
  color: #FF8C00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.testimonial-card .testimonial-quote svg {
  width: 20px;
  height: 20px;
}

.testimonial-card .testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: #f0f0f0;
}

.testimonial-card .testimonial-avatar-placeholder {
  width: 58px;
  height: 58px;
  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;
  font-size: 1.2rem;
  color: #FF8C00;
  font-weight: 700;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}

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

.testimonial-card .testimonial-text {
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

/* 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;
    gap: 0;
    overflow: hidden;
    width: 100%;
  }
  .testimonials-grid.testimonials-carousel {
    display: flex;
    align-items: stretch;
    transition: transform 0.45s ease;
    will-change: transform;
  }
  .testimonials-grid.testimonials-carousel .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .testimonial-card {
    min-height: 365px;
    border-radius: 22px;
    padding: 1.2rem 1.15rem 1.05rem;
  }
  .testimonial-card .testimonial-text {
    font-size: 1rem;
    line-height: 1.62;
  }
  .testimonial-card .testimonial-name {
    font-size: 1.35rem;
  }
}
