﻿:root {
  --ink: #07110e;
  --ink-soft: #17241f;
  --green: #087246;
  --green-2: #0d8b57;
  --lime: #78d85c;
  --mint: #effaf3;
  --mint-2: #dff4e8;
  --paper: #ffffff;
  --muted: #60716a;
  --line: #dce9e2;
  --shadow: 0 22px 70px rgba(8, 114, 70, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(120, 216, 92, 0.16), transparent 26%),
    linear-gradient(180deg, #fbfffd, #fff 38%, #f7fcf9);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1220px;
}

.topbar {
  padding: 8px 0;
  color: #fff;
  background: linear-gradient(90deg, var(--green), #0b5f3d);
  font-size: 0.92rem;
}

.topbar a {
  color: #fff;
  font-weight: 850;
}

.topbar i {
  color: #caffbb;
}

.navbar {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 233, 226, 0.92);
  backdrop-filter: blur(8px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.navbar-brand img {
  width: auto;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(8, 114, 70, 0.11));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--ink) !important;
  font-size: 0.94rem;
  font-weight: 900;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green) !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle i {
  font-size: 0.78rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 1100;
  display: grid;
  gap: 8px;
  min-width: 260px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  color: var(--ink);
  border-radius: 10px;
  font-weight: 900;
}

.nav-dropdown-menu a:hover {
  color: var(--green);
  background: var(--mint);
}

.nav-dropdown-menu i {
  color: var(--green);
}

.menu-toggle,
.menu-close {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(8, 114, 70, 0.26);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #065f3b, var(--green));
  box-shadow: 0 20px 42px rgba(8, 114, 70, 0.34);
}

.menu-toggle[aria-expanded="true"] {
  background: linear-gradient(135deg, #073d2a, var(--green));
}

.menu-toggle[aria-expanded="true"] span {
  background: #fff;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.btn {
  min-height: 48px;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 950;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-green,
.btn-yellow {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border: 2px solid var(--green);
  box-shadow: 0 16px 36px rgba(8, 114, 70, 0.24);
}

.btn-green:hover,
.btn-yellow:hover {
  color: #fff;
  background: linear-gradient(135deg, #065534, var(--green));
}

.btn-white,
.btn-light {
  color: var(--green);
  background: #fff;
  border: 2px solid #fff;
}

.btn-outline-green {
  color: var(--green);
  background: #fff;
  border: 2px solid var(--green);
}

.btn-outline-green:hover {
  color: #fff;
  background: var(--green);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  background: rgba(6, 40, 27, 0.64);
  backdrop-filter: blur(6px);
  transition: opacity 0.24s ease;
}

.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu-panel {
  width: 100%;
  min-height: 100%;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(120, 216, 92, 0.3), transparent 34%),
    linear-gradient(180deg, #ffffff, #effaf3);
  transform: translateY(-16px);
  transition: transform 0.28s ease;
}

.mobile-menu.open .mobile-menu-panel {
  transform: none;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-head img {
  height: 74px;
}

.menu-close {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  font-size: 1.15rem;
}

.mobile-menu-links {
  display: grid;
  gap: 10px;
  margin: 34px 0 24px;
}

.mobile-menu-links a {
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(8, 114, 70, 0.08);
  font-size: clamp(1.08rem, 4.8vw, 1.52rem);
  font-weight: 950;
}

.mobile-services {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(8, 114, 70, 0.08);
  overflow: hidden;
}

.mobile-services summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.08rem, 4.8vw, 1.52rem);
  font-weight: 950;
}

.mobile-services summary::-webkit-details-marker {
  display: none;
}

.mobile-services summary i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.mobile-services[open] summary i {
  transform: rotate(180deg);
}

.mobile-services div {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
}

.mobile-menu-links .mobile-services a {
  padding: 13px 14px;
  background: var(--mint);
  box-shadow: none;
  font-size: 1rem;
}

.mobile-menu-actions {
  display: grid;
  gap: 12px;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: linear-gradient(180deg, #f5fff8, #ffffff);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.18) 68%, rgba(255, 255, 255, 0.04) 100%),
    url("../img/hero-moving-illustration-optimized.jpg") 72% center / cover no-repeat;
  transform: scale(1.01);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(120, 216, 92, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(8, 114, 70, 0.09) 0 1px, transparent 1px 28px);
}

.hero-road {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 78px;
  background: linear-gradient(90deg, #0e7d4f, #8be36d);
  clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.92;
}

.road-line {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0 54px, transparent 54px 94px);
  opacity: 0.78;
}

.tiny-truck {
  position: absolute;
  left: 14%;
  bottom: 29px;
  width: 72px;
  height: 34px;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 8px 12px 8px 8px;
  transform: translateY(-2px);
}

.tiny-truck::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -4px;
  width: 24px;
  height: 25px;
  background: var(--ink);
  border-radius: 5px 8px 5px 0;
}

.tiny-truck::after,
.tiny-truck span::before {
  content: "";
  position: absolute;
  bottom: -13px;
  width: 15px;
  height: 15px;
  background: var(--ink);
  border: 4px solid #fff;
  border-radius: 50%;
}

.tiny-truck::after {
  left: 10px;
}

.tiny-truck span::before {
  right: -15px;
}

.road-box {
  position: absolute;
  bottom: 18px;
  width: 20px;
  height: 20px;
  background: #b68144;
  border: 2px solid #6c4a24;
  border-radius: 4px;
  display: none;
}

.box-a {
  right: 18%;
}

.box-b {
  right: 33%;
  animation-delay: -2.4s;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 62px 0 98px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 52px;
  align-items: center;
}

.kicker,
.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(3.3rem, 6.4vw, 6.4rem);
  line-height: 0.94;
  font-weight: 950;
}

.hero h1 span {
  color: var(--green);
}

.hero-text {
  max-width: 630px;
  color: #33443d;
  font-size: 1.16rem;
  line-height: 1.74;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(8, 114, 70, 0.08);
  font-weight: 900;
}

.trust-item i,
.check i,
.clean-list i {
  color: var(--green);
}

.quote-floating {
  position: relative;
  padding: 26px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 233, 226, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transform: translateY(0);
}

.quote-floating::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(120, 216, 92, 0.48), rgba(255, 255, 255, 0), rgba(8, 114, 70, 0.22));
}

