﻿/* ==========================================================================
   FLASH WASTE REMOVAL — CENTRAL DESIGN SYSTEM
   Theme: Organic Biophilic + Trust Authority (Eco Premium)
   ========================================================================== */

/* CSS Variables */
:root {
  /* ── Backgrounds ───────────────────────────── */
  --bg:            #ffffff;
  --surface:       #f7faf5;   /* very subtle green-tinted off-white          */
  --card-bg:       #ffffff;
  --card-border:   #e2e8de;   /* soft sage — replaces all glow borders       */

  /* ── Brand Green — primary actions ────────── */
  --primary:       #4d7a1e;   /* 5.1:1 on white — WCAG AA ✓                 */
  --primary-hover: #3d6015;
  --primary-light: #eef4e8;   /* ghost button / chip backgrounds             */

  /* ── WhatsApp — dedicated channel colour ───── */
  --wa:            #25d366;
  --wa-hover:      #1da851;
  --wa-text:       #ffffff;

  /* ── Accent — Lime (decorative only) ────────  */
  --accent:        #c8d42a;   /* NEVER as text on light bg — use accent-text */
  --accent-text:   #2a3a00;   /* text/icon ON lime backgrounds (14:1 ✓)      */

  /* ── Text Hierarchy ─────────────────────────── */
  --text:          #111827;   /* headings — near-black                       */
  --text-body:     #374151;   /* body copy                                   */
  --text-muted:    #6b7280;   /* secondary / labels                          */

  /* ── Borders & Dividers ─────────────────────── */
  --border:        #e2e8de;
  --border-strong: #c5d4bc;
  --white:         #ffffff;

  /* ── Semantic ──────────────────────────────── */
  --success:       #16a34a;
  --warning:       #d97706;
  --error:         #dc2626;

  /* ── Layout ────────────────────────────────── */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --transition: all 0.22s ease;

  /* ── Typography ─────────────────────────────── */
  --font-header: 'Lexend', -apple-system, sans-serif;
  --font-body:   'Source Sans 3', -apple-system, sans-serif;

  /* ── Elevation ──────────────────────────────── */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
}

/* Reset & Base Elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 0; /* prevents flex/grid children from overflowing their container */
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  overflow-x: clip;
  overscroll-behavior-x: none;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: clip;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern" 1, "liga" 1;
  min-width: 0;
  width: 100%;
  max-width: 100vw;
}
p, li, td, th { overflow-wrap: break-word; }
/* spans inside headings must NOT break mid-word — headings handle their own wrapping */
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span { overflow-wrap: normal; }

/* ── Global touch optimisation ──────────────────────────────────────────── */
button,
input,
select,
textarea,
a,
[role="button"],
.btn,
.calc-tab,
.service-card,
.glass-card,
.faq-question,
.hamburger,
label {
  touch-action: manipulation; /* Eliminate 300 ms tap delay on mobile */
}

/* Active-state tap feedback (visual response within 100 ms per HIG) */
.btn:active {
  transform: scale(0.97);
  opacity: 0.92;
}
.glass-card:active {
  transform: scale(0.99);
}
.mobile-nav a:active {
  background: rgba(77, 122, 30, 0.1);
}
.hamburger:active {
  opacity: 0.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: "kern" 1;
  overflow-wrap: normal;     /* break at word boundaries only, never mid-word */
  word-break: normal;
  max-width: 100%;
}

h1 { letter-spacing: -0.02em; }
h2 { letter-spacing: -0.015em; }

/* Base Layout Helpers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.section-pad {
  padding: 56px 0;
  position: relative;
}

.section-tinted {
  background: var(--surface);
}

/* ── Trust Credentials Strip ──────────────────────────────────────────────── */
.credentials-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.cred-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-right: 1px solid var(--border);
}
.cred-item:last-child { border-right: none; }

.cred-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cred-icon--star { color: #f59e0b; }

.cred-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cred-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.cred-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.cred-link {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: transparent;
}
.cred-link:hover { text-decoration-color: var(--primary); }

.text-center {
  text-align: center;
}

/* Section Header Styles */
.section-header {
  margin-bottom: 24px;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Clean Cards */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ── Button System ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-header);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

/* WhatsApp — THE primary channel for this business */
.btn-wa {
  background: var(--wa);
  color: var(--wa-text);
  border-color: var(--wa);
  box-shadow: 0 2px 8px rgba(37,211,102,0.20);
}
.btn-wa:hover {
  background: var(--wa-hover);
  border-color: var(--wa-hover);
  box-shadow: 0 4px 16px rgba(37,211,102,0.30);
  transform: translateY(-1px);
  color: var(--wa-text);
}

/* Primary — brand green, booking / form submits */
.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 4px 12px rgba(77,122,30,0.22);
  transform: translateY(-1px);
  color: #ffffff;
}

/* Secondary — outlined brand green */
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* Outline — neutral secondary actions */
.btn-outline {
  background: transparent;
  color: var(--text-body);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* Ghost — low-priority, pricing cards etc. */
.btn-ghost {
  background: transparent;
  color: var(--text-body);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* Accent — kept for .btn-accent backward compatibility; now styled as secondary */
.btn-accent {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
.btn-accent:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 4px 12px rgba(77,122,30,0.22);
  transform: translateY(-1px);
  color: #ffffff;
}

/* Focus ring */
:focus-visible {
  outline: 2.5px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Sizes */
.btn-sm  { padding: 9px 16px;  font-size: 13px; gap: 6px; }
.btn-lg  { padding: 16px 32px; font-size: 16px; }


/* STICKY HEADER */
header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  overflow: hidden; /* prevent scaled logo or any element from creating horizontal overflow */
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-img {
  height: 88px; /* Increased by 25% */
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.03);
}

.logo-text .title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-body);
  font-family: var(--font-header);
}

