/* ═══════════════════════════════════════════
   SKETCH TRADES — ONE PAGE SITES
   Frontend stylesheet
   All selectors scoped to .stops to avoid theme bleed.
   ═══════════════════════════════════════════ */

/* ─── Reset within .stops ─── */
.stops, .stops * { box-sizing: border-box; }
.stops { font-family: var(--stops-font-body, sans-serif); color: var(--stops-body); line-height: 1.6; overflow: hidden; max-width: 100%; }
.stops h1, .stops h2, .stops h3, .stops h4, .stops h5, .stops h6 { font-family: var(--stops-font-headings, sans-serif); color: var(--stops-heading); margin: 0 0 0.6em; line-height: 1.2; font-weight: var(--stops-font-headings-weight, 700); }
.stops p { margin: 0 0 1em; }
.stops img { max-width: 100%; height: auto; display: block; }
.stops a { color: inherit; text-decoration: none; }
.stops button { cursor: pointer; font-family: inherit; }

/* Highlight spans inside headings (two-tone copy) */
.stops h1 span, .stops h2 span, .stops h3 span,
.stops h4 span, .stops h5 span, .stops h6 span { color: var(--stops-secondary) !important; }

/* Eyebrow label */
.stops .eyebrow_label { font-size: 16px; line-height: 1em; font-weight: bold; color: var(--stops-secondary); margin-bottom: 8px; }

/* ═══════════════════════════════════════════
   GLOBAL BUTTONS
   ═══════════════════════════════════════════ */