.quote-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.quote-floating h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.65rem;
  font-weight: 950;
}

.quote-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(8, 114, 70, 0.26);
  animation: none;
}

.quote-floating .form-control,
.quote-floating .form-select,
.modal .form-control,
.modal .form-select {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.quote-floating .form-control:focus,
.quote-floating .form-select:focus,
.modal .form-control:focus,
.modal .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(8, 114, 70, 0.14);
}

.stats-wrap {
  position: relative;
  z-index: 8;
  margin-top: -34px;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 118px;
  padding: 22px;
  background: #fff;
}

.stat i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--lime));
  border-radius: var(--radius);
  font-size: 1.4rem;
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.48rem, 2.1vw, 2rem);
  line-height: 1;
  font-weight: 950;
}

.stat small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.25;
  font-weight: 850;
}

.section {
  padding: 86px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-title {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 950;
}

.lead-muted {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.76;
}

.services-section {
  background: linear-gradient(180deg, #fff, #f5fff8);
}

.service-card,
.process-card,
.license-card,
.review-card,
.area-tile,
.address-panel,
.route-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 38px rgba(8, 114, 70, 0.06);
}

.service-card {
  position: relative;
  height: 100%;
  padding: 18px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-icon {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(8, 114, 70, 0.22);
}

.service-visual {
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-visual > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius);
  transform: none;
  will-change: auto;
}

.service-brand {
  display: none;
}

.service-brand img {
  display: none;
}

.service-card h3,
.route-card h3,
.review-card h3 {
  font-size: 1.34rem;
  font-weight: 950;
}

.service-card p,
.review-card p,
.route-card p {
  color: var(--muted);
}

.review-card p {
  font-size: 1.03rem;
  line-height: 1.7;
}

.learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 950;
}

.move-scheme-section {
  background: linear-gradient(180deg, #fff, #f5fff8);
}

.move-scheme-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.scheme-panel,
.scheme-map,
.scheme-benefit {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 38px rgba(8, 114, 70, 0.06);
}

.scheme-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.scheme-number {
  width: max-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--lime));
  border-radius: 999px;
  font-weight: 950;
}

.scheme-panel h3 {
  margin-bottom: 14px;
  font-size: 1.8rem;
  font-weight: 950;
}

.scheme-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.scheme-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(139, 227, 109, 0.22), transparent 26%),
    linear-gradient(145deg, #f7fff9, #dff4e8);
}

.scheme-line {
  position: absolute;
  top: 50%;
  right: 7%;
  left: 7%;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--green) 0 48px, #fff 48px 70px);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(8, 114, 70, 0.16);
  animation: schemeLineMove 2.2s linear infinite;
}

.scheme-truck {
  position: absolute;
  top: calc(50% - 35px);
  left: 5%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 76px;
  height: 58px;
  color: #fff;
  background: var(--green);
  border: 4px solid #fff;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(5, 18, 14, 0.18);
  font-size: 2rem;
  animation: schemeTruckRoute 10s ease-in-out infinite;
}

.scheme-step {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(8, 114, 70, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(8, 114, 70, 0.1);
}

.scheme-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 950;
}

.scheme-step strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.scheme-step small {
  color: var(--muted);
  font-weight: 850;
}

.scheme-step-1 { top: 36px; left: 6%; }
.scheme-step-2 { bottom: 38px; left: 24%; }
.scheme-step-3 { top: 44px; left: 43%; }
.scheme-step-4 { bottom: 42px; right: 20%; }
.scheme-step-5 { top: 42px; right: 6%; }

.scheme-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.scheme-benefit {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.scheme-benefit i {
  color: var(--green);
  font-size: 1.7rem;
}

.scheme-benefit strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.scheme-benefit span {
  color: var(--muted);
  line-height: 1.55;
}

.planner-section {
  background: #fff;
}

.moving-map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(120, 216, 92, 0.22), transparent 25%),
    linear-gradient(145deg, #f7fff9, #dff4e8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-line {
  position: absolute;
  inset: 50% 7% auto;
  height: 10px;
  border-radius: 99px;
  background: repeating-linear-gradient(90deg, var(--green) 0 48px, #fff 48px 68px);
}

.map-truck {
  position: absolute;
  top: calc(50% - 34px);
  left: 5%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 56px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  font-size: 2rem;
  animation: routeTruck 10s ease-in-out infinite;
}

.map-step {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 126px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(8, 114, 70, 0.1);
}

.map-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 950;
}

.map-step strong {
  font-weight: 950;
}

.map-step small {
  color: var(--muted);
  font-weight: 800;
}

