/* ===== Testimonial / Reviews Section (namespaced) ===== */
.tmon-wrap{
  --tmon-bg:#2e74b7;           /* blue background */
  --tmon-text:#ffffff;         /* white text */
  --tmon-accent:#ff0202;       /* red button */
  --tmon-star:#ffc107;         /* gold stars */
  --tmon-max: 980px;

  background: var(--tmon-bg);
  color: var(--tmon-text);
}

.tmon{
  max-width: var(--tmon-max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 88px) 16px;
  text-align: center;
}

.tmon-quote{
  display:block;
  margin: 0 auto 12px;
  opacity: .9;
}

.tmon-title{
  margin: 0 0 14px;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .2px;
}

/* Stars */
.tmon-stars{
  display:inline-block;
  margin: 6px 0 18px;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 4px;        /* space stars a bit */
  color: var(--tmon-star);
  text-shadow: 0 0 0.5px var(--tmon-star);
}

/* Testimonial copy */
.tmon-quote-text{
  max-width: 1000px;
  margin: 0 auto 22px;
  font-size: clamp(16px, 2.1vw, 22px);
  line-height: 1.6;
  font-style: italic;
}
.tmon-quote-text p{ margin:0 0 12px; }
.tmon-cite{
  font-style: normal;
  font-weight: 600;
  opacity: .95;
}
.tmon-loc{ font-weight: 400; opacity:.9; }

/* Button */
.tmon-btn{
  display:inline-block;
  margin-top: 18px;
  padding: 14px 26px;
  background: var(--tmon-accent);
  color:#fff;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.tmon-btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.tmon-btn:active{ transform: translateY(0); box-shadow: 0 6px 18px rgba(0,0,0,.2); }

/* Accessibility focus */
.tmon-btn:focus-visible{
  outline: 3px solid #fff;
  outline-offset: 2px;
  border-radius: 10px;
}

/* Larger screens can tighten the width a bit */
@media (min-width: 992px){
  .tmon{ padding-left: 24px; padding-right: 24px; }
}
