/* ============================================================
   BM Custom — Global Font Override: Barlow
   ============================================================ */
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', sans-serif !important;
}

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

/* 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: #e8aa14;
  text-decoration: underline;
}
.bm-split-section.bm-dark .text-rich-text strong {
  color: #ffffff;
}
.bm-split-section.bm-dark .text-rich-text h3 {
  color: #e8aa14;
}

/* --- 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: #e8aa14;
  text-decoration: underline;
}
.bm-split-section.bm-blue .text-rich-text strong {
  color: #ffffff;
}
.bm-split-section.bm-blue .text-rich-text h3 {
  color: #e8aa14;
}

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

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

/* --- 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 #e8aa14; }
  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, #e8aa14, #006fb6, #e8aa14);
  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: #e8aa14;
  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: #e8aa14;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px #e8aa14;
  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 #e8aa14;
  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 #e8aa14;
}
.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 #e8aa14;
  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: #e8aa14; }
.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 #e8aa14;
    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(3, 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: #e8aa14;
}
.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: #e8aa14;
  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: #e8aa14;
}

/* 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 #e8aa14;
  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: #e8aa14;
  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: #e8aa14;
  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: #e8aa14;
  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: #e8aa14;
  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 #e8aa14;
}
.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: #e8aa14;
}
.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: #e8aa14;
  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;
}

/* 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: #e8aa14;
  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: #e8aa14;
  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: #e8aa14;
  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 — Always visible next to hamburger
   ============================================================ */
.bm-mobile-call-btn {
  display: none; /* Hidden on desktop */
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #e8aa14;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-right: 0.75rem;
  transition: background 0.2s ease;
}
.bm-mobile-call-btn:hover {
  background: #c49000;
}
.bm-mobile-call-btn svg {
  flex-shrink: 0;
}

@media screen and (max-width: 991px) {
  .bm-mobile-call-btn {
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  .bm-mobile-call-btn span {
    display: none; /* Icon-only on very small screens */
  }
  .bm-mobile-call-btn {
    padding: 0.5rem;
    margin-right: 0.5rem;
  }
}