.step-1 { top: 42px; left: 8%; }
.step-2 { bottom: 40px; left: 31%; }
.step-3 { top: 54px; right: 28%; }
.step-4 { bottom: 46px; right: 8%; }

.crew-section {
  background: linear-gradient(180deg, var(--mint), #fff);
}

.about-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-photo-card > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 16, 15, 0.72));
}

.about-photo-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  color: #fff;
  background: rgba(7, 16, 15, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.about-photo-badge img {
  width: 72px;
  height: 72px;
  min-height: 0;
  padding: 5px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}

.about-photo-badge strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 950;
}

.about-photo-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.cartoon-scene {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cartoon-room {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(139, 227, 109, 0.22), transparent 24%),
    linear-gradient(180deg, #f5fff8 0 58%, #d9b37b 58% 100%);
  border-radius: var(--radius);
}

.about-brand {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(8, 114, 70, 0.18);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(5, 18, 14, 0.16);
  animation: brandFloat 4.6s ease-in-out infinite;
}

.about-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.moving-route {
  position: absolute;
  right: 0;
  bottom: 42px;
  left: 0;
  height: 9px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0 46px, transparent 46px 76px);
  opacity: 0.75;
  animation: routeDash 2.8s linear infinite;
}

.scene-truck {
  position: absolute;
  left: -180px;
  bottom: 38px;
  z-index: 4;
  width: 170px;
  height: 82px;
  animation: sceneTruckDrive 8s ease-in-out infinite;
}

.truck-box {
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 106px;
  height: 56px;
  background: #fff;
  border: 5px solid var(--ink);
  border-radius: 8px;
  box-shadow: inset 0 -10px 0 rgba(8, 114, 70, 0.08);
}

.truck-box::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  width: 56px;
  height: 8px;
  background: var(--lime);
  border-radius: 99px;
}

.truck-cab {
  position: absolute;
  right: 8px;
  bottom: 22px;
  width: 66px;
  height: 48px;
  background: var(--green);
  border: 5px solid var(--ink);
  border-left: 0;
  border-radius: 8px 18px 8px 4px;
}

.truck-cab::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 12px;
  width: 24px;
  height: 18px;
  background: #eafaf0;
  border-radius: 4px;
}

.wheel {
  position: absolute;
  bottom: 8px;
  width: 28px;
  height: 28px;
  background: var(--ink);
  border: 5px solid #fff;
  border-radius: 50%;
  animation: wheelSpin 0.7s linear infinite;
}

.wheel-a { left: 28px; }
.wheel-b { right: 22px; }

.wall-art {
  position: absolute;
  top: 48px;
  left: 50px;
  width: 96px;
  height: 70px;
  border: 8px solid #fff;
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 8px 20px rgba(8, 114, 70, 0.12);
}

.sofa {
  position: absolute;
  right: 42px;
  bottom: 82px;
  width: 210px;
  height: 88px;
  background: var(--green);
  border-radius: 34px 34px 12px 12px;
  box-shadow: inset 0 -16px 0 rgba(0, 0, 0, 0.08);
}

.box-stack {
  position: absolute;
  right: 68px;
  bottom: 168px;
  display: grid;
  grid-template-columns: repeat(2, 48px);
  gap: 6px;
  animation: boxWiggle 4s ease-in-out infinite;
}

.box-stack span {
  width: 48px;
  height: 42px;
  background: #c99455;
  border: 3px solid #8d6230;
  border-radius: 6px;
}

.box-stack span:nth-child(3) {
  transform: translateX(27px);
}

.flying-box {
  position: absolute;
  z-index: 3;
  width: 38px;
  height: 34px;
  background: #d59b58;
  border: 3px solid #8d6230;
  border-radius: 6px;
  box-shadow: inset 0 8px 0 rgba(255, 255, 255, 0.18);
}

.box-one {
  top: 146px;
  left: 188px;
  animation: floatBoxOne 5.2s ease-in-out infinite;
}

.box-two {
  top: 126px;
  right: 178px;
  width: 32px;
  height: 30px;
  animation: floatBoxTwo 5.7s ease-in-out infinite;
}

.mover {
  position: absolute;
  bottom: 74px;
  width: 86px;
  height: 166px;
}

.mover-left { left: 90px; animation: moverWalk 4s ease-in-out infinite; }
.mover-right { left: 198px; animation: moverWalk 4s ease-in-out infinite reverse; }

.head {
  position: absolute;
  top: 0;
  left: 25px;
  width: 42px;
  height: 42px;
  background: #f2c28f;
  border-radius: 50%;
}

.body {
  position: absolute;
  top: 42px;
  left: 18px;
  width: 68px;
  height: 78px;
  background: var(--green);
  border-radius: 18px 18px 12px 12px;
}

.arm {
  position: absolute;
  top: 64px;
  right: -6px;
  width: 52px;
  height: 14px;
  background: #f2c28f;
  border-radius: 99px;
  transform: rotate(-18deg);
}

.leg {
  position: absolute;
  bottom: 0;
  left: 28px;
  width: 20px;
  height: 54px;
  background: var(--ink);
  border-radius: 99px;
  box-shadow: 28px 0 0 var(--ink);
}

.dolly {
  position: absolute;
  left: 202px;
  bottom: 92px;
  display: grid;
  place-items: center;
  width: 74px;
  height: 86px;
  color: #fff;
  background: #b98142;
  border: 5px solid var(--ink);
  border-radius: 10px;
  font-size: 2rem;
  transform: rotate(-6deg);
  animation: dollyMove 4s ease-in-out infinite;
}

