/* ============================================================
   BM Brand Yellow — matches the "MAN" wordmark in the logo.
   #f1d108 sampled from /images/Logo.png (most common pixel in MAN
   text, ~3.3k px). Use these tokens for any new accent — do not
   reintroduce the old amber #f1d108 / gradient variants.
   #8306 — unified all amber accents to MAN-yellow for visual
   consistency with the logo.
   ============================================================ */
:root {
  --bm-yellow: #f1d108;          /* primary accent (badges, links, borders, CTA bg) */
  --bm-yellow-light: #f9d930;    /* gradient top / lighter sheen */
  --bm-yellow-pale: #ffe96b;     /* hover, soft glow, light text on dark CTAs */
  --bm-yellow-dark: #c4a800;     /* gradient bottom for depth */
  --bm-yellow-deep: #b07f00;     /* link colour on cream/light backgrounds (contrast) */
  --bm-gold-star: #FFD700;       /* canonical 5-star fill (don't unify) */
}

/* ============================================================
   BM Custom — Global Font Override: Barlow
   ============================================================ */
/* CLS — metric-adjusted Arial fallback so the swap from system sans
   to Barlow doesn't reflow. Values target Barlow's ascent/descent
   ratios so line-box height stays stable. (#8321) */
@font-face {
  font-family: 'Barlow Fallback';
  src: local('Arial');
  size-adjust: 96.85%;
  ascent-override: 89.4%;
  descent-override: 25.1%;
  line-gap-override: 0%;
}
body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, td, th, label, input, textarea, select, button,
.navbar1_link,
.navbar1_dropdown-toggle,
.text-size-medium,
.text-size-large,
.text-size-small,
.heading-style-h1,
.heading-style-h2,
.heading-style-h3,
.heading-style-h4,
.heading-style-h5,
.heading-style-h6,
.text-rich-text,
.text-rich-text p,
.text-rich-text h2,
.text-rich-text h3,
.text-rich-text h4,
.text-rich-text li,
.button,
.w-nav-link,
.w-dropdown-toggle,
[class*="text-"],
[class*="heading-"] {
  font-family: 'Barlow', 'Barlow Fallback', sans-serif !important;
}

/* Keep Great Vibes for any decorative/script elements */
.text-style-script,
[style*="Great Vibes"] {
  font-family: 'Great Vibes', cursive !important;
}

/* ============================================================
   Body type scale — comfortable reading on mobile + desktop
   Bumps prose-only sizes; leaves headings/buttons/labels alone.
   ============================================================ */
body {
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.6;
}
.text-size-regular,
.paragraph,
.paragraph-2, .paragraph-3, .paragraph-4, .paragraph-5 {
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.6;
}
.text-size-medium,
.text-size-medium-2 {
  font-size: 1.1875rem;       /* 19px (was 18px) */
  line-height: 1.6;
}
@media (max-width: 767px) {
  .text-size-medium-2 { font-size: 1.0625rem; line-height: 1.6; }   /* 17px (was 16px) */
}
.text-rich-text,
.text-rich-text p,
.text-rich-text li {
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.65;
}

/* Barlow weight mapping for better typography */
h1, .heading-style-h1 { font-weight: 700 !important; }
h2, .heading-style-h2 { font-weight: 600 !important; }
h3, .heading-style-h3,
h4, .heading-style-h4 { font-weight: 600 !important; }
.navbar1_link, .w-nav-link, .button { font-weight: 500 !important; }
p, li, span, a { font-weight: 400; }

/* Barlow semi-condensed for headings — punchier look */
h1, h2, h3,
.heading-style-h1,
.heading-style-h2,
.heading-style-h3 {
  letter-spacing: -0.01em;
}

/* ============================================================
   BM Custom — Wider Hero Headers
   ============================================================ */
.max-width-large {
  max-width: 64rem !important;
}

/* ============================================================
   BM Custom — Alternating Content Sections
   ============================================================ */

/* --- Split Section: text + image side-by-side --- */
.bm-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Flip image to left on dark/reverse rows */
.bm-split-section.bm-reverse .bm-split-grid {
  direction: rtl;
}
.bm-split-section.bm-reverse .bm-split-grid > * {
  direction: ltr;
}

/* Content column */
.bm-split-content .heading-style-h3 {
  margin-bottom: 1.25rem;
}

/* Image column */
.bm-split-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.bm-split-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* --- Dark section variant --- */
.bm-split-section.bm-dark {
  background-color: #252323;
  color: #ffffff;
}
.bm-split-section.bm-dark .heading-style-h3 {
  color: #ffffff;
}
.bm-split-section.bm-dark .text-rich-text {
  color: #e0e0e0;
}
.bm-split-section.bm-dark .text-rich-text a {
  color: #f1d108;
  text-decoration: underline;
}
.bm-split-section.bm-dark .text-rich-text strong {
  color: #ffffff;
}
.bm-split-section.bm-dark .text-rich-text h3 {
  color: #f1d108;
}

/* --- Blue section variant --- */
.bm-split-section.bm-blue {
  background-color: #006fb6;
  color: #ffffff;
}
.bm-split-section.bm-blue .heading-style-h3 {
  color: #ffffff;
}
.bm-split-section.bm-blue .text-rich-text {
  color: #e0f0ff;
}
.bm-split-section.bm-blue .text-rich-text a {
  color: #f1d108;
  text-decoration: underline;
}
.bm-split-section.bm-blue .text-rich-text strong {
  color: #ffffff;
}
.bm-split-section.bm-blue .text-rich-text h3 {
  color: #f1d108;
}

/* --- Light alternate (subtle off-white) --- */
.bm-split-section.bm-light-alt {
  background-color: #f5f5f5;
}

/* --- Location-page section colour fixes ---
   Several Webflow-export sections render transparent → body white.
   On location pages this stacks 5+ whites and reads as dead-air.
   Recolour to a warm cream tied to the brand gold (#f1d108).
   The "Need Immediate Help?" CTA (.section_home_team-3) carries
   white text classes from Webflow, so it gets brand BLUE instead
   of cream to keep contrast — also breaks up the cream rhythm.
   Scoped to .location-page so services/motorways/home are untouched.
*/
body.location-page .section_car-towing-and-breakdown-service_cta-2,
body.location-page .section_home_cta-1,
body.location-page .section_home_cta-2,
body.location-page .section_lorry-and-hgv-towing-and-breakdown-service_content {
  background-color: #faf6ec;
}
body.location-page .section_home_team-3 {
  background-color: #006fb6;
}

/* --- Gold accent bar on image --- */
.bm-split-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f1d108, #c4a800);
}

/* --- Tablet (991px) --- */
@media screen and (max-width: 991px) {
  .bm-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .bm-split-image img {
    min-height: 260px;
    max-height: 400px;
  }
}

/* --- Mobile (767px) --- */
@media screen and (max-width: 767px) {
  .bm-split-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  /* Always show image below text on mobile */
  .bm-split-section.bm-reverse .bm-split-grid {
    direction: ltr;
  }
  .bm-split-content {
    order: 1;
  }
  .bm-split-image {
    order: 2;
  }
  .bm-split-image img {
    min-height: 220px;
    max-height: 300px;
  }
}

/* ============================================================
   CTA Buttons — consistent "CALL SIMON DIRECT" styling
   ============================================================ */
