@charset "UTF-8";

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(214,174,112,0.16) 0%, rgba(214,174,112,0) 30%),
    radial-gradient(circle at bottom right, rgba(139,90,43,0.12) 0%, rgba(139,90,43,0) 34%),
    linear-gradient(180deg, #fffaf6 0%, #f3e8db 100%);
}

.testimonials-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.testimonials-bg-shape-1 {
  top: -90px;
  left: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(192,138,75,0.18) 0%, rgba(192,138,75,0) 72%);
}

.testimonials-bg-shape-2 {
  right: -100px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139,90,43,0.14) 0%, rgba(139,90,43,0) 74%);
}

.testimonials-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.testimonials-section .eyebrow {
  color: rgba(78,49,27,0.70);
}

.testimonials-head h2 {
  margin-bottom: 16px;
  color: #4e311b;
  font-family: "Bellosa DEMO";
  font-size: 48px;
  line-height: 1.08;
}

.testimonials-head p {
  color: rgba(47,36,28,0.76);
  line-height: 1.85;
}

.testimonials-shell {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.testimonials-wrap {
  position: relative;
  overflow: hidden;
  padding: 34px 30px 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(78,49,27,0.10);
  box-shadow: 0 22px 48px rgba(78,49,27,0.08);
}

.testimonial-slide {
  display: none;
  position: relative;
  min-height: 220px;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-quote-mark {
  margin-bottom: 10px;
  color: rgba(192,138,75,0.50);
  font-size: 72px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-slide p {
  margin-bottom: 18px;
  color: rgba(47,36,28,0.84);
  font-size: 21px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-slide h3 {
  margin-bottom: 4px;
  color: #4e311b;
  font-size: 22px;
}

.testimonial-role {
  display: inline-block;
  color: #8b5a2b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.testimonial-btn {
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c08a4b 0%, #8b5a2b 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(139,91,52,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(139,91,52,0.24);
}

.testimonial-progress {
  width: 100%;
  height: 6px;
  margin-top: 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(78,49,27,0.12);
}

.testimonial-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #c08a4b 0%, #8b5a2b 100%);
}

/* =========================
   ANIMATION
========================= */

.testimonials-animate {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonials-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (min-width: 1920px) {
  .testimonials-head h2 {
    font-size: 60px;
  }

  .testimonial-slide p {
    font-size: 24px;
  }
}

@media screen and (max-width: 1200px) {
  .testimonials-head h2 {
    font-size: 42px;
  }
}

@media screen and (max-width: 768px) {
  .testimonials-head h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .testimonials-wrap {
    padding: 28px 22px 24px;
  }

  .testimonial-slide p {
    font-size: 18px;
    line-height: 1.75;
  }
}

@media screen and (max-width: 480px) {
  .testimonials-head h2 {
    font-size: 30px;
  }

  .testimonials-wrap {
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .testimonial-quote-mark {
    font-size: 54px;
  }

  .testimonial-slide p {
    font-size: 16px;
  }

  .testimonial-slide h3 {
    font-size: 20px;
  }

  .testimonial-controls {
    flex-direction: column;
  }

  .testimonial-btn {
    width: 100%;
  }
}

@media screen and (max-width: 300px) {
  .testimonials-head h2 {
    font-size: 26px;
  }

  .testimonial-slide p {
    font-size: 15px;
  }
}