.move-flow-scene {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(139, 227, 109, 0.26), transparent 24%),
    linear-gradient(180deg, #f5fff8 0 66%, #d7f0df 66% 100%);
  border-radius: var(--radius);
}

.move-flow-scene::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 44px;
  left: -8%;
  height: 78px;
  background: linear-gradient(90deg, #0e7d4f, #8be36d);
  clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.92;
}

.flow-step {
  position: absolute;
  top: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(8, 114, 70, 0.16);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(5, 18, 14, 0.1);
  font-weight: 950;
  animation: flowStepPulse 6s ease-in-out infinite;
}

.flow-step i {
  color: var(--green);
}

.step-pack { left: 28px; }
.step-load { left: calc(50% - 54px); animation-delay: 1.9s; }
.step-move { right: 28px; animation-delay: 3.8s; }

.moving-house {
  position: absolute;
  left: 42px;
  bottom: 112px;
  z-index: 2;
  width: 150px;
  height: 142px;
}

.house-roof {
  position: absolute;
  top: 0;
  left: 13px;
  width: 122px;
  height: 92px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 54%, 100% 100%, 0 100%, 0 54%);
  box-shadow: inset 0 -13px 0 rgba(0, 0, 0, 0.12);
}

.house-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 88px;
  background: #fff;
  border: 5px solid var(--ink);
  border-radius: 10px;
  box-shadow: 0 18px 36px rgba(5, 18, 14, 0.12);
}

.house-window {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 36px;
  height: 28px;
  background: #dff4e8;
  border: 4px solid var(--green);
  border-radius: 5px;
}

.house-door {
  position: absolute;
  right: 24px;
  bottom: 0;
  width: 34px;
  height: 58px;
  background: #d59b58;
  border-radius: 8px 8px 0 0;
}

.loading-belt {
  position: absolute;
  left: 152px;
  right: 238px;
  bottom: 172px;
  z-index: 1;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--green) 0 26px, #fff 26px 42px);
  border-radius: 999px;
  box-shadow: 0 12px 18px rgba(8, 114, 70, 0.14);
  animation: loadingBelt 1.2s linear infinite;
}

.moving-box {
  position: absolute;
  left: 145px;
  bottom: 184px;
  z-index: 3;
  width: 42px;
  height: 38px;
  background: #d59b58;
  border: 3px solid #8d6230;
  border-radius: 7px;
  box-shadow: inset 0 9px 0 rgba(255, 255, 255, 0.18);
  animation: boxToTruck 5.7s linear infinite;
}

.moving-box span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: rgba(141, 98, 48, 0.5);
}

.moving-box::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 8px;
  left: 8px;
  height: 3px;
  background: rgba(141, 98, 48, 0.42);
}

.load-box-b {
  animation-delay: 1.9s;
}

.load-box-c {
  animation-delay: 3.8s;
}

.branded-truck {
  position: absolute;
  right: 34px;
  bottom: 110px;
  z-index: 3;
  width: 270px;
  height: 142px;
  animation: truckIdle 2.6s ease-in-out infinite;
}

.truck-container {
  position: absolute;
  left: 0;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 176px;
  height: 104px;
  background: #fff;
  border: 6px solid var(--ink);
  border-radius: 12px;
  box-shadow: inset 0 -15px 0 rgba(8, 114, 70, 0.08);
}

.truck-container img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 50%;
}

.truck-cargo-line {
  position: absolute;
  right: 14px;
  bottom: 16px;
  left: 14px;
  height: 6px;
  background: var(--lime);
  border-radius: 999px;
}

.truck-front {
  position: absolute;
  right: 8px;
  bottom: 28px;
  width: 94px;
  height: 82px;
  background: var(--green);
  border: 6px solid var(--ink);
  border-left: 0;
  border-radius: 8px 28px 12px 4px;
}

.truck-window {
  position: absolute;
  top: 14px;
  right: 17px;
  width: 38px;
  height: 26px;
  background: #eafaf0;
  border-radius: 5px;
}

.truck-wheel {
  position: absolute;
  bottom: 10px;
  width: 38px;
  height: 38px;
  background: var(--ink);
  border: 7px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--ink);
  animation: wheelSpin 0.9s linear infinite;
}

.wheel-left { left: 42px; }
.wheel-right { right: 35px; }

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-top: 24px;
}

.check {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 0.94rem;
  font-weight: 850;
}

.work-gallery {
  background: linear-gradient(180deg, #fff, #f2fbf5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 245px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(8, 114, 70, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.gallery-img:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow);
}

.gallery-img.wide {
  grid-column: span 2;
}

.gallery-img.tall {
  grid-row: span 2;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(4, 22, 15, 0.88);
}

.photo-lightbox.open {
  display: flex;
}

.photo-lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.photo-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-size: 1.2rem;
}

.photo-lightbox-close:hover,
.photo-lightbox-close:focus-visible {
  background: var(--green);
}
.address-section {
  background: #fff;
}