.logo-text .sub {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
}

nav a:hover, nav a.active {
  color: var(--primary);
  background: rgba(77, 122, 30, 0.04);
}

nav .nav-cta {
  background: var(--wa);
  color: #ffffff !important;
  border: 1.5px solid var(--wa);
  margin-left: 12px;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(37,211,102,0.18);
}

nav .nav-cta:hover {
  background: var(--wa-hover);
  border-color: var(--wa-hover);
  box-shadow: 0 4px 14px rgba(37,211,102,0.28);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-body);
  cursor: pointer;
  padding: 10px;        /* 24px icon + 10px*2 = 44px — meets minimum touch target */
  min-width: 44px;
  min-height: 44px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.hamburger svg {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hamburger.active svg {
  transform: scale(1.1) rotate(90deg);
  color: var(--primary);
}

/* MOBILE NAVIGATION DRAWER - REVAMPED TO SLIDE-DOWN OVERLAY */
.mobile-nav {
  position: fixed;
  top: 104px; /* Default desktop header height, overridden on mobile */
  left: 0;
  width: 100%;
  height: calc(100dvh - 104px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 998;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-15px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  gap: 8px;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  border-bottom: none;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
}

.mobile-nav a::after {
  content: "→";
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--transition);
  color: var(--primary);
}

.mobile-nav a:hover::after, .mobile-nav a.active::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--primary);
  background: rgba(77, 122, 30, 0.05);
  padding-left: 20px;
}

/* Staggered load animation when mobile nav is open */
.mobile-nav.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active a:nth-child(1) { transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s, padding 0.3s ease, background 0.3s ease; }
.mobile-nav.active a:nth-child(2) { transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, padding 0.3s ease, background 0.3s ease; }
.mobile-nav.active a:nth-child(3) { transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s, padding 0.3s ease, background 0.3s ease; }
.mobile-nav.active a:nth-child(4) { transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s, padding 0.3s ease, background 0.3s ease; }
.mobile-nav.active a:nth-child(5) { transition: opacity 0.3s ease 0.25s, transform 0.3s ease 0.25s, padding 0.3s ease, background 0.3s ease; }
.mobile-nav.active a:nth-child(6) { transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s, padding 0.3s ease, background 0.3s ease; }
.mobile-nav.active .mob-cta { transition: opacity 0.3s ease 0.35s, transform 0.3s ease 0.35s, background 0.3s ease, box-shadow 0.3s ease; }

.mobile-nav .mob-cta {
  background: var(--wa);
  color: #ffffff;
  justify-content: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.mobile-nav .mob-cta:hover {
  background: var(--wa-hover);
  box-shadow: 0 4px 12px rgba(37,211,102,0.28);
}

/* Premium trust footer inside mobile drawer */
.mobile-nav-info {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.4s, transform 0.3s ease 0.4s;
}

.mobile-nav.active .mobile-nav-info {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.mobile-nav-info-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 48px 0 56px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden; /* contain truck glow ring & animation overflow */
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  padding-top: 8px; /* Reduced vertical offset */
  position: relative;
  z-index: 15; /* Ensure buttons and text render above truck glow rings and 3D layers */
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px; /* Reduced from 20px */
}

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

.hero-content h1 span.highlight-yellow {
  color: var(--accent-text); /* Darker yellow for high-end text contrast */
}

.hero-content p.subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  margin-bottom: 24px; /* Reduced from 36px */
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid var(--border-strong);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}

/* WhatsApp note — subtle hint below hero buttons */
.hero-wa-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}
.hero-wa-note svg { color: var(--wa); flex-shrink: 0; }

/* Hero inline postcode checker */
.hero-postcode-inline {
  width: 100%;
  margin-top: 16px;
}

/* POSTCODE CHECKER WIDGET */
.postcode-card {
  width: 100%;
}

.postcode-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.postcode-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px; /* Reduced from 20px */
}

.postcode-input-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 100px; /* Fully rounded capsule container */
  padding: 3px;         /* Inner padding to frame the button cleanly */
  height: 62px;         /* Total height including inner padding and borders */
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 8px;
}

.postcode-input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(77, 122, 30, 0.12), var(--shadow-md);
}

.postcode-input-group input {
  flex: 1;
  background: transparent;
  border: none !important;
  padding: 0 22px;
  height: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-body);
  outline: none;
  box-shadow: none !important;
}

.postcode-input-group .btn {
  height: 100% !important;
  border: none !important;
  border-radius: 100px !important; /* Rounded pill button on the right */
  padding: 0 32px !important;
  background: var(--primary) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: none !important;
  transition: var(--transition) !important;
}

.postcode-input-group .btn:hover {
  background: var(--primary-hover) !important;
}

.postcode-result {
  min-height: 48px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  padding: 10px 14px;
  display: none;
}

.postcode-result.success {
  background: rgba(77, 122, 30, 0.06);
  border: 1px solid rgba(77, 122, 30, 0.15);
  color: var(--primary-hover);
  display: flex;
}

.postcode-result.error {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #dc2626;
  display: flex;
}

