/* Mobility Medics approved additions: form feedback and a lightweight general coverage guide. */
.booking-form [data-mm-validation-summary] {
  display: none;
  color: #0F2A36;
  background: #E8FBFD;
  border-left: 4px solid #00BCD4;
  margin: 0 0 18px;
  padding: 13px 14px;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.45;
}

.booking-form.mm-form-has-errors [data-mm-validation-summary] {
  display: block;
}

.booking-form :is(input, select, textarea).mm-field-invalid {
  background: #F2FDFF;
  border-color: #00BCD4;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, .18);
}

.booking-form label:has(.mm-field-invalid) {
  color: #0F2A36;
}

.booking-form .mm-field-error {
  color: #0F2A36;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.35;
  display: flex;
}

.booking-form .mm-field-error::before {
  content: "!";
  color: #0F2A36;
  background: #00BCD4;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 14px;
  font-size: .63rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  flex: 0 0 14px;
}

.booking-form :is(input, select, textarea):focus {
  border-color: #00BCD4;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, .22);
}

.booking-form .form-note {
  color: #0F2A36;
  background: #E8FBFD;
  border-left: 4px solid #00BCD4;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.5;
}

.booking-form .form-note svg {
  color: #00BCD4;
  flex: 0 0 auto;
  margin-top: 2px;
}

.booking-form .form-note.form-note-error {
  color: #0F2A36;
  background: #FFFFFF;
  border-color: #00BCD4;
}

.coverage-map-section {
  background: #FFFFFF;
  border-top: 1px solid rgba(15, 42, 54, .12);
  border-bottom: 1px solid rgba(15, 42, 54, .12);
  padding: clamp(56px, 7vw, 88px) 0;
}

.coverage-map-intro {
  max-width: 630px;
  margin-bottom: 30px;
}

.coverage-map-intro h2 {
  margin: 11px 0 0;
}

.coverage-map-shell {
  background: linear-gradient(135deg, rgba(0, 188, 212, .08), rgba(15, 42, 54, .025));
  border: 1px solid rgba(15, 42, 54, .14);
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, .55fr);
  align-items: stretch;
  display: grid;
}

.coverage-map-graphic {
  min-height: 345px;
  padding: 18px;
}

.coverage-map-graphic svg {
  width: 100%;
  height: 100%;
  display: block;
}

.coverage-map-legend {
  color: #FFFFFF;
  background: #0F2A36;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  display: flex;
}

.coverage-map-legend small {
  color: #00BCD4;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: .65rem;
  font-weight: 900;
}

.coverage-map-legend ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-map-legend li {
  border-top: 1px solid rgba(255, 255, 255, .2);
  align-items: center;
  gap: 9px;
  padding: 11px 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1;
  display: flex;
}

.coverage-map-legend li::before {
  content: "";
  background: #00BCD4;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  display: block;
  flex: 0 0 7px;
}

.coverage-map-note {
  color: #0F2A36;
  max-width: 760px;
  margin: 20px 0 0;
  font-size: .9rem;
  line-height: 1.6;
}

.coverage-map-note strong {
  color: #0F2A36;
}

.coverage-map-svg .map-boundary {
  fill: #FFFFFF;
  stroke: rgba(15, 42, 54, .23);
  stroke-width: 1.5;
}

.coverage-map-svg .map-grid {
  fill: none;
  stroke: rgba(15, 42, 54, .1);
  stroke-width: 1;
}

.coverage-map-svg .map-route {
  fill: none;
  stroke: #00BCD4;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2 12;
}

.coverage-map-svg .map-marker-outer {
  fill: #FFFFFF;
  stroke: #00BCD4;
  stroke-width: 4;
}

.coverage-map-svg .map-marker-inner {
  fill: #0F2A36;
}