.address-panel {
  padding: 28px;
  background: linear-gradient(180deg, #fff, var(--mint));
}

.address-panel .form-control {
  min-height: 54px;
}

.input-wrap {
  position: relative;
}

.suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  display: none;
  max-height: 260px;
  overflow: auto;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.suggestion {
  padding: 12px 14px;
  border-bottom: 1px solid #edf5f0;
  cursor: pointer;
}

.suggestion:hover {
  background: var(--mint);
}

.suggestion strong {
  color: var(--green);
}

.suggestion small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

.zip-chip {
  display: inline-flex;
  align-items: center;
  margin: 4px;
  padding: 9px 12px;
  color: var(--green);
  background: #fff;
  border: 1px solid #cce8d9;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 850;
}

.zip-chip:hover {
  color: #fff;
  background: var(--green);
}

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

.area-tile {
  padding: 17px 12px;
  text-align: center;
  font-weight: 950;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.area-tile:hover {
  color: #fff;
  background: var(--green);
  transform: translateY(-4px);
}

.route-card {
  height: 100%;
  padding: 24px;
  background: var(--mint);
}

.route-card i {
  color: var(--green);
  font-size: 2rem;
}

.proof-section {
  background: linear-gradient(180deg, #f7fcf9, #fff);
}

.review-card {
  height: 100%;
  padding: 26px;
}

.review-photo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.review-photo-strip img {
  width: 100%;
  height: 158px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(8, 114, 70, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.review-photo-strip img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.avatar {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 950;
}

.stars {
  display: flex;
  gap: 4px;
  margin: -4px 0 14px;
  color: #f6b51e;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  overflow: hidden;
  margin-bottom: 12px;
}

.accordion-button {
  font-size: 1.05rem;
  font-weight: 900;
}

.accordion-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.accordion-button:not(.collapsed) {
  color: var(--green);
  background: var(--mint);
  box-shadow: none;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 36px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 114, 70, 0.94), rgba(11, 95, 61, 0.78)),
    url("../img/truck-side.jpg") center / cover no-repeat;
  border-radius: var(--radius);
}

#contact {
  overflow: hidden;
  background: transparent;
}

#contact .container {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

#contact .cta-band {
  width: 100%;
  margin-left: 0;
  padding: 42px max(28px, calc((100vw - 1220px) / 2 + 12px));
  border-radius: 0;
}

.cta-band::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-16deg);
  animation: shine 8s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.footer {
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(180deg, #0a2e20, #06120f);
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover {
  color: #fff;
}

.footer-logo {
  height: 104px;
  width: auto;
  filter: brightness(1.08);
}

.modal-content {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
}

#quoteModal .modal-dialog {
  max-width: min(1040px, calc(100vw - 24px));
}

#quoteModal .modal-content {
  position: relative;
  max-height: calc(100vh - 28px);
}

.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(8, 114, 70, 0.16);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(5, 18, 14, 0.16);
  opacity: 1;
}

.quote-modal-close:hover {
  background-color: #fff;
  transform: translateY(-1px);
}

.quote-modal-left {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px;
  color: #fff;
  text-align: center;
  background: linear-gradient(145deg, var(--green), #075033);
}

.quote-modal-left .eyebrow {
  color: #caffbb;
  font-size: 0.86rem;
}

.quote-modal-left h2 {
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.65rem, 2.2vw, 2.05rem);
  line-height: 1.08;
}

.quote-modal-left p {
  max-width: 330px;
  margin-right: auto;
  margin-left: auto;
  font-size: 0.96rem;
  line-height: 1.62;
}

.quote-modal-left img {
  display: block;
  width: min(122px, 48%);
  height: auto;
  margin-top: 12px;
  margin-right: auto;
  margin-left: auto;
  padding: 9px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(5, 18, 14, 0.24);
}

#quoteModal .p-lg-5 {
  overflow-y: auto;
  max-height: calc(100vh - 60px);
}

.page-hero {
  padding: 100px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74)),
    url("../img/truck-side.jpg") center / cover no-repeat;
}

.service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 98px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 46%, rgba(255, 255, 255, 0.34) 100%),
    var(--page-hero-image) center right / cover no-repeat;
}

.service-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 22%, rgba(120, 216, 92, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(8, 114, 70, 0.08) 0 1px, transparent 1px 30px);
}

.service-detail-hero .container {
  position: relative;
  z-index: 1;
}

.service-local-hero {
  --page-hero-image: url("../img/service-page-local-optimized.jpg");
}

.service-long-hero {
  --page-hero-image: url("../img/service-page-long-distance-optimized.jpg");
}

.service-packing-hero {
  --page-hero-image: url("../img/service-page-packing-optimized.jpg");
}

.service-commercial-hero {
  --page-hero-image: url("../img/service-page-commercial-optimized.jpg");
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 950;
}

.service-page-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-page-media img {
  display: block;
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: var(--radius);
  transform: none;
  will-change: auto;
}

.service-location-section {
  background: linear-gradient(180deg, #fff, #f5fff8);
}

.service-location-card {
  height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(8, 114, 70, 0.06);
}

.service-location-card h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 950;
}

.location-list,
.state-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.location-list li,
.state-list li {
  padding: 8px 10px;
  color: var(--ink-soft);
  background: var(--mint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.15;
}

body:has(.service-detail-hero) .reveal,
body:has(.service-detail-hero) .slide-left,
body:has(.service-detail-hero) .slide-right {
  opacity: 1;
  transform: none;
  transition: none;
}

body:has(.service-detail-hero) .floating-phone {
  border-radius: var(--radius);
}

.clean-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.clean-list li {
  display: flex;
  gap: 9px;
  margin-bottom: 11px;
}

.floating-phone {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(8, 114, 70, 0.34);
  font-size: 1.35rem;
  animation: none;
}

.floating-phone:hover {
  color: #fff;
}

.sticky-mobile {
  display: none;
}

.reveal,
.slide-left,
.slide-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal {
  transform: translateY(28px);
}

.slide-left {
  transform: translateX(-36px);
}

.slide-right {
  transform: translateX(36px);
}

.reveal.show,
.slide-left.show,
.slide-right.show {
  opacity: 1;
  transform: none;
}

@keyframes photoDrift {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.07) translateX(-14px); }
}