/* STATS BAR */
.stats-bar {
  background: #1a2e1a;
  padding: 20px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-card:last-child { border-right: none; }

.stat-number {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  font-family: var(--font-header);
  letter-spacing: -0.02em;
}

.stat-number.green  { color: #ffffff; }
.stat-number.yellow { color: #ffffff; }

.stat-label {
  font-size: 12px;
  color: #a8c4a8;
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* INTERACTIVE ESTIMATOR & CALCULATOR */
.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.calc-selector-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-tab-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.calc-tab {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.calc-tab:hover {
  border-color: rgba(77, 122, 30, 0.3);
}

.calc-tab.active {
  border-color: var(--primary);
  background: rgba(77, 122, 30, 0.04);
  box-shadow: 0 0 10px rgba(77, 122, 30, 0.06);
}

.calc-tab .tab-icon {
  font-size: 26px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.calc-tab .tab-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-body);
}

.calc-tab .tab-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.calc-slider-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}

.calc-slider-header span.highlight {
  color: var(--accent-text);
}

.slider-container {
  position: relative;
  margin: 20px 0;
}

input[type=range].custom-slider {
  -webkit-appearance: none;
  width: 100%;
  background: rgba(15, 23, 42, 0.06);
  height: 6px;
  border-radius: 4px;
  outline: none;
}

input[type=range].custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(77,122,30,0.15);
  transition: var(--transition);
}

input[type=range].custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ESTIMATOR RESULTS CARD */
.calc-result-card {
  border-color: var(--border);
  background: #ffffff;
}

.calc-result-card.glow-border {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(77, 122, 30, 0.04);
}

.calc-result-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.calc-result-header h3 {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.calc-result-price {
  font-size: 52px;
  font-weight: 900;
  color: var(--text-body);
  line-height: 1.1;
  font-family: var(--font-header);
}

.calc-result-price span.accent {
  color: var(--primary);
}

.calc-result-specs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.spec-row .key {
  color: var(--text-muted);
  font-weight: 500;
}

.spec-row .val {
  color: var(--text-body);
  font-weight: 700;
}

.eco-benefit-card {
  background: rgba(77, 122, 30, 0.04);
  border: 1px solid rgba(77, 122, 30, 0.15);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-hover);
  margin-bottom: 24px;
}

.eco-benefit-card .icon {
  font-size: 24px;
}

/* HOVER SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  padding: 20px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(77, 122, 30, 0.04);
}

.service-card-icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.service-card-icon svg {
  width: 28px !important;
  height: 28px !important;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.service-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card-link:hover {
  color: var(--primary-hover);
}

/* PRICING TABLE COMPONENT */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

.price-card {
  text-align: center;
  position: relative;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border-color: var(--primary);
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
  background: #ffffff;
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0f172a;
  padding: 4px 14px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-label {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.price-limits {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 20px;
}

.price-amount {
  font-size: 56px;
  font-weight: 900;
  color: var(--text-body);
  line-height: 1;
  font-family: var(--font-header);
  margin-bottom: 4px;
}

.price-amount.highlight {
  color: var(--primary);
}

.price-amount.green-highlight {
  color: var(--primary);
}

.price-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  min-height: 48px;
}

.price-features {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.price-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.price-feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* INTERACTIVE 4-STEP BOOKING WIDGET */
.booking-section {
  position: relative;
  background: radial-gradient(circle at 10% 80%, rgba(77, 122, 30, 0.02) 0%, rgba(0,0,0,0) 50%);
}

.booking-wizard {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.wizard-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.wizard-progress-bar {
  position: absolute;
  top: 18px;
  left: 0;
  height: 2px;
  background: var(--primary);
  z-index: 1;
  width: 0%;
  transition: var(--transition);
}

.wizard-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 2.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.wizard-step.active .step-circle {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 10px rgba(77, 122, 30, 0.1);
}

.wizard-step.completed .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.step-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wizard-step.active .step-label {
  color: var(--text-body);
}

.booking-wizard-content {
  min-height: 320px;
}

.booking-wizard-step {
  display: none;
}

.booking-wizard-step.active {
  display: block;
  animation: fade-in 0.4s ease;
}

/* WIZARD FORMS & GRIDS */
.load-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.load-select-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.load-select-card:hover {
  border-color: rgba(77, 122, 30, 0.3);
}

.load-select-card.active {
  border-color: var(--primary);
  background: rgba(77, 122, 30, 0.04);
}

.load-select-card .card-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
}

.load-select-card.active .card-icon {
  color: var(--primary);
}

.load-select-card .card-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 4px;
}

.load-select-card .card-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

/* DATEPICKER AND TIME GRID */
.booking-form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 16px; /* Set to 16px to prevent iOS Safari auto-focus zooming */
  color: var(--text-body);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(77, 122, 30, 0.08);
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.time-slot {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.time-slot:hover {
  border-color: rgba(77, 122, 30, 0.3);
}

.time-slot.active {
  border-color: var(--primary);
  background: rgba(77, 122, 30, 0.04);
  color: var(--primary);
}

.wizard-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* SUCCESS SCREEN */
.success-screen {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  background: rgba(77, 122, 30, 0.06);
  border: 1.5px solid rgba(77, 122, 30, 0.15);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  box-shadow: 0 0 20px rgba(77, 122, 30, 0.08);
  animation: scale-up 0.4s ease;
}

.success-screen h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.success-screen p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
}

.success-ref-card {
  background: #f2f7ee;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  max-width: 440px;
  margin: 0 auto 32px;
  text-align: left;
}

.success-ref-card h4 {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.success-ref-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.success-ref-row:last-child {
  margin-bottom: 0;
}

.success-ref-row span.label {
  color: var(--text-muted);
}

.success-ref-row span.val {
  color: var(--text-body);
  font-weight: 700;
}

.success-ref-row span.val.highlight {
  color: var(--primary);
}

/* GOOGLE BUSINESS PROFILE REVIEWS SHOWCASE */
.reviews-section {
  background: radial-gradient(circle at 10% 80%, rgba(77, 122, 30, 0.03) 0%, rgba(0,0,0,0) 50%);
  background-color: #f2f7ee;
  position: relative;
  overflow: hidden;
}

.google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  max-width: 900px;
  margin: 0 auto 48px;
  box-shadow: var(--shadow-sm);
  gap: 24px;
}

.google-brand-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-logo-svg {
  width: 32px;
  height: 32px;
}

.google-brand-text h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-body);
  margin-bottom: 2px;
}

.google-brand-text p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.google-brand-text p span.verified-badge {
  color: var(--primary);
  font-size: 11px;
  background: rgba(77, 122, 30, 0.08);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
}

.google-rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0 32px;
}

