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

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

.testimonials-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 42px;
  color: #241d17;
  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: #f7f1e7;
  border-radius: 4px;
}

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

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

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 21px;
  line-height: 1.6;
  color: #3a3128;
  margin-bottom: 18px;
}

.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b5d4a;
}

.testimonials-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #c9a227;
  background: #ffffff;
  color: #c9a227;
  font-size: 15px;
  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: #c9a227;
  color: #ffffff;
  transform: scale(1.08);
}

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

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

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

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

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

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