.stops a.primary-cta,
.stops a.secondary-cta {
  min-width: 220px;
  text-align: center;
  display: inline-block;
  background: linear-gradient(to right, var(--stops-cta-from) 50%, var(--stops-cta-to) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: var(--stops-cta-text);
  margin-top: 20px;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: background-position 0.3s ease;
}
.stops a.primary-cta:hover,
.stops a.secondary-cta:hover { background-position: left bottom; }
.stops a.secondary-cta::after {
  content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  font-size: 18px; margin-left: 0.6em; display: inline-block;
}
.stops .tile-cta-btn { display: inline-block; padding: 10px 0; font-weight: bold; color: var(--stops-secondary); }

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.stops-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--stops-header-bg, rgba(255,255,255,0.92));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--stops-font-body, sans-serif);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.stops-header.is-scrolled { background: var(--stops-header-bg, rgba(255,255,255,0.97)); box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.stops-header-inner {
  max-width: 1450px; margin: 0 auto; padding: 12px 36px;
  display: flex; align-items: center; gap: 24px;
}
.stops-header-logo { max-height: 50px; width: auto; transition: opacity 0.2s ease; }
.stops-header-logo:hover { opacity: 0.85; }
.stops-header-logo-text { font-family: var(--stops-font-headings, sans-serif); font-weight: 800; font-size: 22px; color: var(--stops-header-link, var(--stops-primary)); }
.stops-header-logo-link { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }

/* Menu — centered between logo and right-side actions */
.stops-mhb-menu { flex: 1 1 auto; min-width: 0; display: flex; justify-content: center; }
.stops-mhb-menu .stops-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.stops-mhb-menu .menu-item { position: relative; }
.stops-mhb-menu .menu-item > a { display: block; text-decoration: none; color: var(--stops-header-link, var(--stops-heading)); font-weight: 600; font-size: 15px; }
.stops-mhb-menu .menu-item > a span {
  display: inline-block;
  padding: 10px 16px !important;
  line-height: 1 !important;
  border-radius: 100px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.stops-mhb-menu .menu-item > a:hover span { background-color: rgba(255,255,255,0.12); }

/* Mega menu */
.stops-mhb-menu .stops-has-mega .wpba-mega-menu-top {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 10px;
  z-index: 9999;
}
.stops-mhb-menu .stops-has-mega:hover .wpba-mega-menu-top,
.stops-mhb-menu .stops-has-mega:focus-within .wpba-mega-menu-top { display: block; }
.stops-mhb-menu .stops-has-mega .wpba-mega-menu { background: white; box-shadow: 0 12px 48px rgba(0,0,0,0.14); border-radius: 14px; overflow: hidden; }
.stops .services-submenu {
  background: white;
  padding: 20px 10px 10px;
  width: min(400px, calc(100vw - 30px));
  box-sizing: border-box;
}
.stops .services-submenu .sub-menu-inner { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.stops .service-sub-block {
  padding: 20px;
  border-radius: 10px;
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.2s ease;
}
.stops .service-sub-block:hover { background: #F7F9FC; }
.stops .service-sub-block h4 { margin: 0 0 8px; font-size: 20px; line-height: 1.3; color: var(--stops-heading); }
.stops .service-sub-block p { margin: 0; color: #6e6e6e; line-height: 1.5; font-size: 15px; }

/* Header right-side actions */
.stops-header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

/* Phone CTA — shared base (reused in section CTAs) */
.stops .quote_cta_link { text-decoration: none; display: inline-block; }
.stops .quote_cta {
  display: inline-grid;
  grid-template-columns: 44px auto;
  grid-auto-rows: min-content;
  column-gap: 12px;
  align-items: center;
  border-radius: 100px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.85);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.stops .quote_cta:hover { background-color: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.stops .quote_cta img,
.stops .quote_cta i {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  float: none !important;
  max-height: 36px;
  align-self: center;
}
.stops .quote_cta i { font-size: 26px; color: var(--stops-secondary); justify-self: center; }
.stops .quote_cta p,
.stops .quote_cta h2 {
  grid-column: 2;
  margin: 0 !important;
  white-space: nowrap;
}
.stops .quote_cta p {
  grid-row: 1;
  font-size: 14px;
  line-height: 1.2em;
  color: var(--stops-body);
}
.stops .quote_cta h2 {
  grid-row: 2;
  font-size: 22px !important;
  line-height: 1em !important;
  color: var(--stops-secondary) !important;
  font-family: var(--stops-font-headings, sans-serif);
}

/* Phone CTA — header-specific: compact white pill with shadow */
.stops-header-actions .quote_cta_link { transition: transform 0.2s ease; }
.stops-header-actions .quote_cta_link:hover { transform: translateY(-1px); }
.stops-header-actions .quote_cta {
  grid-template-columns: 36px auto;
  column-gap: 10px;
  padding: 10px 20px 10px 14px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.stops-header-actions .quote_cta:hover { background-color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.stops-header-actions .quote_cta i { font-size: 22px; }
.stops-header-actions .quote_cta img { max-height: 30px; }
.stops-header-actions .quote_cta p { font-size: 12px; line-height: 1.2em; color: #666; }
.stops-header-actions .quote_cta h2 { font-size: 18px !important; line-height: 1.1em !important; letter-spacing: -0.01em; }

/* Action buttons */
.stops .action_button {
  color: var(--stops-cta-text);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  letter-spacing: 0.2px;
  border-radius: 100px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--stops-cta-from), var(--stops-cta-to));
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.stops .action_button:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.16); opacity: 0.92; }

.stops .responsive-cta {
  display: none;
  background: linear-gradient(135deg, var(--stops-cta-from), var(--stops-cta-to));
  color: var(--stops-cta-text);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.stops .responsive-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.16); opacity: 0.92; }

/* Header-scoped colour overrides (only when header colour overrides are set) */
.stops-header .action_button {
  color: var(--stops-header-cta-text, var(--stops-cta-text));
  background: var(--stops-header-cta, linear-gradient(135deg, var(--stops-cta-from), var(--stops-cta-to)));
}
.stops-header .responsive-cta {
  color: var(--stops-header-cta-text, var(--stops-cta-text));
  background: var(--stops-header-cta, linear-gradient(135deg, var(--stops-cta-from), var(--stops-cta-to)));
}
.stops-header .quote_cta i { color: var(--stops-header-phone, var(--stops-secondary)); }
.stops-header .quote_cta h2 { color: var(--stops-header-phone, var(--stops-secondary)) !important; }

/* Burger */
.stops-burger { display: none; flex-direction: column; gap: 5px; background: transparent; border: 0; padding: 10px; cursor: pointer; border-radius: 8px; transition: background-color 0.2s ease; }
.stops-burger:hover { background-color: rgba(255,255,255,0.1); }
.stops-burger span { display: block; width: 24px; height: 2.5px; background: var(--stops-header-link, var(--stops-heading)); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.stops-burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.stops-burger.is-open span:nth-child(2) { opacity: 0; }
.stops-burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu drawer */
.stops-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 24px 30px 30px;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-radius: 0 0 16px 16px;
}
.stops-mobile-menu.is-open { display: block; }
.stops-mobile-menu ul { list-style: none; padding: 0; margin: 0 0 20px; }
.stops-mobile-menu li a { display: block; padding: 14px 0; font-size: 17px; font-weight: 600; color: var(--stops-heading); border-bottom: 1px solid rgba(0,0,0,0.05); transition: color 0.2s ease; }
.stops-mobile-menu li a:hover { color: var(--stops-secondary); }
.stops-mobile-mm-label { padding: 14px 0 6px; font-size: 12px; text-transform: uppercase; color: var(--stops-secondary); font-weight: 700; letter-spacing: 1.5px; }
.stops-mobile-mm-item a { padding-left: 16px !important; }
.stops-mobile-menu .action_button { display: block; text-align: center; margin: 20px auto; max-width: 320px; }
.stops-mobile-menu .quote_cta_link { display: block; text-align: center; margin: 16px auto; }
.stops-mobile-menu .quote_cta { margin: 0 auto; }

/* Header CTA collapse below 1340px (matches snippet 20) */
@media (max-width: 1340px) {
  .stops-header-actions .quote_cta_link { display: none; }
}
@media (max-width: 1080px) {
  .stops-mhb-menu { display: none; }
  .stops-burger { display: flex; }
  .stops-header-actions .action_button { display: none; }
  .stops .responsive-cta { display: inline-block; }
}
@media (max-width: 650px) {
  .stops .responsive-cta { display: none; }
}

/* CTA-only mobile mode — no burger, responsive CTA stays visible at all sizes */
.stops-header--cta-only .stops-header-actions { margin-left: auto; }
.stops-header--cta-only .stops-burger { display: none !important; }
@media (max-width: 1080px) {
  .stops-header--cta-only .responsive-cta { display: inline-block; }
}
@media (max-width: 650px) {
  .stops-header--cta-only .responsive-cta { display: inline-block; }
}

/* ═══════════════════════════════════════════
   GDPR BANNER
   ═══════════════════════════════════════════ */
.stops-gdpr {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  max-width: 1450px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 14px 24px;
  z-index: 99999999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
@media (max-width: 865px) { .stops-gdpr { border-radius: 20px; padding: 16px 20px; } }
.stops-gdpr-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
.stops-gdpr .mfn-gdpr-content,
.stops-gdpr .mfn-gdpr-content a { color: var(--stops-primary); margin: 0; font-size: 14px; }
.stops-gdpr .mfn-gdpr-content a { font-weight: bold; text-decoration: underline; }
.stops-gdpr .mfn-gdpr-content a:hover { color: var(--stops-secondary); }
.stops-gdpr-actions { display: flex; align-items: center; gap: 8px; }
.stops-gdpr .mfn-gdpr-readmore { padding: 5px 20px 8px; border-radius: 100px; color: var(--stops-primary); text-decoration: none; }
.stops-gdpr .mfn-gdpr-readmore:hover { font-weight: bold; background-color: rgba(0,0,0,0.03); }
.stops-gdpr .mfn-gdpr-button {
  background: linear-gradient(to right, var(--stops-cta-from) 50%, var(--stops-cta-to) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: white;
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 0;
  border-radius: 100px;
  transition: background-position 0.3s ease;
}
.stops-gdpr .mfn-gdpr-button:hover { background-position: left bottom; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.stops .hero-section {
  position: relative;
  padding: 180px 40px;
  color: #fff;
  overflow: hidden;
}
.stops .hero-section .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: 0;
}
.stops .hero-section .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); z-index: 1; }
.stops .hero-section .hero-gradient { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0) 100%); z-index: 2; }
.stops .hero-section .hero-inner {
  position: relative; z-index: 3;
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 40px; align-items: center;
}
.stops .hero-section .hero-col { flex: 1 1 48%; min-width: 320px; }
.stops .hero-left { width: min(100%, 500px); margin: 0 auto; padding: 30px; text-align: left; }
.stops .hero-left .eyebrow_label { color: rgba(255,255,255,0.85); }
.stops .hero-left .hero-title {
  max-width: 500px; line-height: 1; margin: 10px 0 30px;
  font-size: clamp(36px, 4.5vw, 56px); color: #fff;
}
.stops .hero-left .hero-title span { color: var(--stops-secondary) !important; }
.stops .hero-left .hero-description { font-weight: bold; max-width: 500px; line-height: 1.5em; margin-bottom: 20px; }
.stops .hero-left .hero-google-rating img { margin-top: 20px; max-height: 50px; }

/* Hero — 50/50 split layout */
.stops .hero-section.hero-split { padding: 0; background: none; min-height: 0; }
.stops .hero-split .hero-inner {
  max-width: none; gap: 0; flex-wrap: nowrap;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: max(700px, 80vh);
}
.stops .hero-split .hero-col { flex: none; min-width: 0; min-height: 100%; }
.stops .hero-split .hero-left {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 80px 50px; margin: 0;
}
.stops .hero-split .hero-split-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: 0;
}
.stops .hero-split .hero-split-overlay {
  position: absolute; inset: 0;
  z-index: 1;
}
.stops .hero-split .hero-left-content { position: relative; z-index: 2; max-width: 520px; }
.stops .hero-split .hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 60px 40px; color: #333;
}
.stops .hero-split .hero-right .form-card {
  box-shadow: none; background: transparent;
  width: min(100%, 500px);
}

.stops .hero-section .form-card {
  background: #fff; color: #333;
  width: min(100%, 550px); margin: 0 auto;
  padding: 50px 20px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-align: center;
}
.stops .form-card .form-heading { margin-bottom: 8px; color: var(--stops-heading); }
.stops .form-card .form-subheading { margin-bottom: 20px; color: var(--stops-body); }
.stops .form-card .form-disclaimer { font-size: 13px; margin-top: 15px; color: var(--stops-body); }
.stops .form-card .form-verification img { margin-top: 15px; display: inline-block; max-height: 50px; }

/* Built-in form */
.stops .stops-builtin-form { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.stops .stops-form-row { margin: 0; }
.stops .stops-form-row input[type="text"],
.stops .stops-form-row input[type="email"],
.stops .stops-form-row input[type="tel"],
.stops .stops-form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E5E5E5;
  background: #F5F5F5;
  border-radius: 0;
  font-size: 15px;
  font-family: inherit;
  color: var(--stops-heading);
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s;
}
.stops .stops-form-row input:focus,
.stops .stops-form-row textarea:focus { outline: none; border-color: var(--stops-secondary); background: #fff; }
.stops .stops-form-row textarea { resize: vertical; min-height: 100px; }
.stops .stops-form-row.stops-form-submit { margin-top: 4px; }
.stops .stops-form-row.stops-form-submit button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(to right, var(--stops-cta-from) 50%, var(--stops-cta-to) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: var(--stops-cta-text);
  border: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  cursor: pointer;
  transition: background-position 0.3s ease;
}
.stops .stops-form-row.stops-form-submit button:hover { background-position: left bottom; }
.stops .stops-honeypot { position: absolute !important; left: -9999px !important; height: 0 !important; overflow: hidden !important; }
.stops .stops-form-success { background: #E6F4EA; border-left: 4px solid #34A853; padding: 14px 16px; margin-bottom: 14px; color: #1E5631; font-size: 14px; }
.stops .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }

@media (max-width: 1080px) {
  .stops .hero-section { background: none !important; padding: 0; }
  .stops .hero-section .hero-inner { flex-direction: column; gap: 0; }
  .stops .hero-section .hero-col { flex: 1 1 100%; width: 100%; margin: 0; }
  .stops .hero-section .hero-bg,
  .stops .hero-section .hero-overlay,
  .stops .hero-section .hero-gradient { display: none; }
  .stops .hero-section .hero-left {
    position: relative; color: #fff;
    background-size: cover; background-position: center;
    padding: 200px 20px 100px; text-align: center;
  }
  .stops .hero-section .hero-left::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.2); z-index: 0; }
  .stops .hero-section .hero-left::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0) 100%); z-index: 0; }
  .stops .hero-section .hero-left > * { position: relative; z-index: 1; }
  /* Split layout — stack on mobile */
  .stops .hero-split .hero-inner { display: flex; grid-template-columns: none; }
  .stops .hero-split .hero-split-bg,
  .stops .hero-split .hero-split-overlay { display: none; }
  .stops .hero-split .hero-right { padding: 40px 20px; }
  .stops .hero-section .hero-left .hero-title,
  .stops .hero-section .hero-left .hero-description { margin: 20px auto; }
  .stops .hero-section .form-card { box-shadow: none; }
}