.google-rating-score .score-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--text-body);
  line-height: 1;
  margin-bottom: 4px;
}

.google-rating-score .score-stars {
  font-size: 13px;
  color: #fbbf24;
  letter-spacing: 1px;
}

.google-rating-score .score-count {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

.google-reviews-btns {
  display: flex;
  gap: 12px;
}

.google-reviews-btns .btn {
  font-size: 12.5px;
  padding: 10px 16px;
  font-weight: 700;
}

.slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.reviews-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 20px;
}

.google-review-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.google-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4285f4 0%, #ea4335 25%, #fbbc05 50%, #34a853 75%, #4285f4 100%);
}

.google-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #4d7a1e 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.review-user-avatar.avatar-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.review-user-avatar.avatar-yellow {
  background: linear-gradient(135deg, #c8d42a 0%, #a8b222 100%);
}

.review-user-avatar.avatar-purple {
  background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
}

.review-user-avatar.avatar-red {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

.review-author-name h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-body);
  margin: 0 0 2px 0;
  text-align: left;
}

.review-author-name p {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-author-name p span.guide-badge {
  color: #a8b222;
}

.google-icon-stamp {
  width: 18px;
  height: 18px;
}

.review-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-card-stars {
  font-size: 14px;
  color: #fbbf24;
  letter-spacing: 1px;
}

.review-card-date {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.google-review-card .review-text {
  font-size: 14.5px;
  color: var(--text-body);
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-arrow {
  background: #ffffff;
  border: 1px solid var(--border);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-body);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.15);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  background: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* FAQ ACCORDION COMPONENT */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: rgba(77, 122, 30, 0.2);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-body);
}

.faq-chevron {
  font-size: 18px;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  padding-top: 16px;
}

/* FOOTER COMPONENT - Clean Premium Dark Slate Footer */
/* ── Nearby Boroughs Cross-Link Bar ──────────────────────────────────── */
.nearby-boroughs-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.nearby-boroughs-bar .container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nearby-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  margin: 0;
}

.nearby-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nearby-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 4px 12px;
  text-decoration: none;
  transition: var(--transition);
}

.nearby-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