.coverage-map-svg .map-label {
  fill: #0F2A36;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.coverage-map-svg .map-microcopy {
  fill: #536167;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

@media (max-width: 760px) {
  .coverage-map-shell {
    grid-template-columns: 1fr;
  }

  .coverage-map-graphic {
    min-height: 292px;
    padding: 12px;
  }

  .coverage-map-legend {
    padding: 22px 20px;
  }

  .coverage-map-legend ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    display: grid;
  }

  .coverage-map-legend li {
    font-size: 1.02rem;
  }

  .coverage-map-svg .map-label {
    font-size: 11px;
  }

  .coverage-map-svg .map-microcopy {
    font-size: 8px;
  }
}

@media (max-width: 430px) {
  .coverage-map-graphic {
    min-height: 260px;
  }

  .coverage-map-legend ul {
    grid-template-columns: 1fr;
  }

  .coverage-map-svg .map-label {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .booking-form :is(input, select, textarea),
  .booking-form .form-note,
  .booking-form [data-mm-validation-summary] {
    transition: border-color 160ms cubic-bezier(.23, 1, .32, 1), box-shadow 160ms cubic-bezier(.23, 1, .32, 1), background-color 160ms cubic-bezier(.23, 1, .32, 1), opacity 160ms cubic-bezier(.23, 1, .32, 1);
  }
}

/* Customer feedback addition: intentionally calm, specific and compact. */
.testimonial-section {
  background: #FFFFFF;
  border-top: 1px solid rgba(15, 42, 54, .12);
  padding: clamp(58px, 7vw, 88px) 0;
}

.testimonial-intro {
  max-width: 650px;
  margin-bottom: 30px;
}

.testimonial-intro h2 {
  margin: 11px 0 0;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  display: grid;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(0, 188, 212, .08), #FFFFFF 68%);
  border: 1px solid rgba(15, 42, 54, .14);
  border-top: 4px solid #00BCD4;
  min-height: 238px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(25px, 3vw, 34px);
  display: flex;
}

.testimonial-quote-mark {
  color: #00BCD4;
  height: 30px;
  margin: -2px 0 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: .78;
  display: block;
}

.testimonial-card blockquote {
  color: #0F2A36;
  max-width: 540px;
  margin: 0;
  font-size: clamp(.97rem, 1.5vw, 1.08rem);
  font-weight: 600;
  line-height: 1.65;
}

.testimonial-card footer {
  color: #0F2A36;
  border-top: 1px solid rgba(15, 42, 54, .15);
  margin-top: 24px;
  padding-top: 15px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.testimonial-card footer span {
  color: #536167;
  margin-top: 6px;
  font-family: "Manrope", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  display: block;
}

@media (max-width: 760px) {
  .testimonial-section {
    padding: 54px 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 24px 21px;
  }
}

/* Anonymous allied-health feedback: designed as a quiet supporting proof point. */
.provider-testimonial-section {
  background: #FFFFFF;
  border-top: 1px solid rgba(15, 42, 54, .12);
  border-bottom: 1px solid rgba(15, 42, 54, .12);
  padding: clamp(52px, 6vw, 78px) 0;
}

.provider-testimonial-inner {
  background: linear-gradient(135deg, rgba(0, 188, 212, .07), #FFFFFF 62%);
  border-left: 4px solid #00BCD4;
  grid-template-columns: minmax(190px, .6fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(27px, 4vw, 45px);
  display: grid;
}

.provider-testimonial-heading {
  color: #0F2A36;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  font-weight: 800;
  line-height: .95;
}

.provider-testimonial-quote {
  color: #0F2A36;
  margin: 0;
  font-size: clamp(1.02rem, 1.65vw, 1.18rem);
  font-weight: 600;
  line-height: 1.65;
}

.provider-testimonial-quote::before {
  content: "“";
  color: #00BCD4;
  vertical-align: -.14em;
  margin-right: 7px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 0;
}

.provider-testimonial-attribution {
  color: #536167;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 18px 0 0;
  font-size: .69rem;
  font-weight: 900;
}

.provider-testimonial-attribution::before {
  content: "—";
  color: #00BCD4;
  margin-right: 7px;
}

@media (max-width: 760px) {
  .provider-testimonial-section {
    padding: 48px 0;
  }

  .provider-testimonial-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 25px 21px;
  }
}