/* ═══════════════════════════════════════════
   SERVICE TILES (services_grid)
   ═══════════════════════════════════════════ */
.stops .vc_row.services-row { padding: 60px 0 40px; background: transparent; }
.stops .service-tiles-section { max-width: 1450px; width: calc(100% - 60px); margin: 0 auto; }
.stops .services-grid-header { text-align: center; margin-bottom: 50px; }
.stops .services-grid-header h2 { margin: 0 0 12px; }
.stops .services-grid-subtitle { font-size: 18px; color: var(--stops-body, #6e6e6e); max-width: 600px; margin: 0 auto; }
.stops .service-tiles-grid { display: flex; flex-wrap: wrap; gap: 20px; align-items: stretch; justify-content: center; }
.stops .service-tile {
  flex: 1 1 360px; max-width: 420px;
  display: flex; flex-direction: column;
  cursor: pointer; background: transparent;
  transition: background 0.25s ease;
  text-decoration: none;
  color: var(--stops-body);
  overflow: hidden; padding: 5px;
}
.stops .service-tile:hover { background: #f9f9f9; }
.stops .service-tiles-grid.tiles-count-2 .service-tile { flex: 1 1 calc(50% - 20px); max-width: none; }
.stops .service-tile .tile-media { position: relative; }
.stops .service-tile .tile-image { display: block; width: 100%; height: 400px; object-fit: cover; object-position: center; }
.stops .service-tile .tile-icon-badge {
  position: absolute; left: 10px; bottom: -28px;
  width: 85px; height: 85px;
  border-radius: 20px;
  background: var(--stops-secondary);
  display: grid; place-items: center;
}
.stops .service-tile .tile-icon-badge img { display: block; width: 56px; height: 56px; object-fit: contain; }
.stops .tile-content { padding: 50px 16px 30px; }
.stops .service-tile .tile-title {
  margin-top: 12px; margin-bottom: 8px;
  color: var(--stops-heading);
  font-size: clamp(20px, 2.2vw, 28px); line-height: 1.2;
}
.stops .service-tile .tile-desc { margin-bottom: 0; font-size: 15px; line-height: 1.5em; }
.stops .service-tile .tile-cta { margin-top: 14px; display: inline-block; }
.stops .service-tile .tile-cta-btn::after {
  content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  font-size: 16px; margin-left: 0.4em; display: inline-block;
}

@media (max-width: 1080px) {
  .stops .vc_row.services-row { background: #fafafa; padding: 50px 0; }
  .stops .service-tile { background: #ffffff; }
  .stops .service-tile:hover { background: #ffffff; }
  .stops .service-tile .tile-image { height: 300px; }
  .stops .service-tile .tile-icon-badge { width: 76px; height: 76px; bottom: -24px; }
  .stops .service-tile .tile-icon-badge img { width: 48px; height: 48px; }
  .stops .service-tiles-grid.tiles-count-2 .service-tile,
  .stops .service-tile { flex: 1 1 100%; max-width: 700px; margin: 0 auto; padding: 15px; }
}

/* ═══════════════════════════════════════════
   SERVICES BREAKDOWN
   ═══════════════════════════════════════════ */
.stops .services-breakdown-wrapper { width: 100%; }
.stops .services-breakdown-inner {
  display: flex; flex-wrap: wrap; align-items: stretch;
  min-height: 400px; gap: 0;
}
.stops .breakdown-image-column {
  flex: 1 1 50%; min-height: 400px;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.stops .breakdown-content-column {
  flex: 1 1 50%;
  background: var(--stops-section-bg);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 30px;
}
.stops .breakdown-content-inner { max-width: 650px; width: 100%; }
.stops .breakdown-header { margin: 0 0 30px; }
.stops .breakdown-header h2 { margin: 0 0 12px; font-size: clamp(28px, 3vw, 40px); }
.stops .breakdown-header p { margin: 0; }

.stops .service-group { display: flex; align-items: flex-start; gap: 15px; margin: 0 0 30px; }
.stops .service-group .service-icon {
  flex: 0 0 60px; width: 60px; height: 60px;
  border-radius: 999px;
  background-color: var(--stops-secondary);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.stops .service-group .service-icon img { max-width: 60%; max-height: 60%; object-fit: contain; display: block; }
.stops .service-group .service-text h3 { font-size: 20px; margin: 0 0 4px; }
.stops .service-group .service-text p { margin: 0; line-height: 1.7em; }

.stops .cta-button-container { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.stops .cta-button-container .cta-primary { flex: 0 0 auto; }
.stops .cta-button-container .cta-primary a { margin-top: 0; }

@media (max-width: 1300px) {
  .stops .services-breakdown-inner { flex-direction: column; }
  .stops .breakdown-content-column { order: 1; padding: 60px 24px; }
  .stops .breakdown-image-column { order: 2; min-height: 500px; }
  .stops .breakdown-content-inner { max-width: 100%; width: calc(100% - 60px); }
}
@media (max-width: 1300px) and (min-width: 1001px) {
  .stops .breakdown-content-inner { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; align-items: start; }
  .stops .breakdown-content-inner .breakdown-header,
  .stops .breakdown-content-inner .cta-button-container { grid-column: 1 / -1; justify-self: center; text-align: center; }
}
@media (max-width: 1000px) {
  .stops .breakdown-content-inner { display: block; max-width: 650px; text-align: center; margin: 0 auto; }
  .stops .service-group { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .stops .cta-button-container { flex-direction: column; align-items: center; gap: 16px; }
}

/* ═══════════════════════════════════════════
   CTA + BENEFITS
   ═══════════════════════════════════════════ */
.stops .cta-row { padding: 80px 0 40px; }
.stops .cta-section-wrapper { width: calc(100% - 60px); margin: 0 auto; padding: 0 0 50px; }
.stops .cta-section-innter { max-width: 800px; margin: 0 auto; text-align: center; }
.stops .cta-section-innter h3 { margin: 0 0 40px; font-size: clamp(24px, 2.6vw, 36px); }
.stops .cta-section-wrapper .cta-button-container { justify-content: center; }

.stops .benefits-grid-section { max-width: 1400px; width: calc(100% - 60px); margin: 0 auto; padding: 50px 0 0; }
.stops .cta-section-wrapper + .benefits-grid-section { padding-top: 0; margin-top: -20px; }
.stops .benefits-grid-section + .cta-section-wrapper { padding-bottom: 0; }
.stops .benefits-grid-section + .cta-section-wrapper + *:last-child { margin-bottom: 0; }
.stops .benefits-grid { display: flex; flex-wrap: wrap; gap: 20px; align-items: stretch; justify-content: center; }
.stops .benefit-card {
  flex: 1 1 320px; max-width: 400px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 10px 10px 0;
}
.stops .benefit-icon-box {
  width: 95px; height: 95px;
  border-radius: 20px;
  background: #f5f5f5;
  display: grid; place-items: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.stops .benefit-icon-box img { display: block; max-width: 66%; max-height: 66%; }
.stops .benefit-title { font-size: 25px; max-width: 330px; margin-bottom: 10px; }
.stops .benefit-desc { line-height: 1.5; max-width: 330px; margin: 0; }

@media (max-width: 1200px) { .stops .benefit-card { flex: 1 1 42%; } }
@media (max-width: 700px) {
  .stops .benefit-card { flex: 1 1 100%; }
  .stops .benefits-grid { gap: 30px; }
}
@media (max-width: 655px) {
  .stops .cta-row { padding: 50px 0; }
  .stops .cta-section-innter h3 { margin-bottom: 25px; }
  .stops .cta-button-container { flex-direction: column; align-items: center; gap: 18px; }
}

/* ═══════════════════════════════════════════
   COMMERCIAL CALLOUT
   ═══════════════════════════════════════════ */
.stops .commercial-services-callout-section { width: 100%; padding: 80px 0; }
.stops .commercial-services-callout-inner {
  max-width: 1450px; margin: 0 auto;
  background-color: #fafafa;
  display: flex; align-items: stretch; justify-content: center; gap: 0;
}
.stops .commercial-callout-col { flex: 0 0 50%; max-width: 50%; }
.stops .commercial-callout-image {
  position: relative;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  min-height: 400px;
}
.stops .commercial-callout-content { display: flex; align-items: center; }
.stops .commercial-callout-content-inner { width: 100%; padding: 60px; }
.stops .commercial-callout-title { margin: 0 0 20px; font-size: clamp(26px, 2.6vw, 36px); }
.stops .commercial-callout-desc p { margin: 0 0 12px; }

@media (max-width: 1200px) {
  .stops .commercial-services-callout-section { padding: 10px; background-color: #fff; }
  .stops .commercial-services-callout-inner { max-width: 700px; flex-wrap: wrap; }
  .stops .commercial-callout-col { flex: 0 0 100%; max-width: 100%; }
  .stops .commercial-callout-image { min-height: 400px; order: 1; }
  .stops .commercial-callout-content { order: 2; }
  .stops .commercial-callout-content-inner { padding: 40px 20px; text-align: center; }
  .stops .commercial-services-callout-section .cta-button-container { justify-content: center; }
}

/* ═══════════════════════════════════════════
   ABOUT + VIDEO
   ═══════════════════════════════════════════ */
.stops .about-section-wrapper { background-color: var(--stops-section-bg); padding: 0; }
.stops .about-section-inner {
  max-width: 1920px; margin: 0 auto;
  display: flex; flex-wrap: nowrap; align-items: stretch; gap: 0;
}
.stops .about-col { flex: 0 0 50%; max-width: 50%; min-width: 0; display: flex; flex-direction: column; }
.stops .about-left { padding: 100px 30px; }
.stops .about-left-inner { max-width: 550px; margin: 0 auto; text-align: left; }
.stops .about-left h2 { margin: 10px 0 30px; line-height: 1.2; font-size: clamp(28px, 3vw, 42px); }
.stops .about-left .about-desc { margin-bottom: 20px; }
.stops .about-left .about-signature { margin-top: 20px; font-weight: 700; color: var(--stops-primary); }

.stops .about-right { position: relative; padding: 0; }
.stops .about-right .about-video-wrap {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: stretch; justify-content: center;
  overflow: hidden;
}
.stops .about-right .about-video-wrap::before {
  content: "";
  position: absolute; inset: -20px;
  background-image: var(--stops-about-bg);
  background-size: cover; background-position: center;
  filter: blur(24px);
  transform: scale(1.08);
  z-index: 0;
}
.stops .about-right .video-embed { position: relative; width: 100%; height: 100%; z-index: 1; }
.stops .about-right .video-embed > div { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.stops .about-right .video-embed iframe { display: block; width: 100%; height: 100%; border: 0; }

.stops .about-right .video-cover {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: #000; cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1; visibility: visible;
}
.stops .about-right .video-cover img { width: 100%; height: 100%; object-fit: cover; }
.stops .about-right .video-cover:not(.is-visible) { opacity: 0; pointer-events: none; visibility: hidden; }

.stops .about-right .video-toggle {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.stops .about-right .video-toggle:hover { background: rgba(0,0,0,0.6); }
.stops .about-right .about-video-wrap.is-playing .video-toggle { opacity: 0; visibility: hidden; pointer-events: none; }
.stops .about-right .about-video-wrap.is-playing:hover .video-toggle { opacity: 1; visibility: visible; pointer-events: auto; }
.stops .about-right .video-toggle .play-icon {
  width: 0; height: 0;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}
.stops .about-right .video-toggle[data-state="playing"] .play-icon {
  width: 16px; height: 22px; border: 0;
  background: linear-gradient(to right, #fff 0 6px, transparent 6px 10px, #fff 10px 16px);
  margin-left: 0;
}

@media (max-width: 1180px) {
  .stops .about-section-inner { flex-wrap: wrap; }
  .stops .about-col { flex: 0 0 100%; max-width: 100%; }
  .stops .about-col.about-left { padding: 80px 30px; background: white; }
  .stops .about-left-inner { max-width: 750px; text-align: center; }
  .stops .about-right .about-video-wrap { aspect-ratio: 11/9; height: auto; display: block; }
  .stops .about-right .video-embed,
  .stops .about-right .video-embed > div { position: absolute; top: 0; left: 0; transform: none; width: 100%; height: 100%; }
  .stops .about-right .video-toggle { width: 64px; height: 64px; }
}
@media (max-width: 960px) { .stops .about-left { padding: 40px 24px; } }

/* ═══════════════════════════════════════════
   LATEST WORK
   ═══════════════════════════════════════════ */
.stops .latest-work-section-wrapper { max-width: 1400px; margin: 0 auto; padding: 60px 0; width: calc(100% - 20px); }
.stops .latest-work-header { text-align: center; margin-bottom: 30px; }
.stops .latest-work-header h2 { margin: 0 0 10px; }
.stops .latest-work-header .latest-work-subtitle { margin: 0; }
.stops .latest-work-header .latest-work-subtitle a { color: var(--stops-primary); font-weight: bold; text-decoration: none; }
.stops .latest-work-header .latest-work-subtitle a:hover { color: var(--stops-secondary); text-decoration: underline; }

.stops .latest-work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-items: center;
  align-items: start;
}
.stops .latest-work-gallery-grid .lw-item {
  display: block; position: relative;
  width: 100%; max-width: 450px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
}
.stops .latest-work-gallery-grid .lw-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1); transition: transform 0.35s ease;
}
.stops .latest-work-gallery-grid .lw-item:hover img { transform: scale(1.03); }

.lw-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px; z-index: 9999;
}
.lw-lightbox.is-open { display: flex; }
.lw-lightbox .lw-lightbox-image { max-width: 90vw; max-height: 90vh; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.lw-lightbox .lw-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  border: 0; border-radius: 100px;
  background: rgba(255,255,255,0.15);
  color: #fff; font-size: 30px; line-height: 1; cursor: pointer;
}
.lw-lightbox .lw-close:hover { background: rgba(255,255,255,0.25); }
.lw-no-scroll { overflow: hidden; }

@media (max-width: 950px) { .stops .latest-work-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .stops .latest-work-gallery-grid { grid-template-columns: 1fr; }
  .stops .latest-work-section-wrapper { padding: 40px 0; }
}

/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.stops .reviews-section { background-color: #f5f5f5; padding: 70px 0; }
.stops .reviews-section-inner { max-width: 1450px; margin: 0 auto; width: calc(100% - 60px); }
.stops .reviews-header { margin-bottom: 30px; text-align: center; }
.stops .reviews-header h2 { margin-bottom: 10px; }
.stops .reviews-header h5 { margin: 0; font-weight: 400; color: var(--stops-body); }

/* Embed widget tweaks (Elfsight Google Reviews selectors) */
.stops .EmbedRoot__Root-sc-690b399b-0 { max-width: 1450px !important; }
.stops .es-review-background-container { background-color: white !important; }

/* Manual reviews grid */
.stops .stops-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.stops .stops-review-card {
  background: white; padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.stops .stops-review-stars { color: #FFB400; font-size: 18px; margin-bottom: 12px; display: flex; gap: 2px; }
.stops .stops-review-text { font-size: 15px; line-height: 1.6; margin: 0 0 16px; }
.stops .stops-review-meta { display: flex; align-items: center; gap: 12px; }
.stops .stops-review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.stops .stops-review-name { display: block; color: var(--stops-heading); font-size: 15px; }
.stops .stops-review-source { font-size: 13px; color: #999; }

@media (max-width: 950px) { .stops .stops-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { .stops .stops-reviews-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   OUR PROCESS
   ═══════════════════════════════════════════ */
.stops .our-process-section { padding: 100px 0 120px; background: var(--stops-section-bg, #F5F5F5); }
@media (max-width: 900px) { .stops .our-process-section { padding: 60px 0; } }
.stops .our-process-inner { max-width: 1400px; margin: 0 auto; width: calc(100% - 60px); }
.stops .our-process-header { text-align: center; margin-bottom: 60px; }
.stops .our-process-header h2 { margin: 0 0 12px; }
.stops .our-process-subtitle { font-size: 18px; color: var(--stops-body, #6e6e6e); max-width: 600px; margin: 0 auto; }
.stops .our-process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; max-width: 1000px; margin: 0 auto; }
.stops .our-process-step { text-align: center; padding: 40px 24px; background: #fff; border-radius: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.stops .our-process-step:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.stops .our-process-step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--stops-primary, #154C61); color: #fff;
  font-size: 24px; font-weight: 700; margin-bottom: 20px;
  font-family: var(--stops-font-headings, 'Poppins', sans-serif);
}
.stops .our-process-step-title { font-size: 20px; margin: 0 0 10px; color: var(--stops-heading, #003A49); }
.stops .our-process-step-desc { font-size: 16px; line-height: 1.6; color: var(--stops-body, #6e6e6e); margin: 0; }

/* ═══════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════ */
.stops .wcu-section { padding: 100px 0 120px; background: #fff; position: relative; overflow: hidden; }
@media (max-width: 900px) { .stops .wcu-section { padding: 60px 0; } }
.stops .wcu-bg {
  position: absolute; inset: -10px; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.stops .wcu-overlay { position: absolute; inset: 0; z-index: 1; }
.stops .wcu-inner { max-width: 1400px; margin: 0 auto; width: calc(100% - 60px); position: relative; z-index: 2; }
.stops .wcu-has-bg .wcu-header h2,
.stops .wcu-has-bg .wcu-subtitle,
.stops .wcu-has-bg .eyebrow_label { color: #fff; }
.stops .wcu-header { text-align: center; margin-bottom: 60px; }
.stops .wcu-header h2 { margin: 0 0 12px; }
.stops .wcu-subtitle { font-size: 18px; color: var(--stops-body, #6e6e6e); max-width: 600px; margin: 0 auto; }

/* Grid layout — card style */
.stops .wcu-items.wcu-layout-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.stops .wcu-layout-grid .wcu-item {
  background: var(--stops-section-bg, #F5F5F5);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.stops .wcu-layout-grid .wcu-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.stops .wcu-layout-grid .wcu-item-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--stops-primary, #154C61); color: #fff;
  font-size: 26px; margin-bottom: 20px;
}
.stops .wcu-layout-grid .wcu-item-title { font-size: 20px; margin: 0 0 10px; color: var(--stops-heading, #003A49); }
.stops .wcu-layout-grid .wcu-item-desc { font-size: 16px; line-height: 1.6; color: var(--stops-body, #6e6e6e); margin: 0; }

/* List layout — horizontal icon + text rows */
.stops .wcu-items.wcu-layout-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.stops .wcu-layout-list .wcu-item {
  display: flex; align-items: flex-start; gap: 24px;
  background: var(--stops-section-bg, #F5F5F5);
  border-radius: 14px; padding: 28px 30px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.stops .wcu-layout-list .wcu-item:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.stops .wcu-layout-list .wcu-item-icon {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--stops-primary, #154C61); color: #fff;
  font-size: 22px;
}
.stops .wcu-layout-list .wcu-item-content { flex: 1; }
.stops .wcu-layout-list .wcu-item-title { font-size: 18px; margin: 0 0 6px; color: var(--stops-heading, #003A49); }
.stops .wcu-layout-list .wcu-item-desc { font-size: 15px; line-height: 1.6; color: var(--stops-body, #6e6e6e); margin: 0; }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.stops .faq-section-container { max-width: 1400px; margin: 0 auto; width: calc(100% - 60px); padding: 20px 0 60px; }
@media (max-width: 900px) { .stops .faq-section-container { padding: 40px 0; } }
.stops .faq-section-header { text-align: center; margin-bottom: 60px; }
.stops .simple-faq-accordion { max-width: 1000px; margin: 0 auto; }
.stops .simple-faq-accordion .faq-item { border-top: 1px solid #EFEAE2; }
.stops .simple-faq-accordion .faq-item:last-child { border-bottom: 1px solid #EFEAE2; }
.stops .simple-faq-accordion .faq-q { margin: 0; }
.stops .simple-faq-accordion .faq-toggle {
  width: 100%;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 1rem;
  padding: 22px 0;
  background: none; border: 0;
  text-align: left; cursor: pointer; font: inherit;
}
.stops .simple-faq-accordion .faq-question-text { line-height: 1.4; font-size: 20px; color: var(--stops-primary); transition: color 0.2s, font-size 0.2s; }
.stops .faq-item.is-open .faq-question-text { font-size: 18px; color: var(--stops-secondary); margin-bottom: -20px; }
.stops .simple-faq-accordion .faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.stops .simple-faq-accordion .faq-icon::before,
.stops .simple-faq-accordion .faq-icon::after {
  content: ""; position: absolute; inset: 50% auto auto 0;
  width: 18px; height: 3px; border-radius: 100px;
  background: var(--stops-secondary);
  transform: translateY(-50%);
}
.stops .simple-faq-accordion .faq-icon::after { transform: translateY(-50%) rotate(90deg); transition: opacity 0.2s ease; }
.stops .simple-faq-accordion .faq-item.is-open .faq-icon::after { opacity: 0; }
.stops .simple-faq-accordion .faq-a { height: 0; overflow: hidden; transition: height 220ms ease; }
.stops .simple-faq-accordion .faq-a-inner { padding: 0 0 20px; max-width: 90%; line-height: 1.5; }
.stops .simple-faq-accordion .faq-toggle:hover .faq-question-text { color: var(--stops-secondary); }

/* ═══════════════════════════════════════════
   FOOTER FORM (Footer Hero)
   ═══════════════════════════════════════════ */
.stops .footer-hero-section { position: relative; padding: 60px 40px; color: #fff; overflow: hidden; }
.stops .footer-hero-section .footer-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 0; }
.stops .footer-hero-section .footer-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.25); z-index: 1; }
.stops .footer-hero-section .footer-hero-gradient { position: absolute; inset: 0; background: linear-gradient(to left, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%); z-index: 2; }
.stops .footer-hero-section .footer-hero-inner {
  position: relative; z-index: 3;
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 40px; align-items: center;
}
.stops .footer-hero-section .footer-hero-col { flex: 1 1 48%; min-width: 320px; }
.stops .footer-hero-left .form-card {
  background: #fff; color: #333;
  width: min(100%, 550px); margin: 0 auto;
  padding: 50px 20px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  text-align: center; position: relative; z-index: 3;
}
.stops .footer-hero-right { width: min(100%, 560px); margin: 0 auto; padding: 30px 0; text-align: left; }
.stops .footer-hero-right .footer-hero-title {
  font-weight: var(--stops-font-headings-weight, 300); font-size: 50px;
  color: #fff; line-height: 1em;
  margin: 10px 0 30px; max-width: 500px;
}
.stops .footer-hero-right .footer-hero-title span { color: var(--stops-secondary) !important; }
.stops .footer-hero-right .footer-hero-body { font-weight: bold; line-height: 1.5em; max-width: 460px; }
.stops .footer-hero-right .footer-cta-row { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; margin-top: 26px; }
.stops .footer-hero-right .footer-google-rating img { height: 42px; width: auto; display: block; }

/* Footer Form — 50/50 split layout */
.stops .footer-hero-section.footer-hero-split { padding: 0; background: none; }
.stops .footer-hero-split .footer-hero-inner {
  max-width: none; gap: 0; flex-wrap: nowrap;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: max(600px, 70vh);
}
.stops .footer-hero-split .footer-hero-col { flex: none; min-width: 0; min-height: 100%; }
.stops .footer-hero-split .footer-hero-left {
  display: flex; align-items: center; justify-content: center;
  padding: 60px 40px; color: #333;
}
.stops .footer-hero-split .footer-hero-left .form-card {
  box-shadow: none; background: transparent;
  width: min(100%, 500px);
}
.stops .footer-hero-split .footer-hero-right {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  width: 100%; margin: 0; padding: 80px 50px;
}
.stops .footer-hero-split .footer-hero-split-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: 0;
}
.stops .footer-hero-split .footer-hero-split-overlay {
  position: absolute; inset: 0;
  z-index: 1;
}
.stops .footer-hero-split .footer-hero-right-content { position: relative; z-index: 2; max-width: 520px; }

@media (max-width: 1080px) {
  .stops .footer-hero-section { padding: 0; background-image: none !important; }
  .stops .footer-hero-section .footer-hero-inner { flex-direction: column; gap: 0; }
  .stops .footer-hero-section .footer-hero-col { flex: 0 0 100%; min-width: 100%; }
  .stops .footer-hero-section .footer-hero-overlay,
  .stops .footer-hero-section .footer-hero-gradient { display: none; }
  .stops .footer-hero-left { padding: 30px 0; }
  .stops .footer-hero-left .form-card { box-shadow: none; }
  .stops .footer-hero-right {
    position: relative;
    padding: 120px 20px;
    color: #fff; text-align: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    overflow: hidden;
  }
  .stops .footer-hero-right::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.25); z-index: 0; }
  .stops .footer-hero-right::after  { content: ""; position: absolute; inset: 0; background: linear-gradient(to left, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%); z-index: 0; }
  .stops .footer-hero-right > * { position: relative; z-index: 1; max-width: 560px; margin-left: auto; margin-right: auto; }
  .stops .footer-hero-right .footer-cta-row { justify-content: center; }
  /* Split — stack on mobile */
  .stops .footer-hero-split .footer-hero-inner { display: flex; grid-template-columns: none; }
  .stops .footer-hero-split .footer-hero-split-bg,
  .stops .footer-hero-split .footer-hero-split-overlay { display: none; }
  .stops .footer-hero-split .footer-hero-left { padding: 40px 20px; }
  .stops .footer-hero-split .footer-hero-right { padding: 40px 20px; }
}
@media (max-width: 520px) { .stops .footer-hero-right .footer-hero-title { font-size: 40px; } }
@media (max-width: 700px) {
  .stops .footer-hero-right .footer-cta-row { flex-direction: column; align-items: center; gap: 20px; }
}

/* ═══════════════════════════════════════════
   FOOTER BAR
   ═══════════════════════════════════════════ */
.stops .site-footer-bar {
  background-color: var(--stops-primary);
  color: #fff;
  font-size: 14px;
  padding: 20px 0;
}
.stops .site-footer-bar a { color: #fff; font-weight: bold; text-decoration: underline; }
.stops .footer-inner {
  width: 100%; padding: 0 30px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 30px;
  max-width: 1450px;
}
.stops .footer-left p { margin: 0; line-height: 1.4; }
.stops .footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; padding-bottom: 30px; text-align: right; }
.stops .footer-social-icons { display: flex; gap: 10px; }
.stops .footer-social-icons .social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  transition: background-color 0.3s ease;
  text-decoration: none;
  color: #fff;
}
.stops .footer-social-icons .social-icon:hover { background-color: var(--stops-secondary); }
.stops .footer-social-icons .social-icon i { font-size: 20px; }
.stops .footer-legal-links { display: flex; flex-wrap: wrap; gap: 4px 8px; }
.stops .footer-legal-links .legal-link {
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 100px;
  transition: background-color 0.3s ease;
}
.stops .footer-legal-links .legal-link:hover { background-color: rgba(255,255,255,0.05); }
.stops .footer-legal-links .sep { padding: 0 5px; font-size: 24px; }

@media (max-width: 1024px) {
  .stops .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .stops .footer-right { align-items: center; text-align: center; }
}
@media (max-width: 600px) {
  .stops .footer-legal-links { flex-direction: column; align-items: center; gap: 6px; }
  .stops .footer-legal-links .sep { display: none; }
}

/* ═══════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════ */
.stops .stops-trust-strip { padding: 50px 0; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.05); }
.stops .stops-trust-inner { max-width: 1450px; margin: 0 auto; width: calc(100% - 60px); text-align: center; }
.stops .stops-trust-title { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--stops-body); margin-bottom: 24px; font-weight: 600; }
.stops .stops-trust-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px 60px; }
.stops .stops-trust-logo img { max-height: 60px; width: auto; opacity: 0.7; transition: opacity 0.2s; filter: grayscale(0.3); }
.stops .stops-trust-logo:hover img { opacity: 1; filter: none; }
@media (max-width: 768px) {
  .stops .stops-trust-logos { gap: 24px 36px; }
  .stops .stops-trust-logo img { max-height: 48px; }
}

/* ═══════════════════════════════════════════
   PRICING PACKAGES
   ═══════════════════════════════════════════ */
.stops .stops-packages-section { padding: 80px 0; background: var(--stops-section-bg); }
.stops .stops-packages-inner { max-width: 1400px; margin: 0 auto; width: calc(100% - 60px); }
.stops .stops-packages-header { text-align: center; margin-bottom: 50px; }
.stops .stops-packages-header h2 { margin: 12px 0 16px; font-size: clamp(28px, 3vw, 42px); }
.stops .stops-packages-header p { max-width: 600px; margin: 0 auto; }

.stops .stops-packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.stops .stops-package-card {
  position: relative;
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stops .stops-package-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.stops .stops-package-card.is-featured {
  border: 2px solid var(--stops-secondary);
  transform: scale(1.04);
  box-shadow: 0 10px 40px rgba(var(--stops-secondary-rgb), 0.18);
}
.stops .stops-package-card.is-featured:hover { transform: scale(1.04) translateY(-4px); }
.stops .stops-pkg-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--stops-secondary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.stops .stops-pkg-title { font-size: 24px; margin: 0 0 8px; color: var(--stops-heading); }
.stops .stops-pkg-desc { font-size: 14px; color: var(--stops-body); margin: 0 0 20px; min-height: 42px; }
.stops .stops-pkg-price { font-size: 32px; font-weight: 800; color: var(--stops-primary); margin: 0 0 24px; font-family: var(--stops-font-headings); }
.stops .stops-pkg-features { list-style: none; padding: 0; margin: 0 0 32px; flex: 1 1 auto; }
.stops .stops-pkg-features li { padding: 8px 0; font-size: 14px; display: flex; align-items: flex-start; gap: 10px; }
.stops .stops-pkg-features li i { color: var(--stops-secondary); margin-top: 4px; flex-shrink: 0; }
.stops .stops-pkg-cta { margin-top: auto; }
.stops .stops-pkg-cta a { width: 100%; min-width: 0; margin-top: 0; }

@media (max-width: 1080px) {
  .stops .stops-packages-grid { grid-template-columns: 1fr; gap: 30px; max-width: 500px; margin: 0 auto; }
  .stops .stops-package-card.is-featured { transform: none; }
  .stops .stops-package-card.is-featured:hover { transform: translateY(-4px); }
}

/* ═══════════════════════════════════════════
   SERVICE AREA MAP
   ═══════════════════════════════════════════ */
.stops .stops-map-section { padding: 80px 0; }
.stops .stops-map-inner { max-width: 1400px; margin: 0 auto; width: calc(100% - 60px); }
.stops .stops-map-header { text-align: center; margin-bottom: 40px; }
.stops .stops-map-header h2 { margin: 12px 0 16px; font-size: clamp(28px, 3vw, 42px); }
.stops .stops-map-header p { max-width: 600px; margin: 0 auto; }
.stops .stops-map-frame { position: relative; padding-bottom: 50%; height: 0; overflow: hidden; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.stops .stops-map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.stops .stops-map-areas { margin-top: 24px; text-align: center; padding: 20px; background: var(--stops-section-bg); border-radius: 12px; }
.stops .stops-map-areas strong { color: var(--stops-heading); margin-right: 8px; }
@media (max-width: 768px) { .stops .stops-map-frame { padding-bottom: 75%; } }

/* ═══════════════════════════════════════════
   FLOATING MOBILE CTA BAR
   ═══════════════════════════════════════════ */
.stops .stops-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 10px;
  gap: 10px;
}
.stops .stops-mcta {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.stops .stops-mcta-call {
  background: var(--stops-section-bg);
  color: var(--stops-heading);
  border: 1px solid #e0e0e0;
}
.stops .stops-mcta-call i { font-size: 16px; color: var(--stops-secondary); }
.stops .stops-mcta-quote {
  background: linear-gradient(to right, var(--stops-cta-from) 50%, var(--stops-cta-to) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: var(--stops-cta-text);
  transition: background-position 0.3s ease;
}
.stops .stops-mcta-quote:hover { background-position: left bottom; }
@media (max-width: 768px) {
  .stops .stops-mobile-cta-bar { display: flex; }
  /* Reserve space at the bottom of the page so content isn't covered */
  body.stops-site { padding-bottom: 76px; }
}

/* ═══════════════════════════════════════════
   EDIT-IN-PLACE PENCILS (admin only)
   ═══════════════════════════════════════════ */
.stops .hero-section,
.stops .vc_row.services-row,
.stops .services-breakdown-wrapper,
.stops .cta-row,
.stops .commercial-services-callout-section,
.stops .about-section-wrapper,
.stops .latest-work-section-wrapper,
.stops .reviews-section,
.stops .faq-section-container,
.stops .footer-hero-section,
.stops .stops-trust-strip,
.stops .stops-packages-section,
.stops .wcu-section,
.stops .our-process-section,
.stops .stops-map-section { position: relative; }

.stops .stops-edit-pencil {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 50;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--stops-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s, background 0.15s;
  pointer-events: none;
}
.stops .hero-section:hover .stops-edit-pencil,
.stops .vc_row.services-row:hover .stops-edit-pencil,
.stops .services-breakdown-wrapper:hover .stops-edit-pencil,
.stops .cta-row:hover .stops-edit-pencil,
.stops .commercial-services-callout-section:hover .stops-edit-pencil,
.stops .about-section-wrapper:hover .stops-edit-pencil,
.stops .latest-work-section-wrapper:hover .stops-edit-pencil,
.stops .reviews-section:hover .stops-edit-pencil,
.stops .faq-section-container:hover .stops-edit-pencil,
.stops .footer-hero-section:hover .stops-edit-pencil,
.stops .stops-trust-strip:hover .stops-edit-pencil,
.stops .stops-packages-section:hover .stops-edit-pencil,
.stops .our-process-section:hover .stops-edit-pencil,
.stops .wcu-section:hover .stops-edit-pencil,
.stops .stops-map-section:hover .stops-edit-pencil { opacity: 1; transform: translateY(0); pointer-events: auto; }
.stops .stops-edit-pencil:hover { background: var(--stops-secondary); color: #fff; }

/* ═══════════════════════════════════════════
   THEME OVERRIDE GUARD
   When the .stops shortcode is on a page, hide common theme chrome
   so the trades site renders standalone.
   ═══════════════════════════════════════════ */
body.stops-site #Header,
body.stops-site #Footer,
body.stops-site #Subheader,
body.stops-site .header-stack,
body.stops-site .header-classic { display: none !important; }
body.stops-site #Wrapper,
body.stops-site #Content,
body.stops-site .section_wrapper,
body.stops-site .the_content_wrapper { padding: 0 !important; margin: 0 !important; max-width: none !important; overflow: visible !important; }
body.stops-site #Content > .content_wrapper,
body.stops-site .content_wrapper { padding: 0 !important; overflow: visible !important; }
body.stops-site .post_content,
body.stops-site article.post,
body.stops-site .entry-content { overflow: visible !important; padding: 0 !important; margin: 0 !important; }
