/* =========================================================
   KAWTHAR STATIC TESTIMONIALS FIX
   No JS replacement. No page overwrite.
   Clean customer feedback section.
   ========================================================= */

.kaw-testimonials {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 12% 20%, rgba(201,160,92,0.10), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(201,160,92,0.08), transparent 24%),
    linear-gradient(180deg, #f5ede4 0%, #efe4d8 100%);
  overflow: hidden;
  isolation: isolate;
}

.kaw-testimonials * {
  box-sizing: border-box;
}

.kaw-testimonials::before {
  content: "";
  position: absolute;
  top: 58px;
  right: 8%;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201,160,92,0.16);
  border-radius: 50%;
  pointer-events: none;
}

.kaw-testimonials::after {
  content: "";
  position: absolute;
  left: 9%;
  top: 118px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,92,0.08), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.kaw-testimonials .container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}

.kaw-testimonials__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.kaw-testimonials__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,250,246,0.72);
  border: 1px solid rgba(201,160,92,0.20);
  color: #9b6a2f;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}

.kaw-testimonials__kicker::before,
.kaw-testimonials__kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(155,106,47,0.35);
}

.kaw-testimonials__title {
  margin: 0 0 12px;
  color: #2f2118;
  font-size: clamp(2.3rem, 4.2vw, 4.1rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.kaw-testimonials__sub {
  margin: 0 auto;
  max-width: 58ch;
  color: #6b5645;
  font-size: 0.98rem;
  line-height: 1.8;
}

.kaw-testimonials__graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 26px 0 36px;
  opacity: 0.82;
}

.kaw-testimonials__graphic .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9a05c;
  box-shadow: 0 0 0 8px rgba(201,160,92,0.07);
}

.kaw-testimonials__graphic .line {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,106,47,0.35), transparent);
}

.kaw-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.kaw-testimonial-card {
  position: relative;
  min-height: 100%;
  padding: 28px 24px 24px;
  border-radius: 28px;
  background: rgba(255,250,246,0.88);
  border: 1px solid rgba(93,67,45,0.10);
  box-shadow: 0 18px 42px rgba(45,33,25,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kaw-testimonial-card::before {
  content: "“";
  position: absolute;
  top: 14px;
  right: 20px;
  color: rgba(201,160,92,0.18);
  font-size: 4.6rem;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.kaw-testimonial-stars {
  color: #c9a05c;
  font-size: 1rem;
  letter-spacing: 0.16em;
  font-weight: 900;
}

.kaw-testimonial-text {
  margin: 0;
  color: #5f4b3b;
  font-size: 0.96rem;
  line-height: 1.9;
  min-height: 120px;
}

.kaw-testimonial-sep {
  width: 100%;
  height: 1px;
  background: rgba(93,67,45,0.10);
  margin-top: auto;
}

.kaw-testimonial-meta {
  display: grid;
  gap: 4px;
}

.kaw-testimonial-name {
  color: #2f2118;
  font-size: 1rem;
  font-weight: 800;
}

.kaw-testimonial-role {
  color: #8b6847;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 980px) {
  .kaw-testimonials {
    padding: 72px 0 78px;
  }

  .kaw-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .kaw-testimonial-text {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .kaw-testimonials {
    padding: 58px 0 64px;
  }

  .kaw-testimonials__head {
    margin-bottom: 28px;
  }

  .kaw-testimonials__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .kaw-testimonials__sub {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .kaw-testimonial-card {
    padding: 22px 18px 18px;
    border-radius: 24px;
  }
}