.button.is-icon {
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

/* ============================================================
   Fix warped images sitewide
   ============================================================ */

/* Round thumbnail images (location/service cards) */
.image-3.roundimage {
  width: 128px;
  height: 128px;
  object-fit: cover;
}

/* Feature list images */
.home_features-list_image {
  object-fit: cover;
}

/* Constrain split-section hero images (e.g. About page Simon photo) */
.car-towing-and-breakdown-service_cta-2_image {
  max-height: 420px;
  object-fit: cover;
}

/* Global safety net — prevent any img with explicit dimensions from warping */
img[width][height] {
  object-fit: cover;
}

/* ============================================================
   Timeline — About page history (full-width alternating)
   ============================================================ */
/* Timeline animation keyframes */
@keyframes bm-tl-fade-scale {
  from { opacity: 0; transform: translateY(40px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bm-tl-fade-left {
  from { opacity: 0; transform: translateX(60px) scale(0.92); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes bm-tl-fade-right {
  from { opacity: 0; transform: translateX(-60px) scale(0.92); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes bm-tl-year-pop {
  0% { opacity: 0; transform: scale(0.3); }
  60% { transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes bm-tl-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px #f1d108; }
  50% { box-shadow: 0 0 0 12px rgba(232,170,20,0.25); }
}
@keyframes bm-tl-line-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.bm-timeline {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
/* Central vertical line */
.bm-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  margin-left: -2px;
  background: linear-gradient(180deg, #f1d108, #006fb6, #f1d108);
  border-radius: 2px;
  transform-origin: top;
  animation: bm-tl-line-grow 1.8s ease-out forwards;
}

/* Each timeline row — two-column grid */
.bm-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 3.5rem;
}
.bm-timeline-item:last-child { margin-bottom: 0; }

/* Center marker column */
.bm-timeline-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  z-index: 2;
  padding-top: 0.5rem;
}
.bm-timeline-year {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #f1d108;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.3);
}
.bm-timeline-item.bm-timeline-visible .bm-timeline-year {
  animation: bm-tl-year-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.bm-timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f1d108;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px #f1d108;
  z-index: 2;
}
.bm-timeline-item.bm-timeline-visible .bm-timeline-dot {
  animation: bm-tl-dot-pulse 2.5s ease-in-out 0.4s infinite;
}

/* Card — defaults to right side */
.bm-timeline-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.25rem 2.75rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
  border-left: 5px solid #f1d108;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
}
.bm-timeline-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

/* Odd items: card on LEFT, empty on RIGHT */
.bm-timeline-item:nth-child(odd) .bm-timeline-card {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  border-left: none;
  border-right: 5px solid #f1d108;
}
.bm-timeline-item:nth-child(odd) .bm-timeline-marker {
  grid-column: 2;
  grid-row: 1;
}
.bm-timeline-item:nth-child(odd)::after {
  content: '';
  grid-column: 3;
  grid-row: 1;
}

/* Even items: empty on LEFT, card on RIGHT */
.bm-timeline-item:nth-child(even) .bm-timeline-card {
  grid-column: 3;
  grid-row: 1;
  border-left: 5px solid #f1d108;
  border-right: none;
}
.bm-timeline-item:nth-child(even) .bm-timeline-marker {
  grid-column: 2;
  grid-row: 1;
}
.bm-timeline-item:nth-child(even)::after {
  content: '';
  grid-column: 1;
  grid-row: 1;
}

/* Entrance animations per side */
.bm-timeline-item:nth-child(odd).bm-timeline-visible .bm-timeline-card {
  animation: bm-tl-fade-left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.bm-timeline-item:nth-child(even).bm-timeline-visible .bm-timeline-card {
  animation: bm-tl-fade-right 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
/* Staggered delays */
.bm-timeline-item:nth-child(1).bm-timeline-visible .bm-timeline-card { animation-delay: 0.1s; }
.bm-timeline-item:nth-child(1).bm-timeline-visible .bm-timeline-year { animation-delay: 0s; }
.bm-timeline-item:nth-child(2).bm-timeline-visible .bm-timeline-card { animation-delay: 0.15s; }
.bm-timeline-item:nth-child(2).bm-timeline-visible .bm-timeline-year { animation-delay: 0.05s; }
.bm-timeline-item:nth-child(3).bm-timeline-visible .bm-timeline-card { animation-delay: 0.2s; }
.bm-timeline-item:nth-child(3).bm-timeline-visible .bm-timeline-year { animation-delay: 0.1s; }
.bm-timeline-item:nth-child(4).bm-timeline-visible .bm-timeline-card { animation-delay: 0.25s; }
.bm-timeline-item:nth-child(4).bm-timeline-visible .bm-timeline-year { animation-delay: 0.15s; }

/* Highlight card variant */
.bm-timeline-card--highlight {
  background: linear-gradient(135deg, #006fb6, #005a94);
  color: #ffffff;
}
.bm-timeline-card.bm-timeline-card--highlight p { color: #ffffff; }
.bm-timeline-card--highlight a { color: #f1d108; }
.bm-timeline-card--highlight .bm-timeline-title { color: #ffffff; }

/* Card typography */
.bm-timeline-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: #252323;
}
.bm-timeline-card p {
  margin: 0;
  line-height: 1.75;
  color: #444;
  font-size: 1.05rem;
}
.bm-timeline-card a {
  color: #006fb6;
  text-decoration: underline;
}

/* Tablet — narrower but still alternating */
@media screen and (max-width: 991px) {
  .bm-timeline-marker { width: 60px; }
  .bm-timeline-year { font-size: 0.95rem; }
  .bm-timeline-card { padding: 1.75rem 2rem; }
  .bm-timeline-title { font-size: 1.2rem; }
  .bm-timeline-card p { font-size: 0.95rem; }
}

/* Mobile — single column, line on left */
@media screen and (max-width: 767px) {
  .bm-timeline::before {
    left: 22px;
    margin-left: 0;
  }
  .bm-timeline-item {
    display: block;
    padding-left: 60px;
    margin-bottom: 2.5rem;
  }
  .bm-timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
  }
  .bm-timeline-year { font-size: 0.75rem; }
  .bm-timeline-dot { width: 16px; height: 16px; border-width: 3px; }
  .bm-timeline-item:nth-child(odd) .bm-timeline-card,
  .bm-timeline-item:nth-child(even) .bm-timeline-card {
    text-align: left;
    border-left: 4px solid #f1d108;
    border-right: none;
  }
  .bm-timeline-card { padding: 1.5rem 1.25rem; }
  .bm-timeline-title { font-size: 1.1rem; }
  .bm-timeline-card p { font-size: 0.95rem; }
  /* Mobile: all cards animate from bottom */
  .bm-timeline-item:nth-child(odd).bm-timeline-visible .bm-timeline-card,
  .bm-timeline-item:nth-child(even).bm-timeline-visible .bm-timeline-card {
    animation-name: bm-tl-fade-scale;
  }
}

/* ============================================================
   Promise Cards — About page local promise section
   ============================================================ */
.bm-promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}
.bm-promise-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  border: 1px solid rgba(232,170,20,0.25);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.bm-promise-card:hover {
  transform: translateY(-4px);
  border-color: #f1d108;
}
.bm-promise-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.bm-promise-heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #f1d108;
  margin: 0 0 0.75rem;
}
.bm-promise-card p {
  margin: 0;
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .bm-promise-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ============================================================
   Location Content — Structured towing/recovery sections
   ============================================================ */

/* --- Main location content section (Wigan-style structured) --- */
.bm-location-content {
  background: #1a1a1a;
  color: #ffffff;
  padding: 0;
}
.bm-location-content__inner {
  padding: 4rem 0;
}
.bm-location-content__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.bm-location-content__header h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.bm-location-content__intro {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.7;
}
.bm-location-content__intro strong {
  color: #f1d108;
}

/* Service cards (2-col grid) */
.bm-location-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.bm-location-card {
  background: #252323;
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid #f1d108;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bm-location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.bm-location-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.bm-location-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f1d108;
  margin: 0 0 0.75rem;
}
.bm-location-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.bm-location-card a {
  color: #f1d108;
  text-decoration: underline;
}

/* Reasons grid */
.bm-location-reasons {
  background: linear-gradient(135deg, #006fb6, #005a94);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}
.bm-location-reasons > h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 0 2rem;
}
.bm-location-reasons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.bm-location-reason {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.25rem;
  transition: background 0.2s ease;
}
.bm-location-reason:hover {
  background: rgba(255,255,255,0.14);
}
.bm-location-reason__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
  line-height: 1.4;
}
.bm-location-reason strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  color: #f1d108;
  margin-bottom: 0.35rem;
}
.bm-location-reason p {
  color: #e0f0ff;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}
.bm-location-reason a {
  color: #f1d108;
  text-decoration: underline;
}

/* CTA footer */
.bm-location-content__cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.bm-location-content__cta p {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.bm-location-content__cta strong {
  color: #ffffff;
}

/* Mobile location content */
@media screen and (max-width: 767px) {
  .bm-location-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .bm-location-reasons__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .bm-location-reasons {
    padding: 1.75rem 1.25rem;
  }
  .bm-location-content__header h2 {
    font-size: 1.5rem;
  }
}

/* ============================================================
   Geo Landmarks — Location coverage sections (all location pages)
   ============================================================ */
.section_geo-landmarks {
  background: #f7f7f7;
  border-top: 3px solid #f1d108;
}
.section_geo-landmarks .heading-style-h3 {
  font-family: 'Barlow', sans-serif;
  color: #252323;
  margin-bottom: 1.25rem;
}
.section_geo-landmarks .text-rich-text {
  max-width: 820px;
}
.section_geo-landmarks .text-rich-text p {
  color: #444;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.section_geo-landmarks .text-rich-text a {
  color: #006fb6;
  text-decoration: underline;
}
.section_geo-landmarks .text-rich-text strong {
  color: #252323;
}

/* ============================================================
   Features List 2 — "Why People Call Me First" (location pages)
   ============================================================ */
.section_breakdown-recovery-and-towing-leeds_features-list-2 {
  background: #252323;
  color: #ffffff;
}
.section_breakdown-recovery-and-towing-leeds_features-list-2 .heading-style-h3 {
  font-family: 'Barlow', sans-serif;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.section_breakdown-recovery-and-towing-leeds_features-list-2 .heading-style-h3 strong {
  color: #f1d108;
}
.section_breakdown-recovery-and-towing-leeds_features-list-2 .text-rich-text {
  max-width: 820px;
}
.section_breakdown-recovery-and-towing-leeds_features-list-2 .text-rich-text p {
  color: #ddd;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.section_breakdown-recovery-and-towing-leeds_features-list-2 .text-rich-text a {
  color: #f1d108;
  text-decoration: underline;
}
.section_breakdown-recovery-and-towing-leeds_features-list-2 .text-rich-text strong {
  color: #ffffff;
}

/* ============================================================
   Review Carousel — Animated Google review slider
   ============================================================ */
.bm-review-section {
  background: #1a1a1a;
  overflow-x: hidden;
}
.bm-review-section .padding-section-large {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.bm-review-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.bm-review-header h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.bm-review-header .bm-review-subtitle {
  color: #999;
  font-size: 1rem;
}
.bm-review-stars-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.bm-review-stars-summary .bm-star {
  color: #FFD700;
  font-size: 1.25rem;
}
.bm-review-stars-summary span {
  color: #ccc;
  font-size: 0.95rem;
}
.bm-review-source-line {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
  color: #d8d8d8;
  font-size: 0.95rem;
  line-height: 1.55;
}
.bm-review-source-line a {
  color: #f1d108;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bm-review-source-line a:hover {
  color: #fde047;
}

/* Carousel container */
.bm-review-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.bm-review-viewport {
  overflow: hidden;
  border-radius: 12px;
}
.bm-review-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --visible: 3;
  --total: 6;
}
.bm-review-card {
  flex: 0 0 calc(100% / var(--visible));
  padding: 0 0.75rem;
  box-sizing: border-box;
}
.bm-review-card-inner {
  background: #252323;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(232, 170, 20, 0.15);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.bm-review-card-inner:hover {
  border-color: rgba(232, 170, 20, 0.4);
  transform: translateY(-2px);
}

/* Stars row */
.bm-review-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
}
.bm-review-card-stars svg {
  width: 18px;
  height: 17px;
}

/* Google logo */
.bm-review-card-google {
  height: 20px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.7;
}

/* Review text */
.bm-review-card-text {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Reviewer name */
.bm-review-card-author {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  color: #f1d108;
  font-size: 0.95rem;
}
.bm-review-card-date {
  color: #777;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Navigation arrows */
.bm-review-prev,
.bm-review-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(232, 170, 20, 0.9);
  border: none;
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.bm-review-prev:hover,
.bm-review-next:hover {
  background: #f1d108;
  transform: translateY(-50%) scale(1.1);
}
.bm-review-prev { left: -12px; }
.bm-review-next { right: -12px; }

/* Dots */
.bm-review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.bm-review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #444;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.bm-review-dot.active {
  background: #f1d108;
  transform: scale(1.3);
}

/* Tablet */
@media screen and (max-width: 991px) {
  .bm-review-track { --visible: 2; }
  .bm-review-carousel { max-width: 100%; padding: 0 2.5rem; }
  .bm-review-prev { left: 4px; }
  .bm-review-next { right: 4px; }
  .bm-review-header h2 { font-size: 1.6rem; }
}

/* Mobile */
@media screen and (max-width: 767px) {
  .bm-review-track { --visible: 1; }
  .bm-review-carousel { max-width: 100%; padding: 0 2.75rem; }
  .bm-review-section .padding-section-large {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .bm-review-prev,
  .bm-review-next {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .bm-review-prev { left: 2px; }
  .bm-review-next { right: 2px; }
  .bm-review-card-inner {
    padding: 1.5rem 1.25rem;
  }
  .bm-review-header h2 { font-size: 1.35rem; }
}

/* ============================================================
   Locations / "Across My Patch" Section — Full-width Override
   ============================================================ */
.section_team10 .container-large {
  max-width: 100%;
}
.section_team10 .max-width-large {
  max-width: 64rem;
}

/* ============================================================
   Mobile Call Button — Tablet-only nav CTA (#8248 redesign)
   • Hidden on desktop (full nav + CALL pill take care of it)
   • Hidden on phones (sticky bottom bar `.bm-call-bar` covers it,
     and a third floating phone CTA = redundant + visually noisy)
   • Visible 768–991px (tablet) where neither bottom bar nor desktop
     pill is shown. Pushed to the right with `margin-left:auto` so
     it groups tight against the hamburger instead of stranding in
     the middle of `space-between`.
   ============================================================ */
.bm-mobile-call-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  background: linear-gradient(180deg, #f9d930 0%, #f1d108 60%, #c4a800 100%);
  color: #1a1a2e;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(232, 170, 20, 0.32),
              inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bm-mobile-call-btn:hover,
.bm-mobile-call-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(232, 170, 20, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.bm-mobile-call-btn svg {
  flex-shrink: 0;
  fill: #1a1a2e;
  width: 18px;
  height: 18px;
}

/* Tablet only: 768–991px. */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .bm-mobile-call-btn {
    display: inline-flex;
    margin-left: auto;     /* push self + hamburger to the right edge */
    margin-right: 0.75rem; /* tight gap before the hamburger */
  }
}

/* ============================================================
   Mobile burger button — frame + breathing room (#8301, #8302, #8314)
   Stock Webflow burger sits flush against the logo with no visible
   button affordance. Add a brand-red outline (#ce1f26 "rig-red", same
   as the CTA buttons + sticky call bar — #8311/#8314) so it reads as
   a tap target. Parent .navbar1_component has padding-right:5% — to
   balance that visible right whitespace, margin-left mirrors `5% +
   0.5rem` so the burger has matching breathing room on each side.
   ============================================================ */
@media screen and (max-width: 991px) {
  .navbar1_menu-button {
    border: 1.5px solid #ce1f26;
    border-radius: 8px;
    padding: 9px 11px;
    margin-left: calc(5vw + 0.5rem);
    margin-right: 0.5rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }
  .navbar1_menu-button:hover {
    border-color: #a21319;
    background-color: rgba(206, 31, 38, 0.08);
  }
  .navbar1_menu-button.w--open {
    border-color: #a21319;
    background-color: rgba(206, 31, 38, 0.12);
  }
  /* Webflow's stock -.5rem right margin pulled the icon out of the
     button — kill it so the icon centres inside our new frame. */
  .menu-icon1 {
    margin-right: 0 !important;
    width: 26px !important;
    height: 20px !important;
  }
}

/* ============================================================
   Locations grid — service-locations page card layout
   Unified clickable card: image + dark navy/gold gradient + label.
   Flex layout (not grid) so the orphan card on the final row
   centres instead of dangling left-aligned.
   Scoped via .bm-locations-grid.
   ============================================================ */
.bm-locations-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 1.25rem !important;
  /* override webflow grid template props */
  grid-template-columns: none !important;
  grid-template-rows: none !important;
}

.bm-loc-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  background: #003d63;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4 / 5;
  flex: 0 0 calc((100% - 4 * 1.25rem) / 5);
  max-width: 280px;
}

.bm-loc-card:hover,
.bm-loc-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  outline: none;
}
.bm-loc-card:focus-visible {
  box-shadow: 0 0 0 3px #f1d108, 0 18px 36px rgba(0, 0, 0, 0.35);
}

.bm-loc-card__media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.bm-loc-card__img {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
  display: block;
  transition: transform 0.55s ease, filter 0.4s ease;
  filter: saturate(0.88) brightness(0.92);
}

.bm-loc-card:hover .bm-loc-card__img {
  transform: scale(1.07);
  filter: saturate(1) brightness(1);
}

/* Navy → transparent gradient that ties the card together and makes the
   bottom label readable regardless of underlying photo. */
.bm-loc-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 28, 51, 0.0) 35%, rgba(0, 28, 51, 0.55) 62%, rgba(0, 28, 51, 0.92) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 40%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Top-right map-pin badge — gold ring, navy fill, white pin */
.bm-loc-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 28, 51, 0.92);
  border: 2px solid #f1d108;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.bm-loc-card__badge svg {
  width: 18px;
  height: 18px;
}

/* Bottom label band — centred, single-line name with full width */
.bm-loc-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  padding: 1rem 0.9rem 1.15rem;
  color: #ffffff;
  text-align: center;
  border-top: 3px solid #f1d108;
  background: linear-gradient(180deg, rgba(0, 28, 51, 0) 0%, rgba(0, 28, 51, 0.35) 100%);
}

.bm-loc-card__text {
  display: block;
  min-width: 0;
}

.bm-loc-card__name {
  display: block;
  font-family: 'Barlow', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.05vw + 0.55rem, 1.2rem);
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bm-loc-card__sub {
  display: block;
  font-family: 'Barlow', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f1d108;
  margin-top: 6px;
}

/* Arrow lives independently of the label flex flow so the name has the
   full label width to itself — kept as a corner CTA pip. */
.bm-loc-card__arrow {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1d108;
  color: #003d63;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.bm-loc-card:hover .bm-loc-card__arrow {
  transform: translateX(3px) scale(1.05);
  background: #ffffff;
}

/* Wide tablet / small desktop — 4 columns */
@media screen and (max-width: 1199px) {
  .bm-loc-card {
    flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
    max-width: 260px;
  }
}

/* Tablet — 3 columns */
@media screen and (max-width: 991px) {
  .bm-locations-grid { gap: 1rem !important; }
  .bm-loc-card {
    flex: 0 0 calc((100% - 2 * 1rem) / 3);
    max-width: 240px;
  }
}

/* Mobile — 2 columns */
@media screen and (max-width: 767px) {
  .bm-locations-grid { gap: 0.75rem !important; }
  .bm-loc-card {
    flex: 0 0 calc((100% - 0.75rem) / 2);
    max-width: none;
    border-radius: 12px;
    aspect-ratio: 3 / 4;
  }
  .bm-loc-card__label { padding: 0.75rem 0.6rem 0.85rem; }
  .bm-loc-card__sub { font-size: 0.62rem; letter-spacing: 0.12em; margin-top: 3px; }
  .bm-loc-card__arrow { width: 26px; height: 26px; font-size: 0.85rem; top: 0.55rem; left: 0.55rem; }
  .bm-loc-card__badge { width: 30px; height: 30px; top: 0.55rem; right: 0.55rem; }
  .bm-loc-card__badge svg { width: 15px; height: 15px; }
}

/* Very small phones */
@media screen and (max-width: 380px) {
  .bm-locations-grid { gap: 0.55rem !important; }
  .bm-loc-card { flex-basis: calc((100% - 0.55rem) / 2); }
  .bm-loc-card__sub { display: none; }
  .bm-loc-card__label { padding: 0.6rem 0.5rem 0.7rem; }
}

/* Section padding + dark continuous background */
.section_car-towing-and-breakdown-service_cta-2:has(.bm-locations-grid) .padding-section-large {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}
.section_car-towing-and-breakdown-service_cta-2:has(.bm-locations-grid) {
  background-color: #252323;
}

/* ============================================================
   Compact location-card variant — used on the home page where
   we want a short, dense locations strip (4x2) instead of the
   tall portrait cards on the hub page. Reuses bm-loc-card so
   hover/focus/overlay/badge/arrow behaviour is identical.
   #8268: replaces the original team10 slider.
   ============================================================ */
.section_home-locations {
  background-color: #252323;
}
.section_home-locations .padding-section-medium {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}
.bm-home-locations__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.75rem;
  color: #ffffff;
}
.bm-home-locations__eyebrow {
  display: inline-block;
  background-color: #f1d108;
  color: #252323;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.85rem;
}
.bm-home-locations__title {
  color: #ffffff;
  font-size: clamp(1.6rem, 1.5vw + 1rem, 2.25rem);
  line-height: 1.2;
  margin: 0 0 0.6rem;
}
.bm-home-locations__lede {
  color: #d4d4d4;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
}
.bm-home-locations__cta {
  text-align: center;
  margin-top: 1.5rem;
}
.bm-home-locations__cta-link {
  display: inline-block;
  color: #f1d108;
  font-family: 'Barlow', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  border: 2px solid #f1d108;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.bm-home-locations__cta-link:hover,
.bm-home-locations__cta-link:focus-visible {
  background-color: #f1d108;
  color: #252323;
  outline: none;
}

/* Compact card — landscape, much shorter than the hub-page 4/5 portrait. */
.bm-loc-card--compact {
  aspect-ratio: 16 / 10;
  max-width: 240px;
}
.bm-loc-card--compact .bm-loc-card__label {
  padding: 0.55rem 0.75rem 0.7rem;
}
.bm-loc-card--compact .bm-loc-card__name {
  font-size: clamp(0.92rem, 0.6vw + 0.72rem, 1.05rem);
}
.bm-loc-card--compact .bm-loc-card__sub {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.bm-loc-card--compact .bm-loc-card__badge {
  width: 28px; height: 28px;
  top: 0.5rem; right: 0.5rem;
}
.bm-loc-card--compact .bm-loc-card__badge svg {
  width: 14px; height: 14px;
}
.bm-loc-card--compact .bm-loc-card__arrow {
  width: 26px; height: 26px;
  font-size: 0.85rem;
  top: 0.5rem; left: 0.5rem;
}

/* Compact-grid layout — 4 cols desktop. (Hub page grid is 5 cols.) */
.bm-locations-grid--compact .bm-loc-card--compact {
  flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
}
@media screen and (max-width: 991px) {
  .bm-locations-grid--compact .bm-loc-card--compact {
    flex: 0 0 calc((100% - 2 * 1rem) / 3);
    max-width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .bm-loc-card--compact { aspect-ratio: 4 / 3; }
  .bm-locations-grid--compact .bm-loc-card--compact {
    flex: 0 0 calc((100% - 0.75rem) / 2);
    max-width: none;
  }
  .section_home-locations .padding-section-medium {
    padding-top: 2.25rem;
    padding-bottom: 2.5rem;
  }
}

/* ============================================================
   Motorway Dots — visual footer component, site-wide.
   Replaces a plain-text motorway list with a compact, branded
   row of motorway-shield-style badges.
   ============================================================ */
.bm-motorway-dots {
  margin-top: 2.5rem;
  padding: 1.75rem 1rem 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}
.bm-motorway-dots__title {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a2e;
  opacity: 0.65;
  margin: 0 0 1.1rem;
}
.bm-motorway-dots__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.bm-motorway-dots__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #003580 0%, #001f4d 100%);
  color: #fff !important;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18), inset 0 0 0 2px rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.bm-motorway-dots__list a:hover {
  background: linear-gradient(180deg, #f1d108 0%, #c4a800 100%);
  border-color: #fff;
  color: #1a1a2e !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(196, 144, 0, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.bm-motorway-dots__list a.is-current {
  background: linear-gradient(180deg, #f1d108 0%, #c4a800 100%);
  color: #1a1a2e !important;
  border-color: #fff;
  cursor: default;
  box-shadow: 0 2px 6px rgba(196, 144, 0, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.bm-motorway-dots__list a.is-current:hover {
  transform: none;
}

/* Mobile: slightly smaller dots so 11 fit in 2-3 rows */
@media screen and (max-width: 480px) {
  .bm-motorway-dots__list a {
    min-width: 48px;
    height: 48px;
    font-size: 0.85rem;
    padding: 0 0.7rem;
  }
  .bm-motorway-dots__list { gap: 0.4rem; }
  .bm-motorway-dots__title { font-size: 0.72rem; letter-spacing: 0.1em; }
}

/* ============================================================
   Motorway Recovery Services — clickable H2 + Read-more CTA pill
   Used on /services/motorway-recovery-services.html where each
   motorway gets a short blurb that links to its dedicated page.
   ============================================================ */
.bm-mw-h2-link {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.25s ease, color 0.2s ease;
}
.bm-mw-h2-link:hover,
.bm-mw-h2-link:focus {
  background-size: 100% 2px;
  color: #f1d108;
}
.bg-blue .bm-mw-h2-link:hover,
.bg-blue .bm-mw-h2-link:focus {
  color: #ffe96b;
}

/* Read-more CTA pill — sits after each motorway paragraph */
.bm-mw-readmore-wrap {
  margin-top: 1.1rem !important;
  margin-bottom: 0 !important;
}
.bm-mw-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f1d108 0%, #c4a800 100%);
  color: #1a1a2e !important;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 2px solid transparent;
  box-shadow: 0 2px 6px rgba(196, 144, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.bm-mw-readmore::after {
  content: "→";
  font-weight: 700;
  transition: transform 0.18s ease;
}
.bm-mw-readmore:hover,
.bm-mw-readmore:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(196, 144, 0, 0.38);
  background: linear-gradient(180deg, #f1d108 0%, #d0b500 100%);
}
.bm-mw-readmore:hover::after,
.bm-mw-readmore:focus::after {
  transform: translateX(3px);
}

/* On dark blue motorway sections, give the pill a navy outline so
   it reads cleanly against the blue background */
.bg-blue .bm-mw-readmore {
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28), inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}
.bg-blue .bm-mw-readmore:hover,
.bg-blue .bm-mw-readmore:focus {
  border-color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32), inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 480px) {
  .bm-mw-readmore {
    font-size: 0.78rem;
    padding: 0.5rem 0.95rem;
  }
}

/* ============================================================
   EEAT Byline — visible authorship, dates, and Person schema
   Default = dark glass card: works on dark photo heroes, blue
   heroes, and dark solid sections. Add .bm-byline--light when
   the byline sits on a light/cream section (off-hero placement).
   ============================================================ */
.bm-byline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.2rem 0.85rem;
  padding: 0.95rem 1.15rem;
  background: rgba(20, 22, 30, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #c4a800;
  border-radius: 8px;
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.96);
  max-width: 100%;
}
.bm-byline img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.bm-byline .bm-byline__meta { min-width: 0; }
.bm-byline .bm-byline__meta strong { color: #fff; }
.bm-byline .bm-byline__meta a {
  color: #f1d108;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bm-byline .bm-byline__meta a:hover { color: #fff; }
.bm-byline .bm-byline__dates {
  font-size: 0.8rem;
  opacity: 0.88;
  display: block;
  margin-top: 0.2rem;
}

/* Light variant — for placements on white/cream sections */
.bm-byline.bm-byline--light {
  background: rgba(26, 26, 46, 0.06);
  color: #1a1a2e;
  border-color: rgba(0, 0, 0, 0.08);
  border-left-color: #c4a800;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.bm-byline.bm-byline--light img {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.bm-byline.bm-byline--light .bm-byline__meta strong { color: #1a1a2e; }
.bm-byline.bm-byline--light .bm-byline__meta a { color: #b07f00; }
.bm-byline.bm-byline--light .bm-byline__meta a:hover { color: #1a1a2e; }
.bm-byline.bm-byline--light .bm-byline__dates { opacity: 0.78; }

@media screen and (max-width: 480px) {
  .bm-byline { font-size: 0.85rem; padding: 0.8rem 1rem; gap: 0.7rem; }
  .bm-byline img { width: 40px; height: 40px; }
}

/* ----- Responsive grid collapse for 2-card vehicle-type sections (#8186) ----- */
/* When HGV/Agricultural cards were stripped, some location pages now have only
   2 cards (Cars / Vans) inside a 4-column grid. Switch to 2-column at all sizes
   so they remain centred and visually balanced. */
.breakdown-recovery-and-towing-leeds_features-list-1_list:has(> .breakdown-recovery-and-towing-leeds_features-list-1_item:nth-child(2):last-child) {
  grid-template-columns: 1fr 1fr;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* 2-card variant (location pages: "Car / Van Breakdown Recovery in <town>")
   has body copy inside each card, not just labels. On mobile, 2-col leaves
   each column ~145px wide and the paragraph wraps 3-4 words per line — too
   tight to read. Stack to single column instead so paragraphs flow naturally.
   Overrides the unconditional 2-col mobile rule from the 4-tile redesign
   below. (#8262, supersedes #8258 font-shrink fix) */
@media (max-width: 767px) {
  .breakdown-recovery-and-towing-leeds_features-list-1_list:has(> .breakdown-recovery-and-towing-leeds_features-list-1_item:nth-child(2):last-child) {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .breakdown-recovery-and-towing-leeds_features-list-1_list:has(> .breakdown-recovery-and-towing-leeds_features-list-1_item:nth-child(2):last-child) > .breakdown-recovery-and-towing-leeds_features-list-1_item {
    padding: 1.25rem 1.1rem;
    min-height: 0;
    align-items: flex-start;
  }
  .breakdown-recovery-and-towing-leeds_features-list-1_list:has(> .breakdown-recovery-and-towing-leeds_features-list-1_item:nth-child(2):last-child) > .breakdown-recovery-and-towing-leeds_features-list-1_item .heading-style-h5-2 {
    font-size: 1.05rem;
    line-height: 1.25;
    text-align: left;
  }
  .breakdown-recovery-and-towing-leeds_features-list-1_list:has(> .breakdown-recovery-and-towing-leeds_features-list-1_item:nth-child(2):last-child) > .breakdown-recovery-and-towing-leeds_features-list-1_item p {
    font-size: 1rem;
    line-height: 1.55;
    text-align: left;
  }
  .breakdown-recovery-and-towing-leeds_features-list-1_list:has(> .breakdown-recovery-and-towing-leeds_features-list-1_item:nth-child(2):last-child) > .breakdown-recovery-and-towing-leeds_features-list-1_item::before {
    align-self: flex-start;
  }
}

/* ===== "I Recover All Vehicle Types" card grid redesign (#8261) =====
   The Webflow source ships these as 4 centred text labels in a 1-col mobile
   stack with `grid-row-gap: 4rem`, which leaves vast empty bands between
   tiny labels. Redesign: 2x2 icon-card grid on mobile (4-col on desktop),
   each tile gets a vehicle SVG icon (keyed by :nth-child since the source
   markup has no per-vehicle hooks), subtle dark card with gold accent on
   hover, tighter section padding. */
.breakdown-recovery-and-towing-leeds_features-list-1_list {
  grid-row-gap: 0.875rem;
  grid-column-gap: 0.875rem;
  place-items: stretch;
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.breakdown-recovery-and-towing-leeds_features-list-1_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 7.5rem;
  padding: 1.1rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  text-align: center;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.breakdown-recovery-and-towing-leeds_features-list-1_item:hover,
.breakdown-recovery-and-towing-leeds_features-list-1_item:focus-within {
  background: linear-gradient(180deg, rgba(232, 170, 20, 0.12) 0%, rgba(0, 111, 182, 0.12) 100%);
  border-color: rgba(232, 170, 20, 0.55);
  transform: translateY(-2px);
}
.breakdown-recovery-and-towing-leeds_features-list-1_item::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.95;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.breakdown-recovery-and-towing-leeds_features-list-1_item:hover::before {
  opacity: 1;
  transform: scale(1.05);
}
.breakdown-recovery-and-towing-leeds_features-list-1_item .margin-bottom.margin-xsmall {
  margin-bottom: 0;
}
.breakdown-recovery-and-towing-leeds_features-list-1_item .heading-style-h5-2 {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0;
}
/* The paragraph inside each card carries `.text-color-white-2`, which Webflow
   secretly ships with `font-size: 2.2rem`. That blows body copy up to ~35px on
   desktop — bigger than the (deliberately label-sized) h3 above it — and the
   default body line-height makes it sit unbalanced inside the card. Reset to
   normal body proportions, scoped to features-list-1 paragraphs so other
   `.text-color-white-2` headings around the site keep their hero size. */
.breakdown-recovery-and-towing-leeds_features-list-1_item p {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  max-width: 32ch;
}
/* Per-vehicle SVG icons (white outline, 1.6 stroke). Order in source is
   fixed: 1=CARS, 2=VANS, 3=MOTORHOMES, 4=CAMPER VANS. */
.breakdown-recovery-and-towing-leeds_features-list-1_item:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2'/%3E%3Ccircle cx='7' cy='17' r='2'/%3E%3Cpath d='M9 17h6'/%3E%3Ccircle cx='17' cy='17' r='2'/%3E%3C/svg%3E");
}
.breakdown-recovery-and-towing-leeds_features-list-1_item:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2'/%3E%3Cpath d='M15 18H9'/%3E%3Cpath d='M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14'/%3E%3Ccircle cx='17' cy='18' r='2'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3C/svg%3E");
}
.breakdown-recovery-and-towing-leeds_features-list-1_item:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 6v6'/%3E%3Cpath d='M15 6v6'/%3E%3Cpath d='M2 12h19.6'/%3E%3Cpath d='M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Cpath d='M9 18h5'/%3E%3Ccircle cx='16' cy='18' r='2'/%3E%3C/svg%3E");
}
.breakdown-recovery-and-towing-leeds_features-list-1_item:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8H2z'/%3E%3Cpath d='M9 17V7'/%3E%3Cpath d='M9 13H2'/%3E%3Cpath d='M14 17v-3a2 2 0 0 1 2-2h6'/%3E%3Ccircle cx='8' cy='17' r='2'/%3E%3C/svg%3E");
}
/* 2x2 grid on mobile (Webflow default is 1-col which wastes the whole right
   side of the viewport). Matches the existing 2-card override above for the
   stripped-list case but unconditionally for 4 items. */
@media (max-width: 767px) {
  .breakdown-recovery-and-towing-leeds_features-list-1_list {
    grid-template-columns: 1fr 1fr;
  }
  .breakdown-recovery-and-towing-leeds_features-list-1_item {
    min-height: 6.75rem;
    padding: 1rem 0.5rem;
  }
  .breakdown-recovery-and-towing-leeds_features-list-1_item::before {
    width: 38px;
    height: 38px;
  }
  /* Pull the section padding in — the original `padding-section-large`
     leaves 4rem top/bottom which compounded with the wasted in-grid space. */
  .section_breakdown-recovery-and-towing-leeds_features-list-1 .padding-section-large {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .section_breakdown-recovery-and-towing-leeds_features-list-1 .margin-bottom.margin-xxlarge {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 479px) {
  .breakdown-recovery-and-towing-leeds_features-list-1_list {
    grid-row-gap: 0.625rem;
    grid-column-gap: 0.625rem;
  }
  .breakdown-recovery-and-towing-leeds_features-list-1_item .heading-style-h5-2 {
    font-size: 0.9rem;
  }
}

/* When a Rescue HGVs card was stripped from the 4-column "what I do" grid,
   some location pages now have 3 items in a 4-column layout. Switch to 3-col
   so the row stays evenly distributed. */
.home_cta-2_list.gap:not(.tall):has(> .home_cta-2_item:nth-child(3):last-child) {
  grid-template-columns: 1fr 1fr 1fr;
}
/* :has() specificity beats the webflow tablet/mobile media queries, so we
   need to restate the responsive collapse here or it stays 3-col on phones. */
@media (max-width: 991px) {
  .home_cta-2_list.gap:not(.tall):has(> .home_cta-2_item:nth-child(3):last-child) {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .home_cta-2_list.gap:not(.tall):has(> .home_cta-2_item:nth-child(3):last-child) {
    grid-template-columns: 1fr;
  }
}

/* 2-col tall grid with 3 items (Rescue HGVs stripped) → 3-col on desktop. */
.home_cta-2_list.gap.tall:has(> .home_cta-2_item:nth-child(3):last-child) {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 991px) {
  .home_cta-2_list.gap.tall:has(> .home_cta-2_item:nth-child(3):last-child) {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .home_cta-2_list.gap.tall:has(> .home_cta-2_item:nth-child(3):last-child) {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   #8340 — Lift the location/motorway "What I Can Help You With" service
   tiles off their flat section background. Pre-#8340 each tile was just
   icon + h3 + paragraph stacked directly on the cream/yellow section, with
   nothing separating one tile from the next — they read as one wall of
   text. Now they're proper white cards with a brand-red top accent
   (matches the #8315 fair-prices cards), a layered shadow, and a hover
   lift. Used on every location AND every motorway page (any descendant of
   .home_cta-2_list). Don't move this rule above the :has() responsive
   blocks — they need to stay grouped with the layout overrides above.
   ========================================================================== */
.home_cta-2_item {
  background: #ffffff;
  border-top: 4px solid #ce1f26;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  align-self: stretch;
  align-items: stretch;
  height: 100%;
}
.home_cta-2_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 14px 28px rgba(0, 0, 0, 0.14);
}

/* Webflow stock sets place-items:end-start / center-start on the parent grid,
   which leaves cards different heights in the same row. Force stretch so a
   row of cards visually rails together. */
.home_cta-2_list,
.home_cta-2_list.gap,
.home_cta-2_list.gap.tall {
  place-items: stretch;
  grid-row-gap: 1.75rem;
}

/* Internal layout — keep icon + heading on one row, tighten the paragraph */
.home_cta-2_item .flex-block {
  gap: 1rem;
  align-items: center;
}
.home_cta-2_item .w-embed svg {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}
.home_cta-2_item .heading-style-h5-2 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}
.home_cta-2_item .margin-bottom.margin-xsmall {
  margin-bottom: 0.85rem;
}
.home_cta-2_item p {
  margin: 0;
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .home_cta-2_item {
    padding: 1.5rem 1.25rem;
  }
  .home_cta-2_item .heading-style-h5-2 {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home_cta-2_item {
    transition: none !important;
    transform: none !important;
  }
}

/* ============================================================
   Footer Social Icons — N-icon grid + glyph normalisation (#8174)
   Webflow base sets `grid-template-columns: max-content 1fr` (2-icon
   layout). Adding Trustpilot+Yelp left a 326px gap between Maps and
   the rest because slot 2 is `1fr`. Override to a uniform repeat.
   Also normalise SVG sizing so Maps (48vb stroke-art) and Yelp
   (384x512 portrait viewBox) don't render undersized vs FB.
   ============================================================ */
.social-icons1_list {
  grid-template-columns: repeat(auto-fit, 32px) !important;
  grid-auto-columns: 32px !important;
  grid-auto-flow: column !important;
  grid-column-gap: 12px !important;
  place-items: center !important;
}
.social-icons1_link {
  width: 32px;
  height: 32px;
  justify-content: center;
}
.social-icons1_link .icon-embed-small {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icons1_link .icon-embed-small svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* GMB photo carousel (homepage "Simon on the Road") */
.gmb-carousel { position: relative; overflow: hidden; }
.gmb-carousel-track { display: flex; transition: transform 0.5s ease; }
.gmb-carousel-slide { min-width: 33.333%; box-sizing: border-box; padding: 0 0.5rem; }
.gmb-carousel-slide img { width: 100%; height: 280px; object-fit: cover; border-radius: 10px; display: block; }
.gmb-carousel-caption { position: absolute; bottom: 0; left: 0.5rem; right: 0.5rem; padding: 0.75rem 1rem; background: linear-gradient(transparent, rgba(0,0,0,0.7)); border-radius: 0 0 10px 10px; color: #fff; font-size: 0.85rem; font-weight: 500; }
.gmb-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(232,170,20,0.9); color: #252323; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.gmb-carousel-btn:hover { background: #f1d108; }
.gmb-carousel-btn.prev { left: 0.75rem; }
.gmb-carousel-btn.next { right: 0.75rem; }
.gmb-carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.25rem; }
.gmb-carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: background 0.2s; padding: 0; }
.gmb-carousel-dot.active { background: #f1d108; }
@media (max-width: 991px) { .gmb-carousel-slide { min-width: 50%; } }
@media (max-width: 767px) { .gmb-carousel-slide { min-width: 100%; } .gmb-carousel-slide img { height: 240px; } }

/* Service + location pages: collapse 3-col grids to 1-col on mobile.
   Lifted from per-page <style> blocks during 11ty port (#8226 locations, #8227 services). */
@media (max-width: 767px) {
  .section_lorry-and-hgv-towing-and-breakdown-service_content [style*="grid-template-columns:repeat(3"],
  .section_car-towing-and-breakdown-service_content [style*="grid-template-columns:repeat(3"],
  .section_real_jobs_gallery [style*="grid-template-columns:repeat(3"],
  section[style*="0a1628"] > .padding-global > .container-large > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   Motorway landing pages — junction grid, safety callout,
   sister-route nav, coverage note. Lifted sitewide during 11ty
   port (#8228) so all 11 motorway pages share one source.
   ============================================================ */
.bm-junctions { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.bm-junction { position: relative; background: #fff; border: 1px solid #eee; border-left: 4px solid #006fb6; border-radius: 8px; padding: 1.25rem 4.75rem 1.25rem 1.5rem; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.bm-junction::after { content: ""; position: absolute; top: 1rem; right: 1rem; width: 56px; height: 75px; background: url('/images/motorway-sos-phone-sign-p-500.jpg') no-repeat center / contain; border-radius: 3px; box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
.bm-junction h3 { margin: 0 0 0.4rem; font-size: 1.1rem; font-weight: 700; color: #1a1a2e; }
.bm-junction p { margin: 0; font-size: 0.95rem; line-height: 1.55; color: #333; }
.bm-junction .bm-junction__tag { display: inline-block; background: #006fb6; color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 4px; margin-bottom: 0.5rem; }

/* Safety callout — paired scenario cards (drive vs can't drive). */
.bm-safety-callout { margin: 2rem 0 1.5rem; padding: 0; background: transparent; border: 0; border-radius: 0; color: #1a1a2e; }
.bm-safety-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.25rem; }
@media (min-width: 900px) { .bm-safety-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.5rem; } }

.bm-safety-card { position: relative; background: #fffaf0; border-radius: 14px; padding: 1.75rem 1.75rem 1.5rem; box-shadow: 0 18px 42px rgba(10, 22, 50, 0.18); border: 1px solid rgba(0, 0, 0, 0.05); border-left: 6px solid #f1d108; counter-reset: bm-step; min-width: 0; }
.bm-safety-card--alert { background: #fdf3f2; border-left-color: #c0392b; }

.bm-safety-card__head { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0.9rem; align-items: center; margin-bottom: 1rem; }
.bm-safety-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #f1d108; color: #1a1a2e; flex-shrink: 0; }
.bm-safety-card--alert .bm-safety-card__icon { background: #c0392b; color: #fff; }
.bm-safety-card__icon svg { width: 22px; height: 22px; }
.bm-safety-card__kicker { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #8a6300; margin-bottom: 0.15rem; }
.bm-safety-card--alert .bm-safety-card__kicker { color: #c0392b; }
.bm-safety-card__title { margin: 0; font-size: 1.1rem; line-height: 1.3; font-weight: 700; color: #1a1a2e; }

.bm-safety-card ol { list-style: none; counter-reset: bm-step; margin: 0; padding: 0; }
.bm-safety-card li { position: relative; counter-increment: bm-step; padding: 0.55rem 0 0.55rem 2.5rem; margin: 0; font-size: 0.97rem; line-height: 1.55; color: #1a1a2e; border-top: 1px solid rgba(26, 26, 46, 0.08); }
.bm-safety-card li:first-child { border-top: 0; padding-top: 0.25rem; }
.bm-safety-card li:last-child { padding-bottom: 0; }
.bm-safety-card li::before { content: counter(bm-step); position: absolute; left: 0; top: 0.55rem; width: 1.75rem; height: 1.75rem; border-radius: 50%; background: #f1d108; color: #1a1a2e; font-size: 0.85rem; font-weight: 800; line-height: 1.75rem; text-align: center; box-shadow: 0 2px 6px rgba(232, 170, 20, 0.35); }
.bm-safety-card li:first-child::before { top: 0.25rem; }
.bm-safety-card--alert li::before { background: #c0392b; color: #fff; box-shadow: 0 2px 6px rgba(192, 57, 43, 0.35); }
.bm-safety-card a { color: #8a6300; text-decoration: underline; font-weight: 600; }
.bm-safety-card--alert a { color: #c0392b; }
.bm-safety-card strong { color: #1a1a2e; }

.bm-safety-callout > cite { display: block; margin-top: 1.25rem; padding: 0.85rem 1.1rem; background: rgba(255, 255, 255, 0.08); border-left: 3px solid rgba(255, 255, 255, 0.45); border-radius: 0 6px 6px 0; font-size: 0.82rem; line-height: 1.55; font-style: normal; color: rgba(255, 255, 255, 0.85); }
.bm-safety-callout > cite a { color: #fdedb0; text-decoration: underline; }
.bm-safety-callout > cite time { color: inherit; font-weight: 600; }

@media (max-width: 599px) {
  .bm-safety-card { padding: 1.4rem 1.25rem 1.2rem; border-radius: 12px; }
  .bm-safety-card__head { gap: 0.7rem; margin-bottom: 0.85rem; }
  .bm-safety-card__icon { width: 38px; height: 38px; }
  .bm-safety-card__icon svg { width: 19px; height: 19px; }
  .bm-safety-card__title { font-size: 1rem; }
  .bm-safety-card li { font-size: 0.94rem; padding-left: 2.25rem; }
  .bm-safety-card li::before { width: 1.55rem; height: 1.55rem; line-height: 1.55rem; font-size: 0.8rem; }
}

/* SOS-sign banner — inset above the safety-card grid. Sits on the dark blue safety section. */
.bm-sos-banner { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1.1rem; align-items: center; margin: 0 0 1.5rem; padding: 0.9rem 1.1rem; background: rgba(255, 255, 255, 0.08); border-left: 4px solid #f1d108; border-radius: 0 10px 10px 0; }
.bm-sos-banner img { width: 88px; height: auto; border-radius: 6px; background: #fff; padding: 4px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); display: block; }
.bm-sos-banner > div { display: flex; flex-direction: column; gap: 0.2rem; }
.bm-sos-banner strong { color: #fdedb0; font-size: 1.02rem; line-height: 1.3; letter-spacing: 0.01em; }
.bm-sos-banner span { color: rgba(255, 255, 255, 0.92); font-size: 0.93rem; line-height: 1.5; }
@media (max-width: 599px) {
  .bm-sos-banner { gap: 0.9rem; padding: 0.75rem 0.9rem; }
  .bm-sos-banner img { width: 64px; padding: 3px; }
  .bm-sos-banner strong { font-size: 0.95rem; }
  .bm-sos-banner span { font-size: 0.86rem; }
}

.bm-sister-routes { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.75rem; margin-top: 1.5rem; }
.bm-sister-routes a { display: block; text-align: center; background: #1a1a2e; color: #fff; padding: 1rem 0.5rem; border-radius: 8px; text-decoration: none; font-weight: 700; transition: all 0.2s; }
.bm-sister-routes a:hover { background: #c4a800; transform: translateY(-2px); }
.bm-sister-routes a.is-current { background: #c4a800; cursor: default; }
.bm-sister-routes a span { display: block; font-size: 0.7rem; font-weight: 400; opacity: 0.85; margin-top: 0.15rem; }

/* A55-only at source — kept sitewide so any motorway can opt in. */
.bm-coverage-note { background: #f3f6fb; border-left: 4px solid #1a4a8a; border-radius: 6px; padding: 1rem 1.25rem; margin: 1.5rem 0; font-size: 0.95rem; line-height: 1.55; color: #1a1a2e; }
.bm-coverage-note strong { color: #1a4a8a; }

/* ============================================================
   TIER 1 — Scroll-reveal animations (#8243)
   JS adds .bm-reveal to every <section> in <main>, then swaps to
   .bm-revealed when it intersects the viewport. The .bm-reveal-ready
   class on <html> gates the hidden state so non-JS / no-IO falls
   back to fully-visible content. Reduced-motion users skip the
   class entirely.
   ============================================================ */
.bm-reveal-ready .bm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.bm-reveal-ready .bm-reveal.bm-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .bm-reveal-ready .bm-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   TIER 1 — Pulsing emergency CTA buttons (#8243)
   The "CALL SIMON DIRECT" button (.button.is-icon) gets a soft
   amber halo pulse to sell urgency. Pause on hover so the user
   can read steady-state. Reduced-motion = no animation.
   ============================================================ */
@keyframes bm-cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 170, 20, 0.55), 0 4px 12px rgba(0, 0, 0, 0.18); }
  70% { box-shadow: 0 0 0 14px rgba(232, 170, 20, 0), 0 4px 12px rgba(0, 0, 0, 0.18); }
  100% { box-shadow: 0 0 0 0 rgba(232, 170, 20, 0), 0 4px 12px rgba(0, 0, 0, 0.18); }
}
.button.is-icon {
  position: relative;
  animation: bm-cta-pulse 2.4s ease-out infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.button.is-icon:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.02);
}
@media (prefers-reduced-motion: reduce) {
  .button.is-icon { animation: none; }
}

/* ============================================================
   #8303/#8305 — Beefed-up bottom emergency CTA
   The "CALL SIMON DIRECT" button inside the bottom Need-Immediate-
   Help band (.section_home_team-3) gets extra height + brand-red
   (#ce1f26 "rig-red", sampled from the MAN block in the logo —
   #8311) fill matching the in-page CTA section buttons + a
   double-ring red→gold pulse so it reads as the clear primary
   action. Scoped to that section only — in-page hero buttons
   keep the existing soft pulse.
   ============================================================ */
@keyframes bm-cta-pulse-strong {
  0% {
    box-shadow:
      0 0 0 0 rgba(255, 180, 180, 0.7),
      0 0 0 0 rgba(232, 170, 20, 0.55),
      0 6px 18px rgba(0, 0, 0, 0.28);
  }
  60% {
    box-shadow:
      0 0 0 14px rgba(255, 180, 180, 0),
      0 0 0 22px rgba(232, 170, 20, 0),
      0 6px 18px rgba(0, 0, 0, 0.28);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(255, 180, 180, 0),
      0 0 0 0 rgba(232, 170, 20, 0),
      0 6px 18px rgba(0, 0, 0, 0.28);
  }
}
.section_home_team-3 .button.is-icon {
  background: linear-gradient(180deg, #e22a30 0%, #ce1f26 55%, #a21319 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 1.4rem 1.75rem;
  font-size: 1.15rem;
  letter-spacing: 0.4px;
  border-radius: 10px;
  margin-top: 1.5rem;
  animation: bm-cta-pulse-strong 1.8s ease-out infinite;
  /* #8313 — allow wrap on narrow columns so long "CALL SIMON DIRECT: 07549 676 220"
     never overflows the .w-col-6 cell (was nowrap, overflowing 19-38px at desktop+tablet) */
  white-space: normal;
  line-height: 1.25;
  text-align: center;
  max-width: 100%;
}
.section_home_team-3 .button.is-icon > div:first-child {
  flex: 1 1 auto;
  min-width: 0;
}
.section_home_team-3 .button.is-icon:hover {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(180deg, #ed343a 0%, #d92128 55%, #b3151b 100%) !important;
}
.section_home_team-3 .button.is-icon svg,
.section_home_team-3 .button.is-icon .icon-embed-xsmall svg {
  color: #ffffff !important;
  width: 1.4rem;
  height: 1.4rem;
}
@media (max-width: 991px) {
  .section_home_team-3 .button.is-icon {
    padding: 1.15rem 1.1rem;
    font-size: clamp(0.9rem, 2.8vw, 1.05rem) !important;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 767px) {
  .section_home_team-3 .button.is-icon {
    font-size: clamp(0.9rem, 3.8vw, 1.1rem) !important;
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section_home_team-3 .button.is-icon { animation: none; }
}

/* ============================================================
   TIER 1 — Sticky mobile call bar (#8243)
   Always-visible click-to-call ribbon at the bottom of mobile
   viewports. Hidden on desktop (≥768px) — desktop has the WA
   FAB and big in-page buttons already. Sits above the WA FAB,
   never overlaps it. Repositions WA FAB on small screens.
   ============================================================ */
.bm-call-bar {
  display: none; /* show on mobile only */
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.15rem 1rem calc(1.15rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #e22a30 0%, #ce1f26 55%, #a21319 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.28);
  border-top: 2px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.25s ease;
  will-change: transform;
}
/* Floating-CTA coordinator (#8283): hide the call bar pre-scroll, and
   when an in-page CTA / footer is on screen so it doesn't stack with
   the big red "CALL SIMON DIRECT" button or the footer call links. */
body.bm-cta-prelude .bm-call-bar,
body.bm-cta-suppress .bm-call-bar {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.bm-call-bar svg {
  flex-shrink: 0;
  color: #ffffff;
}
.bm-call-bar__text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.1;
}
.bm-call-bar__text strong {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
}
.bm-call-bar__num {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: #ffffff;
}
.bm-call-bar__pulse {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  animation: bm-call-bar-shimmer 3.6s ease-in-out infinite;
}
@keyframes bm-call-bar-shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.55; }
}

/* #8304/#8305 — Eye-catching urgency pulse on the sticky call bar.
   Bar is now brand-red #ce1f26 (logo-sampled, #8311), so the inner
   ring is a soft pale-pink/coral so it actually contrasts the bar
   bg + the gold outer ring. Rings expand UPWARD (negative y-offset,
   zero spread) since the bar hugs the viewport edge. Combined with
   a subtle breathing lift and a phone-icon wiggle so it actually
   demands attention. */
@keyframes bm-call-bar-pulse-strong {
  0% {
    box-shadow:
      0 -4px 18px rgba(0, 0, 0, 0.28),
      0 -2px 0 0 rgba(255, 200, 200, 0.7),
      0 -2px 0 0 rgba(232, 170, 20, 0.55);
  }
  60% {
    box-shadow:
      0 -4px 18px rgba(0, 0, 0, 0.28),
      0 -14px 18px 0 rgba(255, 200, 200, 0),
      0 -22px 28px 0 rgba(232, 170, 20, 0);
  }
  100% {
    box-shadow:
      0 -4px 18px rgba(0, 0, 0, 0.28),
      0 -2px 0 0 rgba(255, 200, 200, 0),
      0 -2px 0 0 rgba(232, 170, 20, 0);
  }
}
@keyframes bm-call-bar-ring {
  0%, 60%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-14deg); }
  20% { transform: rotate(12deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(8deg); }
  50% { transform: rotate(-4deg); }
}
.bm-call-bar {
  animation: bm-call-bar-pulse-strong 1.8s ease-out infinite;
  font-size: 1rem;
}
.bm-call-bar > svg {
  transform-origin: 50% 60%;
  animation: bm-call-bar-ring 1.8s ease-in-out infinite;
}
.bm-call-bar:hover,
.bm-call-bar:active {
  animation-play-state: paused;
}
.bm-call-bar:hover > svg,
.bm-call-bar:active > svg {
  animation-play-state: paused;
}
@media screen and (max-width: 767px) {
  .bm-call-bar { display: inline-flex; }
  /* Lift the WA FAB above the call bar so it's still tappable */
  .bm-whatsapp-fab { bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important; }
  /* Avoid the call bar covering the page footer / final content */
  .page-wrapper { padding-bottom: 64px; }
}
@media (prefers-reduced-motion: reduce) {
  .bm-call-bar__pulse,
  .bm-call-bar,
  .bm-call-bar > svg { animation: none; }
}

/* WhatsApp FAB — moved from inline styles into a class so the
   sticky call bar can reposition it on mobile. */
.bm-whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.2s ease, opacity 0.25s ease;
  text-decoration: none;
  will-change: transform;
}
.bm-whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}
/* Floating-CTA coordinator (#8283): slide the WA bubble off-screen
   pre-scroll and when an in-page CTA / footer is visible. */
body.bm-cta-prelude .bm-whatsapp-fab,
body.bm-cta-suppress .bm-whatsapp-fab {
  transform: translateX(140%);
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   TIER 1 — Card hover lifts + image zoom (#8243)
   Targets shared card patterns sitewide so we don't have to
   touch 40+ pages. Each rule scopes to a known container so
   we don't accidentally lift unrelated divs.
   ============================================================ */

/* Real-jobs gallery — service-page photo cards (inline-styled in source) */
.section_real_jobs_gallery > .padding-global > .container-large > .padding-section-large > div[style*="grid-template-columns:repeat(3"] > div {
  cursor: default;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}
.section_real_jobs_gallery > .padding-global > .container-large > .padding-section-large > div[style*="grid-template-columns:repeat(3"] > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22) !important;
}
.section_real_jobs_gallery > .padding-global > .container-large > .padding-section-large > div[style*="grid-template-columns:repeat(3"] > div img {
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.section_real_jobs_gallery > .padding-global > .container-large > .padding-section-large > div[style*="grid-template-columns:repeat(3"] > div:hover img {
  transform: scale(1.06);
}

/* Home — "Fair Prices" trust cards */
.fair-prices-cards > div {
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.fair-prices-cards > div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Home — top-of-page trust strip ("Local Knowledge", "No Middlemen", "Neighbours") */
.section_wigan-first [style*="background: rgba(255,255,255,0.05)"] {
  transition: transform 0.3s ease, background-color 0.3s ease;
  will-change: transform;
}
.section_wigan-first [style*="background: rgba(255,255,255,0.05)"]:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.09) !important;
}

/* Home — "Areas I Cover Regularly" pill list */
.towing-areas-grid > div {
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
.towing-areas-grid > div:hover {
  transform: translateY(-2px);
  background: #e6eef6 !important;
  box-shadow: 0 4px 10px rgba(26, 82, 118, 0.18);
}

/* Reviews carousel — promote existing 2px lift to a slightly fuller move */
.bm-review-card-inner {
  cursor: default;
}
.bm-review-card-inner:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 170, 20, 0.55);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

/* Reduced-motion: kill all card transforms */
@media (prefers-reduced-motion: reduce) {
  .section_real_jobs_gallery > .padding-global > .container-large > .padding-section-large > div > div,
  .section_real_jobs_gallery > .padding-global > .container-large > .padding-section-large > div > div img,
  .fair-prices-cards > div,
  .section_wigan-first [style*="background: rgba(255,255,255,0.05)"],
  .towing-areas-grid > div,
  .bm-review-card-inner {
    transition: none !important;
    transform: none !important;
  }
}

/* ==========================================================================
   MOBILE GRID COLLAPSE — homepage 2-col grids carry inline `1fr 1fr` styles
   that overflow narrow viewports. Force single column ≤767px. Override
   inline styles with !important. (#8245)
   ========================================================================== */
@media (max-width: 767px) {
  .wigan-first-grid,
  .fair-prices-grid,
  .towing-landmarks-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 2rem !important;
  }
  .wigan-first-grid > *,
  .fair-prices-grid > *,
  .towing-landmarks-grid > * {
    min-width: 0;
  }
  .fair-prices-cards {
    gap: 0.75rem !important;
  }
  /* Hero h1 was 2.25rem — pull down a notch so it doesn't crowd a portrait viewport. */
  .section_wigan-first h1 {
    font-size: 1.85rem !important;
    line-height: 1.15 !important;
  }
  .section_fair-prices h2,
  .section_local-towing h2 {
    font-size: 1.85rem !important;
    line-height: 1.15 !important;
  }
}

/* Tighter narrow-mobile (iPhone SE / Galaxy S small): collapse the inner
   2x2 fair-prices card grid to a single stack so each card has breathing room. */
@media (max-width: 479px) {
  .fair-prices-cards {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   STICKY NAV REINFORCEMENT (#8247)
   Webflow already sets position:sticky on .navbar1_component but ensure it
   stays solid + casts a clean shadow on scroll, sitewide. Solid background
   prevents the nav looking ghost-y over hero imagery.
   ========================================================================== */
.navbar1_component {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background-color: #ffffff !important;
  backdrop-filter: saturate(140%);
  -webkit-backdrop-filter: saturate(140%);
}
.navbar1_component.scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18) !important;
}

/* ==========================================================================
   NAVBAR LOGO SIZE CAP (#8309)
   Webflow ships .navbar1_logo with a transition but no max-height, so the
   600x177 PNG renders at ~165px tall on wide viewports and balloons the
   navbar to ~190px. Mobile naturally constrains it via parent width so it
   reads fine (~75px). Cap globally so tablet (~768px, was 133px tall) and
   desktop both shrink to match the visual weight Mike approved on mobile.
   .scrolled 36px shrink stays untouched.
   ========================================================================== */
.navbar1_logo {
  max-height: 56px;
  width: auto;
}
@media (max-width: 479px) {
  /* Phones — let natural width-constraint render slightly larger (~75px),
     it's the size Mike already approved on mobile. */
  .navbar1_logo {
    max-height: 72px;
  }
}

/* ==========================================================================
   NAV CALL CTA (#8270)
   Desktop nav phone button must read as a real button, not link text.
   Brand-yellow pill with phone icon, two-line label (kicker + number).
   Mobile (<992px) hides .navbar1_menu-buttons entirely — see #8247 block.
   ========================================================================== */
.navbar1_menu-buttons .button-2.bm-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem 0.55rem 0.85rem;
  background: linear-gradient(180deg, #f9d930 0%, #f1d108 100%);
  color: #111;
  border: 1px solid #c9911c;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.1;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.navbar1_menu-buttons .button-2.bm-nav-cta:hover {
  background: linear-gradient(180deg, #ffe14a 0%, #f1d108 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 5px 14px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
  color: #111;
}
.navbar1_menu-buttons .button-2.bm-nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
}
.navbar1_menu-buttons .button-2.bm-nav-cta:focus-visible {
  outline: 2px solid #006fb6;
  outline-offset: 2px;
}
.bm-nav-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  background: #111;
  color: #f9d930;
}
.bm-nav-cta__icon svg {
  width: 16px;
  height: 16px;
}
.bm-nav-cta__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.bm-nav-cta__text small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  opacity: 0.78;
  line-height: 1;
  margin-bottom: 2px;
}
.bm-nav-cta__text strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1;
}

/* ==========================================================================
   MOBILE MENU GLOW-UP (#8247)
   When the hamburger menu opens, replace the previous mostly-blank Webflow
   default with a hero block: trust strip + big phone CTA + WhatsApp button,
   plus a footer with email + address. Visible only at mobile breakpoint
   (≤991px, which matches data-collapse="medium").
   ========================================================================== */
.bm-mobile-menu-hero,
.bm-mobile-menu-footer { display: none; }

@media screen and (max-width: 991px) {
  /* Mobile menu drawer: deeper background + breathing room */
  .navbar1_menu,
  .navbar1_menu.is-page-height-tablet {
    background: linear-gradient(180deg, #0d1b2a 0%, #1a3047 60%, #0d1b2a 100%) !important;
    color: #ffffff !important;
    padding: 1.25rem 1.25rem 6.5rem !important;
  }

  /* Show the new hero & footer blocks */
  .bm-mobile-menu-hero,
  .bm-mobile-menu-footer { display: block; }

  /* Hide the legacy "CALL SIMON DIRECT" pill at the bottom — replaced by the hero CTA */
  .navbar1_menu-buttons { display: none !important; }

  /* Trust strip — three pills, equal width, tactile */
  .bm-mobile-menu-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .bm-mobile-menu-trust > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.6rem 0.4rem;
    text-align: center;
  }
  .bm-mobile-menu-trust strong {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #ffe96b;
    letter-spacing: 0.01em;
  }
  .bm-mobile-menu-trust em {
    font-style: normal;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.78);
  }

  /* Big phone CTA — gold gradient, full-width, soft pulse */
  .bm-mobile-menu-call {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1.1rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #f9d930 0%, #f1d108 55%, #c4a800 100%);
    color: #1a1a2e !important;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(232, 170, 20, 0.32),
                inset 0 1px 0 rgba(255, 255, 255, 0.45);
    position: relative;
    overflow: hidden;
    margin-bottom: 0.6rem;
    animation: bm-menu-call-pulse 2.4s ease-in-out infinite;
  }
  .bm-mobile-menu-call__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(26, 26, 46, 0.92);
    color: #ffe96b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .bm-mobile-menu-call__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
  }
  .bm-mobile-menu-call__text small {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: rgba(26, 26, 46, 0.72);
  }
  .bm-mobile-menu-call__text strong {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: #1a1a2e;
  }
  @keyframes bm-menu-call-pulse {
    0%, 100% { box-shadow: 0 12px 26px rgba(232, 170, 20, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.45); }
    50%      { box-shadow: 0 14px 36px rgba(232, 170, 20, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.55); }
  }

  /* WhatsApp secondary CTA */
  .bm-mobile-menu-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: linear-gradient(180deg, #25d366 0%, #1ba94f 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.32);
    margin-bottom: 1.4rem;
  }
  .bm-mobile-menu-whatsapp__icon {
    flex-shrink: 0;
    color: #ffffff;
    display: inline-flex;
  }

  /* Nav links — bigger touch targets, light dividers, white text on dark bg */
  .navbar1_menu .navbar1_link,
  .navbar1_menu .w-nav-link {
    color: #ffffff !important;
    font-size: 1.08rem !important;
    font-weight: 600 !important;
    padding: 0.95rem 0.25rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .navbar1_menu .navbar1_link:last-of-type {
    border-bottom: 0;
  }
  .navbar1_menu .navbar1_dropdown-toggle {
    color: #ffffff !important;
    font-size: 1.08rem !important;
    font-weight: 600 !important;
    padding: 0.95rem 0.25rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .navbar1_menu .navbar1_dropdown-toggle .dropdown-chevron {
    color: rgba(255, 255, 255, 0.6);
  }
  .navbar1_menu .navbar1_dropdown-list .navbar1_dropdown-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.98rem !important;
    padding: 0.55rem 0 0.55rem 1.5rem !important;
  }
  .navbar1_menu .navbar1_dropdown-list.w--open {
    background: rgba(0, 0, 0, 0.18) !important;
    border-radius: 8px;
    padding: 0.4rem 0 !important;
    margin: 0.2rem 0 0.4rem;
  }

  /* Footer block — email + address pills */
  .bm-mobile-menu-footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .bm-mobile-menu-footer__row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.55rem 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }
  .bm-mobile-menu-footer__row svg {
    flex-shrink: 0;
    color: #ffe96b;
  }
  .bm-mobile-menu-footer__row--address {
    color: rgba(255, 255, 255, 0.7) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bm-mobile-menu-call { animation: none; }
}

/* === Motorway badge nav (footer) — task #8250 === */
.bm-motorway-nav {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(0, 111, 182, 0.06), rgba(0, 111, 182, 0.02));
  border: 1px solid rgba(0, 111, 182, 0.12);
  border-radius: 14px;
}
.bm-motorway-nav__heading {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a2540;
  margin-bottom: 1rem;
  text-align: center;
}
.bm-motorway-nav__grid {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 0.6rem;
  justify-items: center;
}
.bm-motorway-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 56px;
  height: 56px;
  padding: 0 0.5rem;
  background: linear-gradient(135deg, #006fb6, #005a94);
  color: #fff !important;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 111, 182, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.bm-motorway-badge:hover,
.bm-motorway-badge:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0a83cc, #006fb6);
  box-shadow: 0 6px 16px rgba(0, 111, 182, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  outline: none;
}
.bm-motorway-badge:active {
  transform: translateY(0);
}

/* A-road variant — UK Primary Route sign green (Pantone 356), matches .bm-road-sign--a. */
.bm-motorway-badge--a-road {
  background: linear-gradient(135deg, #006837, #00532c);
  box-shadow: 0 2px 6px rgba(0, 104, 55, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.bm-motorway-badge--a-road:hover,
.bm-motorway-badge--a-road:focus-visible {
  background: linear-gradient(135deg, #007a40, #006837);
  box-shadow: 0 6px 16px rgba(0, 104, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@media (max-width: 991px) {
  .bm-motorway-nav__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .bm-motorway-nav {
    padding: 1.25rem 1rem;
  }
  .bm-motorway-nav__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
  }
  .bm-motorway-badge {
    height: 50px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
}
@media (max-width: 360px) {
  .bm-motorway-nav__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* === Footer link columns — task #8251 === */
.bm-footer-menu {
  row-gap: 1.5rem;
}
.bm-footer-col {
  position: relative;
  padding-left: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bm-footer-col__heading {
  position: relative;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a2540;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
}
.bm-footer-col__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #f1d108 0%, #c4a800 100%);
  border-radius: 2px;
}

.bm-footer-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.85rem !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  color: #334e68 !important;
  background: rgba(10, 37, 64, 0.025);
  border: 1px solid rgba(10, 37, 64, 0.09);
  border-radius: 6px;
  box-shadow: inset 2px 0 0 transparent;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
/* Footer-link bullet = small recovery truck icon (#8361, was ›). */
.bm-footer-link::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1rem;
  flex-shrink: 0;
  color: #006fb6;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 16h13V8h4l3 4v4h-2'/><circle cx='7' cy='17' r='2'/><circle cx='18' cy='17' r='2'/><path d='M5 16V9a1 1 0 0 1 1-1h6'/><path d='M16 12h4'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 16h13V8h4l3 4v4h-2'/><circle cx='7' cy='17' r='2'/><circle cx='18' cy='17' r='2'/><path d='M5 16V9a1 1 0 0 1 1-1h6'/><path d='M16 12h4'/></svg>");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transform: translateX(-2px);
  opacity: 0.6;
  transition: transform 0.18s ease, opacity 0.18s ease, color 0.18s ease;
}
.bm-footer-link:hover,
.bm-footer-link:focus-visible {
  color: #006fb6 !important;
  background: linear-gradient(90deg, rgba(232, 170, 20, 0.12), rgba(0, 111, 182, 0.04));
  border-color: rgba(0, 111, 182, 0.22);
  box-shadow: inset 2px 0 0 #f1d108;
  outline: none;
  text-decoration: none;
}
.bm-footer-link:hover::before,
.bm-footer-link:focus-visible::before {
  transform: translateX(2px);
  opacity: 1;
  color: #f1d108;
}

@media (max-width: 767px) {
  .bm-footer-col__heading {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
  }
  .bm-footer-link {
    font-size: 1.0625rem !important;
    padding-top: 0.55rem !important;
    padding-bottom: 0.55rem !important;
  }
  .bm-footer-link::before {
    width: 1.5rem;
    height: 1.2rem;
  }
}

/* === Footer column truncate (5 visible + show more) — task #8287 === */
.bm-footer-col[data-truncated="true"] > .bm-footer-link[data-bm-overflow] {
  display: none;
}
.bm-footer-col[data-truncated="true"][data-expanded="true"] > .bm-footer-link[data-bm-overflow] {
  display: flex;
  animation: bmFooterReveal 0.22s ease-out both;
}
@keyframes bmFooterReveal {
  from { opacity: 0; transform: translateY(-3px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bm-footer-col__more {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px dashed rgba(0, 111, 182, 0.35);
  color: #006fb6;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  margin-top: 0.35rem;
  border-radius: 6px;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.bm-footer-col__more:hover,
.bm-footer-col__more:focus-visible {
  color: #0a2540;
  border-color: #f1d108;
  background: rgba(232, 170, 20, 0.08);
  outline: none;
}
.bm-footer-col__more-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  line-height: 0.9rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50%;
  background: rgba(0, 111, 182, 0.1);
  color: #006fb6;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.bm-footer-col__more:hover .bm-footer-col__more-icon,
.bm-footer-col__more:focus-visible .bm-footer-col__more-icon {
  background: #f1d108;
  color: #0a2540;
}
.bm-footer-col[data-expanded="true"] .bm-footer-col__more-icon {
  background: rgba(232, 170, 20, 0.18);
  color: #0a2540;
}
@media (max-width: 767px) {
  .bm-footer-col__more {
    font-size: 0.92rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }
}

/* === Footer text bump on mobile — task #8252 === */
@media (max-width: 767px) {
  .footer3_component .text-size-small,
  .footer3_component .text-size-small a {
    font-size: 1.0625rem !important;
    line-height: 1.5;
  }
  .footer3_component .footer3_link {
    font-size: 1.0625rem !important;
  }
  .footer3_component .footer3_credit-text {
    font-size: 1rem;
    line-height: 1.5;
  }
  .footer3_component .footer3_legal-link {
    font-size: 1rem;
  }
}

/* ============================================================
   Footer address card — task #8310
   Kill the <address> user-agent italic and lift the layout into
   a labelled card with brand-yellow accents and clean contact rows.
   Footer sits on a cream/light bg so we use dark text + yellow-deep
   labels for AA contrast.
   ============================================================ */
.bm-footer-address {
  font-style: normal;                 /* kill UA <address> italic */
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0.1rem 0 0 0.95rem;
  border-left: 3px solid var(--bm-yellow);
  max-width: 23rem;
}
.bm-footer-address__group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.bm-footer-address__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bm-yellow-deep);       /* AA contrast on cream */
  line-height: 1.2;
}
.bm-footer-address__value {
  font-size: 0.975rem;
  font-weight: 500;
  line-height: 1.5;
  color: #252323;
}
.bm-footer-address__value strong {
  font-weight: 700;
  color: #1a1a1a;
}
.bm-footer-address__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.15rem;
}
.bm-footer-address__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
  word-break: break-word;
}
.bm-footer-address__contact-link svg {
  flex-shrink: 0;
  color: var(--bm-yellow-deep);
  transition: color 0.15s ease, transform 0.15s ease;
}
.bm-footer-address__contact-link:hover,
.bm-footer-address__contact-link:focus-visible {
  color: var(--bm-yellow-deep);
}
.bm-footer-address__contact-link:hover svg,
.bm-footer-address__contact-link:focus-visible svg {
  transform: scale(1.1);
}
.bm-footer-address__sitemap {
  align-self: flex-start;
  margin-top: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border: 1.5px solid var(--bm-yellow-deep);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--bm-yellow-deep);
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.bm-footer-address__sitemap:hover,
.bm-footer-address__sitemap:focus-visible {
  background-color: var(--bm-yellow);
  border-color: var(--bm-yellow-deep);
  color: #1a1a1a;
}
.bm-footer-address__sitemap span {
  transition: transform 0.15s ease;
}
.bm-footer-address__sitemap:hover span,
.bm-footer-address__sitemap:focus-visible span {
  transform: translateX(3px);
}
@media (max-width: 767px) {
  .bm-footer-address {
    max-width: 100%;
  }
  .bm-footer-address__value {
    font-size: 1.0625rem;
  }
  .bm-footer-address__label {
    font-size: 0.75rem;
  }
}

/* ============================================================
   BM Mega Dropdown — mobile drawer (#8291)
   Below 992px the .bm-mega panels render INSIDE the dark off-canvas
   drawer. Without these rules the SVG icons fill their container
   (giant truck), the grid stacks unstyled, and the eyebrow looks
   like loose body copy.
   ============================================================ */
@media (max-width: 991px) {
  /* Strip desktop sizing — let panel flow inside drawer.
     Parent .navbar1_link has padding-left:4px inside .w-nav-menu (pad-left:20px),
     so dropdown items flush-left at padding-left:4px to match. */
  .bm-mega__inner,
  .bm-mega__inner--services,
  .bm-mega__inner--locations {
    display: block;
    width: auto;
    max-width: none;
    border-radius: 0;
    overflow: visible;
    padding: 0.25rem 0 0.5rem;
  }
  .bm-mega__col {
    padding: 0;
  }
  .bm-mega__eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffe96b;
    padding: 0.5rem 0 0.4rem 4px;
    margin: 0;
  }

  /* Services list — single column stack inside drawer */
  .bm-mega__grid--services {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .bm-mega__item {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    padding: 0.55rem 0 0.55rem 4px;
    margin: 0 !important; /* override Webflow .w-dropdown-link margin:auto centring */
    border-radius: 0;
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none !important;
  }
  .bm-mega__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffe96b;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .bm-mega__icon svg {
    width: 18px;
    height: 18px;
  }
  .bm-mega__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.2;
  }
  .bm-mega__text strong {
    font-family: 'Barlow', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
  }
  .bm-mega__text em {
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.1rem;
  }

  /* Locations regions — flat stacked sections, flush-left like parent links.
     No card background or extra horizontal padding — items align with About Us above. */
  .bm-mega__regions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
  }
  .bm-mega__region {
    padding: 0.4rem 0 0.2rem;
    border-radius: 0;
    background: transparent;
  }
  .bm-mega__region-name {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffe96b;
    padding-left: 4px;
    margin-bottom: 0.1rem;
  }
  .bm-mega__region-blurb {
    display: block;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 4px;
    margin-bottom: 0.25rem;
  }
  .bm-mega__region-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .bm-mega__region-list li {
    margin: 0;
    padding: 0;
  }
  .bm-mega__region-link {
    display: block;
    padding: 0.4rem 0 0.4rem 4px !important;
    margin: 0 !important; /* override Webflow .w-dropdown-link margin:auto centring */
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
  }

  /* Hide the desktop CTA aside — drawer already has the gold Call Simon
     hero CTA up top, stacking another inside the dropdown is redundant
     and steals vertical space in the drawer. */
  .bm-mega .bm-mega__cta { display: none; }
}

/* ============================================================
   BM Mega Dropdown — desktop nav (#8272)
   Stylish wide dropdown for Services Offered + Locations.
   Desktop only (≥992px) — mobile keeps the off-canvas drawer.
   ============================================================ */
@media (min-width: 992px) {
  /* #8274: anchor panel to the navbar (page-width), not the toggle.
     .navbar1_component is position:sticky so it acts as the positioning
     context once .bm-mega itself is static. */
  .bm-mega {
    position: static;
  }
  /* Reset Webflow narrow dropdown panel into a wide mega panel */
  .bm-mega .bm-mega__panel.w-dropdown-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    width: max-content;
    /* Webflow's stock .w-dropdown-list ships min-width: 100% which now
       resolves against the full-width navbar — kill it so max-content wins. */
    min-width: 0;
    max-width: calc(100vw - 4rem);
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow:
      0 20px 50px -12px rgba(20, 22, 28, 0.28),
      0 8px 18px -8px rgba(20, 22, 28, 0.14),
      0 0 0 1px rgba(20, 22, 28, 0.04);
    /* No overflow:hidden here — would clip the hover bridge below.
       Inner card content gets its own clipping via .bm-mega__inner. */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  }
  .bm-mega .bm-mega__panel.w-dropdown-list.w--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
  }
  /* Page-centred panel can't truthfully point at the toggle, so drop the
     pointer arrow — keep a clean rounded card. */
  .bm-mega .bm-mega__panel.w-dropdown-list::before {
    content: none;
  }
  /* Hover bridge — #8285. Must span full navbar width, not just the panel.
     Panel is centred on viewport while toggles sit offset, so a narrow
     bridge leaves the cursor's diagonal path in dead space and Webflow's
     mouseleave fires before the user reaches a link. Negative left/right
     extends the bridge beyond panel edges. Bridge sits in panel-DOM so
     Webflow's hover detector counts it as "still inside the dropdown" →
     keeps the panel open while the cursor travels. */
  .bm-mega .bm-mega__panel.w-dropdown-list::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -50vw;
    right: -50vw;
    height: 24px;
  }

  /* Inner layout grid — services panel.
     Border-radius + overflow:hidden moved here from the panel so the
     hover bridge (::after on .w-dropdown-list) isn't clipped — see #8285. */
  .bm-mega__inner {
    display: grid;
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
  }
  .bm-mega__inner--services {
    grid-template-columns: minmax(0, 1fr) 280px;
    width: 940px;
    max-width: calc(100vw - 4rem);
  }
  .bm-mega__inner--locations {
    grid-template-columns: minmax(0, 1fr) 280px;
    width: 1080px;
    max-width: calc(100vw - 4rem);
  }

  .bm-mega__col {
    padding: 1.6rem 1.8rem 1.8rem;
  }
  .bm-mega__eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8b8b8b;
    margin-bottom: 1rem;
  }

  /* Services grid — 3 columns × 3 rows */
  .bm-mega__grid--services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem 0.5rem;
  }
  .bm-mega__item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding: 0.7rem 0.75rem;
    border-radius: 12px;
    color: #252323 !important;
    text-decoration: none !important;
    transition: background-color 0.15s ease, transform 0.15s ease;
  }
  .bm-mega__item:hover {
    background: linear-gradient(180deg, rgba(232, 170, 20, 0.08) 0%, rgba(232, 170, 20, 0.02) 100%);
  }
  .bm-mega__item:hover .bm-mega__icon {
    background: #f1d108;
    color: #252323;
    border-color: #f1d108;
    transform: scale(1.05);
  }
  .bm-mega__icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f6f6f4;
    color: #252323;
    border: 1px solid rgba(20, 22, 28, 0.06);
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
  }
  .bm-mega__icon svg {
    width: 22px;
    height: 22px;
  }
  .bm-mega__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .bm-mega__text strong {
    font-family: 'Barlow', sans-serif !important;
    font-size: 0.95rem;
    font-weight: 600;
    color: #252323;
    line-height: 1.2;
  }
  .bm-mega__text em {
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 400;
    color: #6a6a6a;
    line-height: 1.3;
    margin-top: 0.15rem;
  }

  /* Locations — region columns */
  .bm-mega__regions {
    padding: 1.6rem 1.8rem 1.8rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 1.8rem;
  }
  .bm-mega__region-name {
    display: block;
    font-family: 'Barlow', sans-serif !important;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #252323;
    margin-bottom: 0.1rem;
  }
  .bm-mega__region-blurb {
    display: block;
    font-size: 0.74rem;
    color: #8b8b8b;
    margin-bottom: 0.55rem;
  }
  .bm-mega__region-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(20, 22, 28, 0.06);
  }
  .bm-mega__region-list li {
    margin: 0;
    padding: 0;
  }
  .bm-mega__region-link {
    display: block;
    padding: 0.4rem 0;
    font-family: 'Barlow', sans-serif !important;
    font-size: 0.95rem;
    font-weight: 500;
    color: #252323 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(20, 22, 28, 0.05);
    transition: color 0.15s ease, padding-left 0.15s ease;
  }
  .bm-mega__region-link:hover {
    color: #c89010 !important;
    padding-left: 0.35rem;
  }
  .bm-mega__region-list li:last-child .bm-mega__region-link {
    border-bottom: 0;
  }

  /* Right CTA panel (shared across both megas) */
  .bm-mega__cta {
    background:
      radial-gradient(120% 80% at 100% 0%, rgba(232, 170, 20, 0.18) 0%, transparent 60%),
      linear-gradient(180deg, #1a1818 0%, #252323 100%);
    color: #ffffff;
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    position: relative;
    overflow: hidden;
  }
  .bm-mega__cta::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 170, 20, 0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .bm-mega__cta-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f1d108;
  }
  .bm-mega__cta-title {
    font-family: 'Barlow', sans-serif !important;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .bm-mega__cta-copy {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
  }
  .bm-mega__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffe96b 0%, #f1d108 100%);
    color: #252323 !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none !important;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 14px rgba(232, 170, 20, 0.32);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  .bm-mega__cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(232, 170, 20, 0.4);
  }
  .bm-mega__cta-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.88rem;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    align-self: flex-start;
    padding-bottom: 1px;
    transition: color 0.15s ease, border-color 0.15s ease;
  }
  .bm-mega__cta-link:hover {
    color: #ffe96b !important;
    border-color: #ffe96b;
  }
  .bm-mega__cta-meta {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }

  /* Hide Webflow's stock dropdown chevron rotation animation glitch — keep it simple */
  .bm-mega .navbar1_dropdown-toggle .dropdown-chevron {
    transition: transform 0.2s ease;
  }
  .bm-mega .navbar1_dropdown-toggle.w--open .dropdown-chevron {
    transform: rotate(180deg);
  }
}

/* Narrower-desktop fallback (992–1199px): shrink locations panel */
@media (min-width: 992px) and (max-width: 1199px) {
  .bm-mega__inner--locations {
    width: 960px;
  }
  .bm-mega__regions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bm-mega__inner--services {
    width: 800px;
  }
  .bm-mega__grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* CTA emergency: logo PNG has rough transparency edges, so sit it
   on a white pad across all dark CTA sections. Keeps soft rounded
   badge + drop shadow. inline-block so it doesn't stretch the full
   column — pad sits tight to the artwork. (#8308) */
.section_home_team-3 .columns-2 img,
.section_home_team-3 .columns img,
.section_home_cta-1 .columns-2 img,
.section_home_cta-1 .columns img,
.section_home_cta-2 .columns-2 img,
.section_home_cta-2 .columns img {
  background: #ffffff;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

/* Section texture (chevron pattern + grain noise) removed #8362 — Mike said chevrons didn't look great */

/* ============================================================
   Inline road-name "motorway sign" badge (#8379).
   Wraps M-/A-/B-road tokens in body copy with a subtle blue
   pill that mimics UK motorway signage. Inline-block, baseline-
   aligned, slightly tighter than running text so it reads as a
   styled mention rather than a button.
   ============================================================ */
.bm-road-sign {
  display: inline-block;
  background: #006fb6;
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.82em;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 0.05em 0.45em;
  margin: 0 0.08em;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 0 1px #006fb6, 0 1px 1px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  vertical-align: baseline;
  white-space: nowrap;
}
a .bm-road-sign,
.bm-road-sign a { text-decoration: none; }
strong .bm-road-sign,
.bm-road-sign strong { font-weight: 700; }

/* A-road variant — UK Primary Route sign green (Pantone 356). */
.bm-road-sign--a {
  background: #006837;
  box-shadow: inset 0 0 0 1px #006837, 0 1px 1px rgba(0, 0, 0, 0.08);
}

/* ===========================================================
   Hero background image (homepage)
   - <picture> sits behind content, overlay gradient + text on top
   =========================================================== */
.bm-hero-video__media,
.bm-hero-video__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .bm-hero-video__media,
  .bm-hero-video__media img {
    object-position: center 40%;
  }
}
.bm-hero-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(rgba(37, 35, 35, 0.50), rgba(37, 35, 35, 0.70));
}