@keyframes serviceTruckDrift {
  0%, 100% { transform: scale(1.04) translateX(-6px); }
  45% { transform: scale(1.06) translateX(8px); }
  68% { transform: scale(1.055) translateX(4px) translateY(-2px); }
}

@keyframes serviceWorkersMove {
  0%, 100% { transform: scale(1.03) translate(0, 0); }
  38% { transform: scale(1.045) translate(-5px, 2px); }
  68% { transform: scale(1.04) translate(4px, -2px); }
}

@keyframes serviceRoadLines {
  from { transform: translateX(0); }
  to { transform: translateX(-72px); }
}

@keyframes serviceWorkPulse {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(0.72) rotate(-18deg); }
  35% { opacity: 0.42; transform: translate(9px, -8px) scale(1) rotate(18deg); }
  62% { opacity: 0; transform: translate(18px, -14px) scale(1.18) rotate(36deg); }
}

@keyframes serviceLiftCue {
  0%, 100% { opacity: 0; transform: translateX(-10px) scaleX(0.7); }
  40% { opacity: 0.32; transform: translateX(6px) scaleX(1); }
  70% { opacity: 0; transform: translateX(18px) scaleX(0.82); }
}

@keyframes serviceBrandFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes roadMove {
  from { transform: translateX(0); }
  to { transform: translateX(-94px); }
}

