/* ===== Testimonials ===== */
#testimonials {
  padding: 100px 0;
  background: #f5efe6;
}

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

.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 42px;
  color: #3e1f00;
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials-viewport {
  overflow: hidden;
  flex: 1;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 44px 56px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(62, 31, 0, 0.07);
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
  background: #c8a96e;
  border-radius: 50%;
}

.testimonial-stars {
  color: #c8a96e;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.6;
  color: #4a2e16;
  margin-bottom: 18px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8b5e3c;
}

.testimonials-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #c8a96e;
  background: #ffffff;
  color: #c8a96e;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.testimonials-arrow:hover {
  background: #c8a96e;
  color: #ffffff;
  transform: scale(1.08);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d8c4ac;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-dot.active {
  background: #c8a96e;
  transform: scale(1.25);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  #testimonials { padding: 80px 0; }
  .testimonials-inner { padding: 0 32px; }
  .testimonials-title { font-size: 36px; }
  .testimonial-text { font-size: 19px; }
}

@media (max-width: 768px) {
  .testimonial-card { padding: 38px 28px; }
  .testimonial-text { font-size: 17px; }
  .testimonials-arrow { width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  #testimonials { padding: 64px 0; }
  .testimonials-inner { padding: 0 16px; }
  .testimonials-title { font-size: 28px; }
  .testimonials-carousel { gap: 6px; }
  .testimonial-card { padding: 32px 20px; }
  .testimonial-text { font-size: 16px; }
  .testimonials-arrow { width: 36px; height: 36px; font-size: 14px; }
}
