.button.offer {
  color: #111827;
  background: #ffbf3f;
}

.button.offer:hover {
  background: #ffd36f;
}

.offer-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: #111827;
  background: #ffbf3f;
}

.offer-band div {
  display: grid;
  gap: 2px;
}

.offer-band strong {
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.05;
}

.offer-band span {
  font-weight: 800;
}

.offer-band .button.secondary {
  color: #ffffff;
  border-color: #0b1418;
  background: #0b1418;
}

.service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 900;
}

.service-links,
.reviews-section,
.local-service-area,
.booking-section,
.faq-section {
  padding-top: 0;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.link-grid a {
  display: grid;
  min-height: 92px;
  align-items: center;
  padding: 18px;
  color: #ffffff;
  background: var(--charcoal);
  border-radius: 8px;
  font-weight: 900;
}

.reviews-section,
.booking-section,
.repair-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.reviews-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  padding: 10px 14px;
  color: var(--charcoal);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--charcoal);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.mobile-call-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 28;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #ffffff;
  background: #246bfe;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.24);
  font-weight: 900;
}

.chat-widget {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 30;
  font-family: Arial, Helvetica, sans-serif;
}

.chat-launcher {
  min-width: 112px;
  min-height: 76px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  color: #031f1e;
  background: #92e35f;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.25);
  font: inherit;
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
}

.chat-panel {
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.24);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: #ffffff;
  background: var(--charcoal);
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.chat-header button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 1.3rem;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 330px;
  overflow-y: auto;
  padding: 16px;
  background: #f6f8f7;
}

.chat-message {
  max-width: 88%;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 0.94rem;
}

.chat-message.bot {
  justify-self: start;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.chat-message.user {
  justify-self: end;
  color: #ffffff;
  background: var(--teal-dark);
}

.chat-suggestions {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.chat-suggestions button {
  flex: 0 0 auto;
  border: 1px solid #ccddda;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--teal-dark);
  background: #edf6f4;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px 16px 16px;
  background: #ffffff;
}

.chat-form input {
  min-width: 0;
  border: 1px solid #cdd6dc;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
}

.chat-form button {
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #031f1e;
  background: #92e35f;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.repair-page {
  background: #ffffff;
}

.repair-main {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 7vw, 76px) 0;
}

.repair-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.repair-nav a:hover {
  color: #ffffff;
}

.repair-hero h1 {
  color: var(--ink);
}

.repair-hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.repair-hero .button.secondary {
  color: var(--charcoal);
  border-color: var(--charcoal);
  background: #ffffff;
}

.repair-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.repair-content {
  display: grid;
  gap: 18px;
  margin-top: clamp(44px, 7vw, 78px);
  padding: clamp(26px, 5vw, 46px);
  background: #f4f7fb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.repair-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.repair-content p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 860px) {
  .reviews-section,
  .booking-section,
  .repair-hero {
    grid-template-columns: 1fr;
  }

  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .repair-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
  }
}

@media (max-width: 620px) {
  .offer-band {
    align-items: stretch;
    flex-direction: column;
  }

  .offer-band .button {
    width: 100%;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 86px;
  }

  .chat-widget {
    left: 16px;
    right: 16px;
    bottom: 82px;
  }

  .chat-panel {
    width: 100%;
  }

  .chat-launcher {
    min-width: 96px;
    min-height: 66px;
    padding: 0 18px;
  }

  .mobile-call-bar {
    display: flex;
  }
}