footer {
  background: #0f172a;           /* Modern Dark Slate (slate-900) */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 0 32px;
  color: #94a3b8;                /* Soft Slate Gray text */
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-brand .logo-img {
  height: 120px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 20px;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff !important;       /* Clean white title headers */
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #94a3b8;
}

.footer-contact-item svg {
  color: var(--primary);           /* Premium Forest Green contact icons */
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-trust-logos {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-align: center;
}

.trust-badge b {
  color: #ffffff;
}

.footer-coverage {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: center;
  font-size: 13.5px;
  color: #94a3b8;
}

.footer-coverage strong {
  color: #ffffff;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-coverage a {
  color: #94a3b8;
  margin: 0 10px;
  font-weight: 600;
  transition: var(--transition);
}

.footer-coverage a:hover {
  color: #ffffff;
}

/* Social icons in footer */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  flex-shrink: 0;
}

.footer-socials a:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom-links a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* PERSISTENT STICKY MOBILE CTA BAR */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 12px;
  z-index: 999;
  grid-template-columns: 1fr auto;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.mobile-sticky-cta .btn {
  min-height: 44px !important;
  height: 44px !important;
  border-radius: 100px !important; /* Fully rounded pill buttons */
  font-size: 13.5px !important;
  font-weight: 700 !important;
  padding: 0 16px !important;
  box-shadow: none !important;
  margin: 0 !important;
}

.mobile-sticky-cta .whatsapp-icon, 
.mobile-sticky-cta svg {
  width: 16px !important;
  height: 16px !important;
}

.mobile-sticky-cta .btn-primary {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
}

.mobile-sticky-cta .btn-primary:hover {
  background: #20ba5a !important;
}

.mobile-sticky-cta .btn-accent {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}

.mobile-sticky-cta .btn-accent:hover {
  background: var(--primary-hover) !important;
}

/* ==========================================================================
   SUBPAGE UTILITIES
   ========================================================================== */

/* Page Hero layout */
.subpage-hero {
  background: linear-gradient(180deg, rgba(77, 122, 30, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.subpage-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 12px;
}

.subpage-hero p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 600px;
}

/* Service Detail Cards (Subpage Grid) */
.services-full-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-full-item {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.service-full-item:nth-child(even) {
  grid-template-columns: 0.8fr 1.2fr;
}

.service-full-item:nth-child(even) .service-full-info {
  order: 2;
}

.service-full-info h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  margin-bottom: 8px;
}

.service-full-tagline {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.service-full-info p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.included-list {
  background: rgba(15, 23, 42, 0.01);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.included-list h4 {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.included-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ABOUT PAGE UTILITIES */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-creds-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.about-creds-title {
  color: var(--accent-text);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-align: center;
}

.about-creds-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 14px;
}

.about-creds-row:last-child {
  border-bottom: none;
}

.about-creds-row span.key {
  color: var(--text-muted);
  font-weight: 500;
}

.about-creds-row span.val {
  color: var(--text-body);
  font-weight: 700;
  text-align: right;
  max-width: 60%;
}

/* CONTACT PAGE WIDGETS */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
  border-color: rgba(77, 122, 30, 0.3);
}

.contact-info-icon {
  background: rgba(77, 122, 30, 0.05);
  border: 1px solid rgba(77, 122, 30, 0.15);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-card.yellow-icon .contact-info-icon {
  background: rgba(200, 212, 42, 0.05);
  border-color: rgba(200, 212, 42, 0.15);
  color: var(--accent-text);
}

.contact-info-details h2,
.contact-info-details h3,
.contact-info-details h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-info-details p {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-info-details a {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 600;
}

.contact-info-details a:hover {
  color: var(--primary);
}

/* BLOG TEMPLATE STYLING */
.blog-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: flex-start;
}

/* Blog listing cards — 2-col image+text on desktop */
.blog-article-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.blog-article-card .blog-body {
  padding: 8px 24px 8px 0;
}

.article-container {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.article-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.article-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.article-meta span.category {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-header h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.25;
}

.article-content {
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
}

.article-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 36px 0 16px;
  border-left: 3.5px solid var(--primary);
  padding-left: 14px;
}

.article-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 12px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul, .article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-content li::marker {
  color: var(--primary);
}

.article-content blockquote {
  background: rgba(77, 122, 30, 0.03);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px;
  font-style: italic;
}

.sidebar-card {
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-post-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recent-post-item a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-body);
  line-height: 1.35;
}

.recent-post-item a:hover {
  color: var(--primary);
}

.recent-post-item span.date {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 122, 30, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(77, 122, 30, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(77, 122, 30, 0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-up {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   ========================================================================== */
@media(max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-content {
    text-align: center;
    padding-top: 0;
  }
  
  .hero-badge-wrap, .hero-btns {
    justify-content: center;
  }

  .calc-grid, .about-grid, .contact-grid, .blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-card.featured {
    transform: none;
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-truck-showcase-img {
    transform: scale(1.0); /* Reset scale on tablet/mobile to prevent viewport overflow stretching */
  }

  .hero-truck-showcase-img:hover {
    transform: scale(1.05) rotate(-1deg); /* Subtle scaling on mobile focus hover */
  }

  .hero-checker {
    order: 1; /* Display postcode card first */
  }

  .hero-truck-showcase {
    order: 2; /* Display truck second, below postcode card */
  }
}

/* ============================================================
   TABLET / MOBILE — 768px
   Priority order follows UI/UX Pro Max: Accessibility → Touch →
   Performance → Layout → Typography → Animation
   ============================================================ */
@media(max-width: 768px) {

  /* ── Base ────────────────────────────────────────────────── */
  body {
    font-size: 16px;                  /* Min 16px prevents iOS auto-zoom on focused inputs */
    line-height: 1.75;
    color: #334155;                  /* Slate-700 instead of harsh heavy black */
    /* Safe-area-aware bottom padding for sticky CTA + iPhone Home Indicator */
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .container {
    padding: 0 20px;
  }

  /* ── Header ─────────────────────────────────────────────── */
  .logo-img {
    height: 88px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    transform: none !important;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav {
    top: 64px;
    height: calc(100dvh - 64px);     /* dvh avoids mobile browser chrome overlap */
    overscroll-behavior: contain;    /* Prevent body scroll when menu is open */
  }

  /* Mobile nav items — 48px touch targets */
  .mobile-nav a {
    min-height: 48px;
    padding: 14px 18px;
    font-size: 16px;
  }

  .mobile-nav .mob-cta {
    min-height: 48px;
    font-size: 15px;
  }

  /* ── Section spacing ─────────────────────────────────────── */
  .section-pad {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header p {
    font-size: 15px;
  }

  /* ── Typography ──────────────────────────────────────────── */
  h1 {
    font-size: 30px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    font-weight: 800 !important;
    color: var(--text) !important;
  }
  h2, .section-header h2 {
    font-size: 23px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em !important;
    font-weight: 800 !important;
  }
  h3 {
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
  }
  h4 {
    font-size: 15px !important;
    font-weight: 700 !important;
  }
  p {
    line-height: 1.75 !important;
    color: #334155 !important;
  }

  .footer-brand p {
    color: #e2e8f0 !important;
  }

  /* ── Buttons — min 44px touch target ─────────────────────── */
  .btn {
    min-height: 44px;
    padding: 11px 22px !important;
    font-size: 14.5px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Hero ────────────────────────────────────────────────── */
  .hero {
    padding: 20px 0 24px;
  }

  .hero-grid {
    gap: 28px;
  }

  /* Hero truck — scaled down cleanly */
  .hero-truck-showcase {
    transform: scale(0.78) !important;
    transform-origin: center top !important;
    margin-top: -24px !important;
    margin-bottom: -32px !important;
  }

  .truck-road {
    height: 20px;
  }

  /* ── Stats bar ───────────────────────────────────────────── */
  .stats-bar {
    padding: 24px 0;
  }

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

  .stat-card {
    padding: 14px 16px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat-card:nth-child(2n) { border-right: none; }
  .stat-card:nth-last-child(-n+2) { border-bottom: none; }

  .stat-number {
    font-size: 26px !important;
  }

  .stat-label {
    font-size: 12px;
  }

  /* ── Service cards ───────────────────────────────────────── */
  .services-grid,
  .service-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    padding: 22px 20px;
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-items: start;
    text-align: left;
  }

  .service-card-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    font-size: 32px;
    margin-bottom: 0;
    align-self: start;
    padding-top: 2px;
  }

  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 6px;
  }

  .service-card p {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 0;
  }

  .service-card .service-card-link {
    grid-column: 2;
    grid-row: 3;
  }

  /* ── Calculator ──────────────────────────────────────────── */
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .calc-tab-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .calc-tab {
    padding: 12px 8px;
    font-size: 12.5px;
    min-height: 56px;      /* Tall enough for icon + label */
  }

  .calc-result-price {
    font-size: 42px;
  }

  /* ── Pricing ─────────────────────────────────────────────── */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .load-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* ── Booking form ────────────────────────────────────────── */
  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wizard-steps {
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wizard-step {
    flex-shrink: 0;
  }

  .wizard-step .step-label {
    font-size: 10.5px;
  }

  /* Form inputs — 44px minimum height for tap targets */
  .form-input,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    min-height: 44px;
    font-size: 16px !important;  /* Prevents iOS auto-zoom on focus */
  }

  /* ── Included/checklist grid ─────────────────────────────── */
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* ── Blog layout ─────────────────────────────────────────── */
  .blog-layout,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Blog article listing cards: stack image on top, text below */
  .blog-article-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    overflow: hidden;
  }

  .blog-article-card .blog-thumb {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
  }

  .blog-article-card .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .blog-article-card .blog-body {
    padding: 20px 20px 24px;
  }

  /* ── About / Contact / Dashboard ────────────────────────── */
  .about-grid,
  .contact-grid,

  /* Service full items (services page) */
  .service-full-item,
  .service-full-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-full-item:nth-child(even) .service-full-info {
    order: 0;
  }

  /* ── Reviews ─────────────────────────────────────────────── */
  .reviews-track {
    gap: 14px;
  }

  .review-card {
    min-width: 272px;
    padding: 20px 18px;
  }

  /* ── Dashboard widget ────────────────────────────────────── */

  /* ── FAQ ─────────────────────────────────────────────────── */
  .faq-question {
    font-size: 15px;
    padding: 18px 0;
  }

  .faq-answer {
    font-size: 14.5px;
  }

  /* ── Subpage hero ────────────────────────────────────────── */
  .subpage-hero {
    padding: 56px 0 28px;
  }

  .subpage-hero h1 {
    font-size: 26px !important;
  }

  .subpage-hero p {
    font-size: 15px;
  }

  /* ── Glass cards ─────────────────────────────────────────── */
  .glass-card {
    padding: 18px 16px;
  }

  /* ── Footer ──────────────────────────────────────────────── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand .logo-img {
    height: 80px;     /* Proportionate on mobile */
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
  }

  /* ── Mobile sticky CTA ───────────────────────────────────── */
  .mobile-sticky-cta {
    display: grid;
  }

  /* ── Ambient blobs ───────────────────────────────────────── */

  /* ── Postcode checker ────────────────────────────────────── */
  .postcode-card h2 {
    font-size: 18px;
  }

  /* ── Misc alignment ──────────────────────────────────────── */
  .hero-badge-wrap {
    justify-content: center;
    font-size: 12px;
  }
}

@media(max-width: 480px) {
  .hero-badge-wrap {
    padding: 4px 10px;
    font-size: 11px;
    margin-bottom: 10px;
    gap: 5px;
  }
}

/* ============================================================
   SMALL MOBILE — 480px (most Android mid-range + older iPhones)
   ============================================================ */
@media(max-width: 480px) {

  .container {
    padding: 0 16px;
  }

  /* ── Hero ────────────────────────────────────────────────── */
  .hero {
    padding: 16px 0 20px;
  }

  /* Let H1 wrap naturally — the <br> forces a line that's too wide at 375px */
  .hero-content h1 br { display: none; }
  .hero-content h1 { font-size: 24px !important; }


  .hero-grid {
    gap: 20px;
  }

  h1 {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }
  h2, .section-header h2 {
    font-size: 21px !important;
  }

  /* Hero buttons — stacked, capped width */
  .hero-btns {
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

  .hero-btns .btn {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    justify-content: center;
    padding: 10px 8px !important;
    font-size: 13px !important;
    min-height: 44px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Shrink icons on mobile hero buttons */
  .hero-btns .btn svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0;
  }

  .hero-btns .btn {
    gap: 4px !important;
  }

  /* Hide icon + reply-time hint below hero buttons on mobile */
  .hero-wa-note {
    display: none;
  }

  /* Credentials strip — 2-column grid, no overflow */
  .cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .cred-item {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 14px;
    min-width: 0;
  }

  .cred-item:nth-child(even) {
    border-right: none;
  }

  .cred-item:last-child {
    grid-column: span 2;
    border-bottom: none;
    border-right: none;
    justify-content: center;
  }

  .cred-label {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cred-value {
    font-size: 12px;
  }

  /* Trust items stack */

  /* Truck scale down further */
  .hero-truck-showcase {
    transform: scale(0.68) !important;
    transform-origin: center top !important;
    margin-top: -36px !important;
    margin-bottom: -46px !important;
  }

  .truck-road {
    height: 16px;
  }

  /* ── Postcode checker ────────────────────────────────────── */
  .postcode-input-group {
    flex-direction: row !important;
    height: 52px !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  .postcode-input-group input {
    padding: 0 12px !important;
    font-size: 14px !important;
    min-width: 0; /* allow shrinking */
    flex: 1 1 0;
  }

  .postcode-input-group .btn {
    padding: 0 16px !important;
    font-size: 13px !important;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* ── Stats ───────────────────────────────────────────────── */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card {
    padding: 14px 12px;
  }

  .stat-number {
    font-size: 22px !important;
  }

  .stat-label {
    font-size: 11px;
  }

  /* ── Service cards ───────────────────────────────────────── */
  .service-card-icon {
    font-size: 28px;
  }

  /* ── Calculator ──────────────────────────────────────────── */
  .calc-tab-group {
    grid-template-columns: repeat(3, 1fr);
  }

  .calc-tab {
    padding: 8px 4px;
    font-size: 11px;
  }

  .calc-tab .tab-label {
    font-size: 11px;
  }

  .calc-tab .tab-sub {
    display: none; /* hide weight sub-label at smallest viewport */
  }

  /* ── Load cards ──────────────────────────────────────────── */
  .load-cards-grid {
    grid-template-columns: 1fr;
  }

  /* ── Included items ──────────────────────────────────────── */
  .included-grid {
    grid-template-columns: 1fr;
  }

  /* ── Price cards ─────────────────────────────────────────── */
  .price-card {
    padding: 22px 16px;
  }

  /* ── Booking wizard ──────────────────────────────────────── */
  .booking-row {
    grid-template-columns: 1fr;
  }

  .wizard-step .step-label {
    display: none;
  }

  /* ── Reviews ─────────────────────────────────────────────── */
  .review-card {
    min-width: 252px;
    padding: 16px;
  }

  /* ── FAQ ─────────────────────────────────────────────────── */
  .faq-question {
    padding: 14px 0;
    font-size: 14px;
  }

  /* ── Footer ──────────────────────────────────────────────── */
  .footer-coverage {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
  .footer-coverage a {
    display: inline-block;
    margin: 3px 6px;
    font-size: 12px;
  }
  footer {
    overflow: hidden; /* prevent footer content bleeding viewport */
  }

  /* Stack CTA buttons on small screens */
  .faq-cta-btns, [style*="display: flex"][style*="flex-wrap: wrap"] {
    flex-direction: column !important;
  }

  .footer-brand .logo-img {
    height: 64px;
  }

  /* ── Glass cards ─────────────────────────────────────────── */
  .glass-card {
    padding: 16px 14px;
  }

  /* ── Section pad ─────────────────────────────────────────── */
  .section-pad {
    padding: 36px 0;
  }

  /* ── Sticky CTA ──────────────────────────────────────────── */
  .mobile-sticky-cta {
    bottom: 16px !important;
    left: 12px !important;
    right: 12px !important;
    gap: 8px !important;
    padding: 6px 8px !important;
  }
  .mobile-sticky-cta .btn {
    min-height: 40px !important;
    height: 40px !important;
    font-size: 12.5px !important;
  }
}

/* ============================================================
   VERY SMALL / OLDER PHONES — 375px
   (iPhone SE, older Android, narrow screens)
   ============================================================ */
@media(max-width: 375px) {

  .container {
    padding: 0 14px;
  }

  h1 {
    font-size: 21px !important;
  }

  /* Hero h1 — re-enable <br> at smallest screens for controlled split */
  .hero-content h1 br { display: block !important; }
  .hero-content h1 {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }

  h2, .section-header h2 {
    font-size: 19px !important;
  }

  .hero-badge-wrap {
    font-size: 11px;
    padding: 5px 12px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .stat-number {
    font-size: 20px !important;
  }

  .calc-tab {
    font-size: 10.5px;
  }

  .btn {
    padding: 10px 14px !important;
    font-size: 13px !important;
  }

}


/* ==========================================================================
   SCROLL-DISPATCH TRUCK & REVEAL ANIMATIONS
   ========================================================================== */







.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}



/* Respect prefers-reduced-motion — disable heavy entrance and loop animations */
@media (prefers-reduced-motion: reduce) {
  .interactive-truck-wrap.driving-in,
  .truck-shadow.driving-in,
  .motion-road-line.driving-in {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .interactive-truck-wrap.truck-ready,
  .truck-shadow.truck-ready {
    animation: none;
  }

  .hero-truck-glow-ring,
  .showcase-dispatch-badge,
  .hero-truck-logo-badge {
    animation: none;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}



/* ==========================================================================
   WORLD-CLASS 3D TILT TRUCK SHOWCASE & CHECKER BAR
   ========================================================================== */

.hero-right-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.hero-checker {
  width: 100%;
  max-width: 580px;
}

.hero-checker .glass-card {
  padding: 24px;
}

.hero-truck-showcase {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  z-index: 10;
  padding: 0;
  overflow: visible;
}

.hero-truck-glow-ring {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(77, 122, 30, 0.18) 0%, rgba(200, 212, 42, 0.08) 50%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: glow-pulse 4s infinite alternate ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.interactive-truck-wrap {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.interactive-truck-wrap.driving-in {
  animation: truck-drive-in 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.interactive-truck-wrap.truck-ready {
  animation: truck-float 4.5s infinite ease-in-out;
}

.hero-truck-showcase-img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 15px 30px rgba(77, 122, 30, 0.15))
          drop-shadow(0 25px 50px rgba(15, 23, 42, 0.22));
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-truck-showcase-img:hover {
  transform: scale(1.22) rotate(-1deg);
  filter: drop-shadow(0 20px 35px rgba(77, 122, 30, 0.22))
          drop-shadow(0 30px 60px rgba(15, 23, 42, 0.28));
}

.truck-shadow {
  position: absolute;
  bottom: -8px;
  left: 10%;
  width: 80%;
  height: 25px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.1) 40%, rgba(15, 23, 42, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(5px);
  pointer-events: none;
}

.truck-shadow.driving-in {
  animation: shadow-drive-in 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.truck-shadow.truck-ready {
  animation: shadow-scale 4.5s infinite ease-in-out;
}

/* Motion Line Styling */
.motion-road-line {
  position: absolute;
  bottom: -20px;
  left: -20%;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, rgba(77, 122, 30, 0) 0%, rgba(77, 122, 30, 0.3) 50%, rgba(77, 122, 30, 0) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

.motion-road-line.driving-in {
  animation: road-slide-out 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* Truck Road Ground Strip */
.truck-road {
  display: none;
}

.truck-road-markings {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 24px,
    rgba(255,255,255,0.6) 24px,
    rgba(255,255,255,0.6) 48px
  );
  animation: road-markings-scroll 1.2s linear infinite;
}

@keyframes road-markings-scroll {
  from { background-position: 0 0; }
  to { background-position: 48px 0; }
}

/* ==========================================================================
   DRIBBLLE-STYLE SHOWCASE TRUCK ENTRANCE ANIMATIONS
   ========================================================================== */

@keyframes truck-drive-in {
  0% {
    transform: translateX(120vw) rotateY(-5deg) rotateZ(2deg);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  60% {
    transform: translateX(-20px) rotateY(-1deg) rotateZ(-1.5deg); /* braking lean forward */
  }
  80% {
    transform: translateX(8px) rotateY(0.5deg) rotateZ(1deg); /* suspension recoil back */
  }
  100% {
    transform: translateX(0) rotateX(0) rotateY(0) rotateZ(0);
    opacity: 1;
  }
}

@keyframes shadow-drive-in {
  0% {
    transform: translateX(120vw) scaleX(0.1);
    opacity: 0;
  }
  5% {
    opacity: 0.2;
  }
  60% {
    transform: translateX(-20px) scaleX(1.1);
    opacity: 0.8;
  }
  80% {
    transform: translateX(8px) scaleX(0.95);
    opacity: 0.6;
  }
  100% {
    transform: translateX(0) scaleX(1);
    opacity: 0.95;
  }
}

@keyframes road-slide-out {
  0% {
    transform: translateX(60vw) scaleX(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  60% {
    transform: translateX(-15vw) scaleX(1);
    opacity: 0.4;
  }
  100% {
    transform: translateX(-35vw) scaleX(1);
    opacity: 0;
  }
}

.showcase-dispatch-badge {
  position: absolute;
  bottom: 0px;
  right: -5px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  z-index: 3;
  animation: badge-float 3.5s infinite ease-in-out alternate;
}

.showcase-dispatch-badge .badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

.hero-truck-logo-badge {
  position: absolute;
  top: 0px;
  left: -10px;
  height: 42px;
  width: auto;
  z-index: 3;
  opacity: 0.9;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.06));
  animation: badge-float 4s infinite ease-in-out alternate;
  animation-delay: 0.5s;
}

.coverage-checker-bar {
  padding: 32px 0 16px;
  position: relative;
  z-index: 20;
}

.checker-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 24px 40px;
}

.checker-text h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.checker-text p {
  color: var(--text-muted);
  font-size: 13.5px;
}

.checker-inputs {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 460px;
  align-items: center;
}

.checker-inputs input {
  flex: 1;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 16px; /* Set to 16px to prevent iOS Safari auto-focus zooming */
  font-weight: 600;
  color: var(--text-body);
  outline: none;
  transition: var(--transition);
}

.checker-inputs input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(77, 122, 30, 0.08);
}

.checker-inputs button {
  white-space: nowrap;
}

@keyframes glow-pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1.2; }
}

@keyframes truck-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-0.5deg); }
}

@keyframes shadow-scale {
  0%, 100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(0.8);
    opacity: 0.45;
  }
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media(max-width: 900px) {
  .checker-bar-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }
  .checker-inputs {
    width: 100%;
    max-width: 100%;
  }
}

@media(max-width: 480px) {
  .checker-inputs {
    flex-direction: column;
  }
  .checker-inputs button {
    width: 100%;
  }
}

@media(max-width: 768px) {
  .google-reviews-header {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 16px;
  }
  .google-brand-meta {
    flex-direction: column;
    text-align: center;
  }
  .google-rating-score {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    width: 100%;
  }
  .google-reviews-btns {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .google-reviews-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   WHATSAPP ICON BRANDING & ANIMATION
   ========================================================================== */

.whatsapp-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

/* Ensure flex centering on any buttons with icons */
.nav-cta, .mob-cta, .btn, .whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Micro-animations: zoom and rotate the WhatsApp logo on hover */
.nav-cta:hover .whatsapp-icon,
.mob-cta:hover .whatsapp-icon,
.btn:hover .whatsapp-icon,
.whatsapp:hover .whatsapp-icon {
  transform: scale(1.15) rotate(5deg);
}

/* Borough Unique Content Section */
.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.areas-list li {
  background: var(--primary-light);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.borough-faqs .faq-item {
  border-left: 3px solid var(--primary);
  padding: 12px 16px;
  margin-bottom: 12px;
  background: var(--surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.borough-faqs h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