@keyframes truckBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes boxRoll {
  from { transform: translateX(120vw) rotate(0); }
  to { transform: translateX(-120vw) rotate(-720deg); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseSoft {
  0% { box-shadow: 0 0 0 0 rgba(8, 114, 70, 0.3); }
  70% { box-shadow: 0 0 0 16px rgba(8, 114, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(8, 114, 70, 0); }
}

@keyframes routeTruck {
  0%, 8% { left: 5%; }
  30%, 38% { left: 31%; }
  58%, 66% { left: 58%; }
  88%, 100% { left: 83%; }
}

@keyframes schemeLineMove {
  from { background-position-x: 0; }
  to { background-position-x: -70px; }
}

@keyframes schemeTruckRoute {
  0%, 9% { left: 5%; transform: translateY(0); }
  25%, 33% { left: 24%; transform: translateY(5px); }
  48%, 56% { left: 46%; transform: translateY(-5px); }
  70%, 78% { left: 67%; transform: translateY(5px); }
  92%, 100% { left: 85%; transform: translateY(-4px); }
}

@keyframes boxWiggle {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

@keyframes moverWalk {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

@keyframes dollyMove {
  0%, 100% { transform: translateX(0) rotate(-6deg); }
  50% { transform: translateX(10px) rotate(-2deg); }
}

@keyframes brandFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes routeDash {
  from { background-position-x: 0; }
  to { background-position-x: -76px; }
}

@keyframes sceneTruckDrive {
  0% { transform: translateX(0) translateY(0); opacity: 0; }
  8% { opacity: 1; }
  48% { transform: translateX(255px) translateY(-5px); opacity: 1; }
  72% { transform: translateX(430px) translateY(0); opacity: 1; }
  92%, 100% { transform: translateX(680px) translateY(-4px); opacity: 0; }
}

@keyframes wheelSpin {
  to { transform: rotate(360deg); }
}

@keyframes floatBoxOne {
  0%, 100% { transform: translate(0, 0) rotate(-6deg); }
  50% { transform: translate(18px, -18px) rotate(7deg); }
}

@keyframes floatBoxTwo {
  0%, 100% { transform: translate(0, 0) rotate(8deg); }
  50% { transform: translate(-16px, 15px) rotate(-8deg); }
}

@keyframes flowStepPulse {
  0%, 18%, 100% { transform: translateY(0) scale(1); }
  9% { transform: translateY(-4px) scale(1.04); }
}

@keyframes loadingBelt {
  from { background-position-x: 0; }
  to { background-position-x: -42px; }
}

@keyframes boxToTruck {
  0% { transform: translate(0, 0) scale(0.98); opacity: 0; }
  8% { opacity: 1; }
  58% { transform: translate(250px, 0) scale(1); opacity: 1; }
  76% { transform: translate(330px, 34px) scale(0.88); opacity: 1; }
  86%, 100% { transform: translate(365px, 43px) scale(0.72); opacity: 0; }
}

@keyframes truckIdle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes shine {
  0%, 42% { left: -40%; }
  65%, 100% { left: 115%; }
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .topbar .hide-mobile {
    display: none;
  }

  .navbar-brand img {
    height: 66px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 250, 243, 0.9)),
      url("../img/hero-moving-illustration-optimized.jpg") center / cover no-repeat;
  }

  .hero-content {
    padding: 40px 18px 86px;
  }

  .hero-grid,
  .section-head,
  .move-scheme-grid {
    grid-template-columns: 1fr;
  }

  .quote-floating {
    animation: none;
  }

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

  .section {
    padding: 64px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .review-photo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-photo-strip img {
    height: 150px;
  }

  .scheme-benefits {
    grid-template-columns: 1fr;
  }

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

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

  .move-flow-scene {
    min-height: 390px;
  }

  .moving-house {
    left: 28px;
    bottom: 104px;
    transform: scale(0.9);
    transform-origin: left bottom;
  }

  .branded-truck {
    right: 16px;
    bottom: 100px;
    width: 236px;
  }

  .truck-container {
    width: 152px;
  }

  .truck-container img {
    width: 62px;
    height: 62px;
  }

  .truck-front {
    width: 82px;
  }

  .loading-belt {
    left: 130px;
    right: 190px;
    bottom: 160px;
  }

  .moving-box {
    left: 120px;
    bottom: 172px;
  }

  .moving-map {
    min-height: 500px;
  }

  .map-line {
    inset: 50px auto 50px 50%;
    width: 10px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--green) 0 48px, #fff 48px 68px);
  }

  .map-truck {
    left: calc(50% - 36px);
    top: 24px;
    animation: routeTruckMobile 8s ease-in-out infinite;
  }

  .step-1 { top: 34px; left: 8%; }
  .step-2 { top: 160px; right: 8%; left: auto; bottom: auto; }
  .step-3 { top: 286px; left: 8%; right: auto; }
  .step-4 { bottom: 34px; right: 8%; }
}

@media (max-width: 576px) {
  body {
    padding-bottom: 78px;
  }

  .topbar {
    font-size: 0.86rem;
  }

  .navbar-brand img {
    height: 58px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-content {
    padding: 34px 20px 76px;
  }

  .hero-road {
    height: 56px;
  }

  .btn {
    width: 100%;
    margin-bottom: 8px;
  }

  .trust-item {
    width: 100%;
  }

  .scheme-panel {
    padding: 22px;
  }

  .scheme-map {
    min-height: 520px;
  }

  .scheme-line {
    top: 46px;
    bottom: 46px;
    left: calc(50% - 6px);
    width: 12px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--green) 0 48px, #fff 48px 70px);
    animation: schemeLineMoveMobile 2.2s linear infinite;
  }

  .scheme-truck {
    top: 24px;
    left: calc(50% - 38px);
    animation: schemeTruckRouteMobile 9s ease-in-out infinite;
  }

  .scheme-step {
    min-width: 132px;
  }

  .scheme-step-1 { top: 28px; left: 8%; right: auto; bottom: auto; }
  .scheme-step-2 { top: 134px; right: 8%; left: auto; bottom: auto; }
  .scheme-step-3 { top: 246px; left: 8%; right: auto; bottom: auto; }
  .scheme-step-4 { top: 358px; right: 8%; left: auto; bottom: auto; }
  .scheme-step-5 { top: auto; right: auto; bottom: 22px; left: 8%; }

  .quote-floating {
    padding: 18px;
  }

  .quote-modal-left {
    padding: 22px;
    text-align: center;
  }

  .quote-modal-left img {
    width: 112px;
    margin-top: 12px;
  }

  #quoteModal .p-lg-5 {
    max-height: none;
    padding: 22px !important;
    padding-top: 56px !important;
  }

  .stats-card,
  .gallery-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .review-photo-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .review-photo-strip img {
    flex: 0 0 78%;
    height: 190px;
    scroll-snap-align: start;
  }

  .gallery-img.wide,
  .gallery-img.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .stat {
    min-height: 88px;
    padding: 16px;
  }

  .cartoon-room {
    min-height: 360px;
  }

  .move-flow-scene {
    min-height: 380px;
  }

  .flow-step {
    top: 16px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .step-pack { left: 12px; }
  .step-load { left: calc(50% - 45px); }
  .step-move { right: 12px; }

  .moving-house {
    left: 14px;
    bottom: 116px;
    transform: scale(0.72);
  }

  .branded-truck {
    right: -12px;
    bottom: 112px;
    width: 196px;
  }

  .truck-container {
    width: 136px;
    height: 92px;
  }

  .truck-front {
    width: 72px;
    height: 74px;
  }

  .truck-wheel {
    width: 32px;
    height: 32px;
  }

  .loading-belt {
    left: 94px;
    right: 150px;
    bottom: 164px;
  }

  .moving-box {
    left: 86px;
    bottom: 176px;
    width: 34px;
    height: 31px;
  }

  .mover-left { left: 42px; }
  .mover-right { left: 136px; }
  .dolly { left: 140px; }

  .floating-phone {
    display: none;
  }

  .sticky-mobile {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 950;
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.15);
  }

  .sticky-mobile .btn {
    margin: 0;
    padding: 12px 10px;
  }
}

@keyframes routeTruckMobile {
  0%, 8% { top: 24px; }
  30%, 38% { top: 150px; }
  58%, 66% { top: 276px; }
  88%, 100% { top: 402px; }
}

@keyframes schemeLineMoveMobile {
  from { background-position-y: 0; }
  to { background-position-y: -70px; }
}

@keyframes schemeTruckRouteMobile {
  0%, 9% { top: 24px; }
  25%, 33% { top: 130px; }
  48%, 56% { top: 242px; }
  70%, 78% { top: 354px; }
  92%, 100% { top: 466px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .slide-left,
  .slide-right {
    opacity: 1;
    transform: none;
  }
}
/* Mobile quote modal compact override */
@media (max-width: 576px) {
  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .menu-toggle span {
    width: 19px;
    height: 2px;
    margin: 2.5px auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  #quoteModal .modal-dialog {
    max-width: calc(100vw - 12px);
    min-height: calc(100dvh - 12px);
    margin: 6px auto;
    align-items: flex-start;
  }

  #quoteModal .modal-content {
    max-height: calc(100dvh - 12px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .quote-modal-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
  }

  .quote-modal-left {
    min-height: auto;
    display: block;
    padding: 12px 54px 10px 16px;
    text-align: left;
  }

  .quote-modal-left .eyebrow {
    margin-bottom: 4px;
    font-size: 0.74rem;
  }

  .quote-modal-left h2 {
    max-width: none;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.12;
  }

  .quote-modal-left p {
    max-width: none;
    margin: 4px 0 0;
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .quote-modal-left .clean-list,
  .quote-modal-left img {
    display: none;
  }

  #quoteModal .p-lg-5 {
    max-height: none;
    overflow: visible;
    padding: 16px !important;
    padding-top: 44px !important;
  }
}
/* Mobile viewport stability and hero visibility */
@media (max-width: 991px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  .topbar,
  .navbar,
  .mobile-menu,
  .page-hero,
  .hero,
  .section,
  .footer,
  .sticky-mobile {
    max-width: 100vw;
  }

  .hero {
    background: #f4fbf6;
  }

  .hero-bg {
    opacity: 1;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(244, 251, 246, 0.98) 100%),
      url("../img/hero-moving-illustration-optimized.jpg") 66% top / cover no-repeat;
    transform: none;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(8, 114, 70, 0.05), rgba(255, 255, 255, 0));
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-grid,
  .quote-floating,
  .cta-band,
  .service-location-card,
  .review-card,
  .address-panel {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(244, 251, 246, 0.98) 100%),
      url("../img/hero-moving-illustration-optimized.jpg") 61% top / auto 58% no-repeat;
  }

  .hero-content {
    padding-right: 16px;
    padding-left: 16px;
  }
}
/* Prevent Bootstrap modal horizontal jump */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.modal-open,
body.modal-open .navbar,
body.modal-open .topbar,
body.modal-open .sticky-mobile,
.modal {
  padding-right: 0 !important;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

.hero-bg::after {
  background:
    radial-gradient(circle at 16% 22%, rgba(120, 216, 92, 0.1), transparent 26%),
    linear-gradient(135deg, rgba(8, 114, 70, 0.035) 0 1px, transparent 1px 28px);
}
/* Refined mobile menu button */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(120, 216, 92, 0.65);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .menu-toggle {
    position: relative;
    width: 46px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    background: #fff;
    border: 1px solid rgba(8, 114, 70, 0.28);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(8, 114, 70, 0.12);
  }

  .menu-toggle:hover,
  .menu-toggle[aria-expanded="true"] {
    background: var(--mint);
    border-color: rgba(8, 114, 70, 0.55);
    box-shadow: 0 10px 24px rgba(8, 114, 70, 0.16);
    transform: none;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 2.5px auto;
    background: var(--green);
    border-radius: 999px;
    box-shadow: none;
    transform-origin: center;
  }

  .menu-toggle span:nth-child(2) {
    width: 14px;
    margin-left: auto;
    margin-right: 0;
  }

  .menu-toggle[aria-expanded="true"] span {
    background: var(--green);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }
}
/* Clean mobile navbar toggle */
@media (max-width: 991px) {
  .menu-toggle {
    width: 46px;
    min-height: 40px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid rgba(8, 114, 70, 0.32);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(8, 114, 70, 0.1);
  }

  .menu-toggle span,
  .menu-toggle span:nth-child(2) {
    width: 20px;
    height: 2.25px;
    margin: 3px auto;
    background: var(--green);
    border-radius: 999px;
    box-shadow: none;
  }

  .menu-toggle:hover,
  .menu-toggle[aria-expanded="true"] {
    background: #fff;
    border-color: rgba(8, 114, 70, 0.52);
    transform: none;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.25px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.25px) rotate(-45deg);
  }
}


/* Compact mobile quote modal header with logo column */
@media (max-width: 576px) {
  #quoteModal .quote-modal-left {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 84px;
    grid-template-areas:
      "eyebrow logo"
      "title logo"
      "copy logo"
      "list logo";
    align-items: center;
    column-gap: 10px;
    row-gap: 2px;
    padding: 10px 50px 8px 14px;
    text-align: left;
  }

  #quoteModal .quote-modal-left .eyebrow {
    grid-area: eyebrow;
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.1;
  }

  #quoteModal .quote-modal-left h2 {
    grid-area: title;
    margin: 1px 0 0;
    font-size: 1.08rem;
    line-height: 1.08;
  }

  #quoteModal .quote-modal-left p {
    grid-area: copy;
    margin: 2px 0 0;
    font-size: 0.78rem;
    line-height: 1.18;
  }

  #quoteModal .quote-modal-left .clean-list {
    grid-area: list;
    display: grid;
    gap: 1px;
    margin: 4px 0 0;
    padding: 0;
  }

  #quoteModal .quote-modal-left .clean-list li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.74rem;
    line-height: 1.18;
  }

  #quoteModal .quote-modal-left .clean-list i {
    font-size: 0.78rem;
  }

  #quoteModal .quote-modal-left img.quote-logo {
    grid-area: logo;
    display: block;
    width: 78px;
    max-width: 78px;
    margin: 0;
    padding: 5px;
    align-self: center;
    justify-self: end;
    border-radius: 8px;
  }
}