/* Klear Exterior Cleaning — Brand colours (bubble logo rebrand) */
:root {
  --navy: #0A1524;
  --navy-light: #142438;
  --blue: #1BA8E8;
  --blue-hover: #0d8fc9;
  --blue-light: #e8f7fd;
  --bubble: #4EC8FF;
  --bubble-deep: #2BB4F0;
  --yellow: #4EC8FF;
  --yellow-hover: #2BB4F0;
  --gray-50: #f5f9fc;
  --gray-100: #eef5fa;
  --gray-200: #dce8f0;
  --gray-300: #c5d5e2;
  --gray-400: #8aa3b8;
  --gray-500: #5f7a90;
  --gray-600: #456074;
  --gray-800: #1a2c3a;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(10, 21, 36, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 21, 36, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --font: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --transition: 0.2s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

img:not(.leaflet-tile):not(.leaflet-marker-icon):not(.leaflet-marker-shadow) {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--gray-600);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--bubble);
  color: var(--navy);
  border-color: var(--bubble);
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.45) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: shimmer-sweep 3.5s ease-in-out infinite;
  pointer-events: none;
}

.btn-primary:hover {
  background: var(--bubble-deep);
  border-color: var(--bubble-deep);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

/* Top bar */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1rem;
}

.top-bar a {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

.top-bar-call {
  color: var(--white) !important;
  font-weight: 700 !important;
}

.top-bar-sep {
  opacity: 0.35;
  user-select: none;
}

/* Jim's-style announcement bar (homepage) */
.announcement-bar {
  display: flex;
  align-items: center;
  background: var(--blue);
  color: #ffffff;
  height: 44px;
  overflow: hidden;
  position: relative;
  z-index: 101;
}

.announcement-marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 72%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 72%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
  flex-shrink: 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
}

.marquee-phone {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.marquee-call {
  font-size: 0.85rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
}

.call-pill svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.announcement-btn {
  flex-shrink: 0;
  margin-right: 0.75rem;
  transition: background var(--transition);
}

.announcement-btn:hover {
  background: var(--navy-light);
  color: #ffffff;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(11, 29, 42, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  will-change: transform;
}

.site-header.header-hidden {
  transform: translateY(-110%);
  box-shadow: none;
  pointer-events: none;
}

.site-header.nav-open {
  transform: none;
  pointer-events: auto;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  grid-column: 1;
}

.logo-placeholder {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border: 2px dashed var(--gray-400);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
  animation: logo-bob 3.6s ease-in-out infinite;
}

img.logo-wordmark {
  height: 42px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  animation: logo-bob 3.6s ease-in-out infinite;
}

.logo-text {
  display: none;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--navy);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

@keyframes logo-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-mark,
  .logo-wordmark,
  .brand-mascot,
  .bubble-float,
  .btn-primary::after,
  .hero-brand-mascot img {
    animation: none !important;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  grid-column: 2;
}

.main-nav-links {
  display: contents;
}

.nav-menu-quote {
  display: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  grid-column: 3;
  justify-self: end;
}

.header-quote-pill {
  display: none;
  align-items: center;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background var(--transition);
}

.header-quote-pill:hover {
  background: var(--yellow-hover);
  color: var(--navy);
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: color var(--transition);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-phone span {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--blue-light);
}

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 380px;
}

.hero-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.hero-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-card p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Hero — landing layout (full-bleed + form below) */
.hero-landing {
  position: relative;
  padding: 0;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-landing::before {
  display: none;
}

.hero-landing .container.hero-landing-inner,
.hero-landing-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-template-columns: none;
  gap: 0;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
  color: var(--white);
}

.hero-landing-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-landing-bg .hero-jims-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-landing-bg .hero-jims-bg-slide.is-active {
  opacity: 1;
}

.hero-landing-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 21, 36, 0.72) 0%, rgba(10, 21, 36, 0.82) 55%, rgba(10, 21, 36, 0.9) 100%);
}

.hero-landing-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bubble);
  margin-bottom: 1rem;
}

.hero-landing-title {
  color: var(--white);
  font-size: clamp(1.85rem, 6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-landing-lead {
  font-size: clamp(0.98rem, 2.4vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.hero-google-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.55rem;
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-google-logo {
  display: inline-flex;
  line-height: 0;
}

.hero-google-stars {
  color: #f4b400;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}

.hero-google-score strong {
  font-weight: 800;
}

.hero-google-sep {
  color: var(--gray-400);
}

.hero-google-neighbours {
  color: var(--gray-600);
  font-weight: 600;
}

.hero-landing-ctas {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  width: 100%;
  max-width: 520px;
}

.hero-landing-btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.hero-landing-btn-outline {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.hero-landing-btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.hero-trust-row svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: var(--bubble);
  flex-shrink: 0;
}

.quote-landing {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 3.25rem 0 4rem;
}

.quote-landing-header {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  text-align: left;
}

.quote-landing-header h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
}

.quote-landing-header p {
  color: var(--gray-600);
  margin: 0;
}

.quote-landing-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.quote-landing-card .booking-form {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.quote-landing-card .booking-progress {
  margin-bottom: 1.25rem;
}

.quote-landing-card .quote-form-lead {
  display: none;
}

.quote-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

@media (max-width: 560px) {
  .hero-landing-ctas {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-landing-btn,
  .hero-landing-btn-outline {
    width: auto;
    font-size: 0.82rem;
    padding: 0.8rem 0.65rem;
  }

  .hero-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }
}

/* Hero — Jim's-style block + Tappt quote form (legacy inner pages / unused) */
.hero-jims-layout {
  padding: 2rem 0 0;
  background: var(--gray-50);
}

.hero-jims-layout::before {
  display: none;
}

.hero-jims-layout .container {
  display: block;
  max-width: 640px;
}

.hero-jims-block {
  border-radius: 24px;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-jims-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-jims-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-jims-bg-slide.is-active {
  opacity: 1;
}

.hero-jims-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10, 21, 36, 0.78) 0%, rgba(20, 36, 56, 0.85) 100%);
}

.hero-jims-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-jims-block .hero-quote-card {
  width: 100%;
  margin-top: 2rem;
  text-align: left;
}

.hero-jims-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  letter-spacing: -0.02em;
}

.hero-jims-title span {
  display: block;
}

.hero-jims-accent {
  color: var(--yellow);
  font-size: 1.15em;
}

.hero-jims-accent--inline {
  display: inline;
}

.btn-jims {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: none;
  width: 100%;
  max-width: 360px;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-jims:hover {
  background: var(--yellow-hover);
  color: var(--navy);
  transform: translateY(-2px);
}

.free-ring {
  font-style: italic;
  position: relative;
  display: inline-block;
  padding: 0 0.15em;
}

.free-ring::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -10px;
  right: -10px;
  bottom: -6px;
  border: 2.5px solid var(--white);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-jims-secondary {
  display: block;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--yellow);
  font-weight: 700;
  font-style: italic;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity var(--transition);
}

.hero-jims-secondary:hover {
  opacity: 0.85;
  color: var(--yellow);
}

/* Hero — desktop: full-width slideshow + side-by-side layout */
@media (min-width: 1025px) {
  .hero-jims-layout {
    padding: 0;
    background: transparent;
  }

  .hero-jims-layout .container {
    max-width: 100%;
    padding: 0;
  }

  .hero-jims-block {
    border-radius: 0;
    padding: 0;
  }

  .hero-jims-content {
    display: grid;
    grid-template-columns: 1fr minmax(400px, 480px);
    gap: 2.5rem 4rem;
    align-items: center;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }

  .hero-jims-title {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    align-items: flex-start;
    font-size: clamp(2.25rem, 3.2vw, 3.5rem);
    margin-bottom: 0;
  }

  .hero-jims-secondary {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    margin-bottom: 0;
  }

  .hero-jims-block .hero-quote-card {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }
}

.btn-block {
  width: 100%;
}

/* Hero quote card */
.hero-quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  color: var(--gray-800);
}

.hero-quote-card h2 {
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-quote-card-light {
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.hero-quote-form.hidden,
.quote-form.hidden {
  display: none;
}

.quote-form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.quote-form-success.active {
  display: block;
}

.quote-form-success svg {
  width: 48px;
  height: 48px;
  fill: var(--blue);
  margin: 0 auto 1rem;
}

.quote-form-success h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.quote-form-success p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Stats bar — Tappt style */
.promo-marquee {
  background: #FFD600;
  color: var(--navy);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  overflow: hidden;
}

.promo-marquee-inner {
  overflow: hidden;
}

.promo-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.promo-marquee-track:hover {
  animation-play-state: paused;
}

.promo-marquee-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
  flex-shrink: 0;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 500;
  white-space: nowrap;
}

.promo-marquee-item strong {
  font-weight: 800;
}

.promo-marquee-sep {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--navy);
  flex-shrink: 0;
}

.stats-bar {
  background: var(--blue);
  color: var(--white);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.85rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.one-stop-strip {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 29, 42, 0.92) 0%, rgba(11, 29, 42, 0.82) 100%),
    url('../images/pressure-washing.jpg') center / cover no-repeat;
  color: var(--white);
  padding: 3.25rem 0;
  text-align: center;
}

.one-stop-strip .container {
  max-width: 720px;
}

.one-stop-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.one-stop-strip h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.one-stop-strip p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.9;
}

/* Visual service cards */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-tab {
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
}

.service-tab.active {
  background: var(--navy);
  color: var(--white);
}

.services-grid.services-grid-visual:not(.services-page-grid) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

a.service-card-visual {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  border: 0;
  background: var(--navy);
  box-shadow: 0 8px 22px rgba(10, 21, 36, 0.1);
  text-decoration: none;
  color: var(--white);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

a.service-card-visual:hover,
a.service-card-visual:focus-visible,
a.service-card-visual.is-selected {
  box-shadow: 0 14px 32px rgba(10, 21, 36, 0.18);
  transform: translateY(-2px);
  outline: none;
}

a.service-card-visual .service-card-image {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  overflow: hidden;
  z-index: 0;
}

a.service-card-visual .service-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

a.service-card-visual .service-card-label {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 2.75rem 0.7rem 0.8rem;
  background: linear-gradient(to top, rgba(10, 21, 36, 0.88) 0%, rgba(10, 21, 36, 0.35) 55%, transparent 100%);
  transition: opacity 0.3s ease;
}

a.service-card-visual .service-card-label h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(0.72rem, 2.6vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: left;
}

a.service-card-visual--more {
  background: var(--navy);
}

a.service-card-visual--more .service-card-image img {
  filter: blur(6px) brightness(0.55);
  transform: scale(1.08);
}

a.service-card-visual--more .service-card-more {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1rem;
  text-align: center;
  color: var(--white);
}

a.service-card-visual--more .service-card-more-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

a.service-card-visual--more .service-card-more-caption {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(0.72rem, 2.6vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}

a.service-card-visual--more:hover .service-card-image img,
a.service-card-visual--more:focus-visible .service-card-image img {
  filter: blur(7px) brightness(0.48);
  transform: scale(1.12);
}

a.service-card-visual--more:hover .service-card-more-arrow,
a.service-card-visual--more:focus-visible .service-card-more-arrow {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

a.service-card-visual .service-card-panel {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0.75rem 0.9rem;
  background: rgba(10, 21, 36, 0.42);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

a.service-card-visual .service-card-panel h3 {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(0.72rem, 2.6vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
  width: 100%;
}

a.service-card-visual .service-card-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  text-align: left;
}

a.service-card-visual .service-card-panel li {
  position: relative;
  padding-left: 1.2rem;
  font-size: clamp(0.68rem, 2.3vw, 0.82rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
}

a.service-card-visual .service-card-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 0.85rem;
  height: 0.85rem;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 8.2l3 3.1 6.4-6.6' stroke='%234EC8FF' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

a.service-card-visual .service-card-panel .service-link {
  margin-top: 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bubble);
}

a.service-card-visual.is-selected .service-card-image img,
a.service-card-visual:focus-visible .service-card-image img {
  filter: blur(5px);
  transform: scale(1.08);
}

a.service-card-visual.is-selected .service-card-label,
a.service-card-visual:focus-visible .service-card-label {
  opacity: 0;
}

a.service-card-visual.is-selected .service-card-panel,
a.service-card-visual:focus-visible .service-card-panel {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) and (pointer: fine) {
  a.service-card-visual:hover .service-card-image img {
    filter: blur(5px);
    transform: scale(1.08);
  }

  a.service-card-visual:hover .service-card-label {
    opacity: 0;
  }

  a.service-card-visual:hover .service-card-panel {
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 640px) {
  .services-grid.services-grid-visual:not(.services-page-grid) {
    gap: 1rem;
  }

  a.service-card-visual {
    aspect-ratio: 3 / 3.6;
    border-radius: 16px;
  }

  a.service-card-visual .service-card-label {
    padding: 3rem 1.1rem 1.1rem;
  }

  a.service-card-visual .service-card-panel {
    padding: 1.25rem 1.15rem 1.15rem;
  }
}

@media (min-width: 960px) {
  .services-grid.services-grid-visual:not(.services-page-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    max-width: 720px;
    margin-inline: auto;
  }
}

/* Legacy body strip (unused on homepage overlay cards) */
.service-card-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-card-body h3 {
  font-size: 1.05rem;
  margin: 0;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

.service-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Services page detail cards keep image + body layout */
.service-detail-visual.service-card-visual {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  color: inherit;
  box-shadow: none;
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-detail-visual.service-card-visual:hover,
.service-detail-visual.service-card-visual:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-detail-visual .service-card-image {
  position: relative;
  inset: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-detail-visual .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  transform: none;
  transition: transform 0.45s ease;
}

.service-detail-visual.service-card-visual:hover .service-card-image img {
  transform: scale(1.05);
}

/* Before & after */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.results-proof-section {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding-top: 4.5rem;
  padding-bottom: 5.25rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
}

.results-proof-wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(2.5rem, 6vw, 4.5rem);
  transform: translateY(-99%);
  color: var(--navy);
  pointer-events: none;
  line-height: 0;
  z-index: 1;
}

.results-proof-wave--bottom {
  top: auto;
  bottom: 0;
  transform: translateY(99%) scaleY(-1);
}

.results-proof-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.results-proof-wave path {
  fill: currentColor;
}

.results-proof-section .section-label {
  color: var(--bubble);
}

.results-proof-section .results-proof-copy h2,
.results-proof-section .results-proof-copy p {
  color: var(--white);
}

.results-proof-section .results-proof-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.results-proof-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.results-proof-copy {
  text-align: left;
  margin-bottom: 0;
}

.results-proof-copy p {
  max-width: 760px;
}

.results-proof-points {
  display: grid;
  gap: 1rem;
}

.results-proof-point {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
  box-shadow: none;
}

.results-proof-icon {
  position: relative;
  flex-shrink: 0;
  width: 2.85rem;
  height: 2.85rem;
  display: block;
  background: none;
  border-radius: 0;
}

.results-proof-icon-bubble {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

.results-proof-icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  transform: translate(-50%, -52%);
  stroke: #0A1524;
  color: #0A1524;
  filter: drop-shadow(0 1px 1px rgba(10, 21, 36, 0.2));
}

.results-proof-icon--see,
.results-proof-icon--safe,
.results-proof-icon--star {
  color: #0A1524;
}

.results-proof-icon--star svg {
  fill: #0A1524;
  stroke: #0A1524;
  transform: translate(-50%, -54%);
}

.results-proof-icon--safe svg {
  transform: translate(-50%, -53%);
}

.results-proof-icon--see svg {
  transform: translate(-50%, -52%);
}

.results-proof-point-text {
  min-width: 0;
}

.results-proof-point strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.results-proof-point span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.before-after-grid-proof {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.before-after-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.before-after-card-proof {
  box-shadow: var(--shadow);
}

.before-after-card-proof img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.before-after-card-content {
  padding: 1.15rem 1.25rem 1.25rem;
}

.before-after-card-heading {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.65rem;
}

.before-after-card-heading h3 {
  font-size: 1.05rem;
  margin: 0;
}

.before-after-card-heading span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.before-after-card-content p {
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--gray-600);
}

.ba-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 16/10;
}

.ba-side {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ba-before {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: rgba(255, 255, 255, 0.8);
}

.ba-after {
  background: linear-gradient(135deg, var(--blue-light) 0%, #cce0f5 100%);
  color: var(--navy);
}

.before-after-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.before-after-card p {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.results-proof-cta {
  margin-top: 2rem;
  text-align: center;
}

.results-proof-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

/* Google reviews header */
.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
}

a.google-badge:hover strong {
  color: var(--blue);
}

.google-badge strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.google-badge span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.reviews-header h2 {
  max-width: 520px;
  margin: 0 auto;
}

/* Quality guarantee */
.guarantee-banner {
  background: var(--navy);
  padding: 3rem 0;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.guarantee-inner h3 {
  color: var(--white);
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

.guarantee-inner p {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* Callback request strip */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.callback-section {
  padding: 2rem 0 2.5rem;
  background: var(--gray-50);
}

.callback-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 1fr);
  gap: 1.75rem 2.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 2rem;
}

.callback-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.callback-copy h2 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  color: var(--navy);
}

.callback-copy p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 36rem;
}

.callback-copy a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

.callback-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.callback-fields--confirm {
  grid-template-columns: 1fr 1fr;
}

.callback-fields--confirm input[name="phone-confirm"] {
  grid-column: 1 / -1;
}

.contact-recap {
  margin: 0.35rem 0 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-recap[hidden] {
  display: none;
}

.callback-fields input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  background: #f8fafc;
  color: var(--navy);
  appearance: none;
  -webkit-appearance: none;
}

.callback-fields input::placeholder {
  color: #64748b;
  opacity: 1;
}

.callback-fields input:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.18);
}

.callback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.callback-actions .btn {
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
}

.btn-callback-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-callback-secondary:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.callback-success {
  padding: 0.5rem 0;
}

.callback-success strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.callback-success p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.quote-callback-link {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.quote-callback-link a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 800px) {
  .callback-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .callback-fields {
    grid-template-columns: 1fr;
  }

  .callback-actions {
    flex-direction: column;
  }

  .callback-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Bottom quote section */
.quote-section-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.quote-section-layout--cta {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
  gap: 1.5rem;
  padding: 1rem 0 0.5rem;
}

.quote-section-layout--cta .quote-section-text {
  width: 100%;
}

.quote-section-layout--cta .quote-section-text h2 {
  margin-bottom: 0.85rem;
}

.quote-section-layout--cta .quote-section-text p {
  margin-bottom: 1.75rem;
  max-width: 36rem;
  margin-inline: auto;
}

.quote-section-layout--cta .quote-section-actions {
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0;
}

.quote-section-text h2 {
  margin-bottom: 1rem;
}

.quote-section-text p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Floating call button — replaced by mobile bottom bar */
.floating-call {
  display: none !important;
}

/* Never show the mobile Call / Book Now bar on the booking page */
body.page-booking .mobile-bottom-bar,
body.page-booking .floating-call {
  display: none !important;
}

body.page-booking.has-mobile-bottom-bar {
  padding-bottom: 0 !important;
}

/* Mobile bottom action bar */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -8px 24px rgba(10, 21, 36, 0.1);
  }

  body.has-mobile-bottom-bar {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bottom-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--gray-300);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: none;
  }

  .mobile-bottom-call:hover,
  .mobile-bottom-call:focus-visible {
    background: var(--gray-50);
    color: var(--navy);
    border-color: var(--gray-400);
  }

  .mobile-bottom-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: var(--bubble);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(30, 168, 232, 0.35);
  }

  .mobile-bottom-quote:hover,
  .mobile-bottom-quote:focus-visible {
    background: var(--bubble-deep);
    color: var(--navy);
  }
}


/* Sections */
section {
  padding: 5rem 0;
}

section.bg-gray {
  background: var(--gray-50);
}

section.bg-navy {
  background: var(--navy);
  color: var(--white);
}

section.bg-navy h2,
section.bg-navy h3 {
  color: var(--white);
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Homepage overlay tiles stay 2-wide (overrides .services-grid minmax) */
.services-grid.services-grid-visual:not(.services-page-grid) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

@media (min-width: 640px) {
  .services-grid.services-grid-visual:not(.services-page-grid) {
    gap: 1rem;
  }
}

@media (min-width: 960px) {
  .services-grid.services-grid-visual:not(.services-page-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    max-width: 720px;
    margin-inline: auto;
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--blue);
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-item {
  text-align: center;
  padding: 1.5rem;
}

.why-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-item h3 {
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Testimonials (legacy grid — still used on some SEO pages) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* Process — how we work */
.process-section {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding-top: 5.5rem;
  background: var(--bubble);
}

.process-section > .container {
  position: relative;
  z-index: 1;
}

.process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.75rem;
}

.process-header .section-label {
  color: var(--navy);
}

.process-header h2 {
  margin-bottom: 0.65rem;
  color: var(--navy);
}

.process-header p {
  color: rgba(10, 21, 36, 0.72);
  margin: 0;
}

.process-header::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin: 1.1rem auto 0;
  background: var(--navy);
  border-radius: 2px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  max-width: 820px;
  margin: 0 auto;
}

.process-card {
  position: relative;
  text-align: center;
  background: var(--white);
  border-radius: 22px;
  padding: 2rem 1.35rem 1.65rem;
  box-shadow: 0 10px 28px rgba(10, 21, 36, 0.08);
  border: 1px solid rgba(220, 232, 240, 0.9);
}

.process-badge {
  position: absolute;
  top: -0.55rem;
  right: -0.35rem;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(10, 21, 36, 0.2);
}

.process-icon {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
}

.process-icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.process-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.95rem;
}

.process-cta {
  text-align: center;
  margin-top: 2.25rem;
}

/* Review slider */
.reviews-section {
  background: var(--gray-50);
}

.reviews-header--slider {
  margin-bottom: 1.75rem;
}

.reviews-header--slider h2 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
}

.review-slider {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}

.review-slider-mark {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(3.5rem, 8vw, 5rem);
  line-height: 0.7;
  color: var(--bubble);
  font-weight: 700;
  margin-bottom: 0.85rem;
  user-select: none;
}

.review-slider-stars {
  color: var(--bubble-deep);
  letter-spacing: 0.28em;
  font-size: 1.05rem;
  margin-bottom: 1.35rem;
}

.review-slider-viewport {
  position: relative;
  min-height: 9.5rem;
}

.review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
  pointer-events: none;
}

.review-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.review-slide[hidden] {
  display: block !important;
}

.review-slide blockquote {
  margin: 0 0 1.15rem;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--navy);
  font-style: normal;
  font-weight: 500;
}

.review-slide cite {
  display: block;
  font-style: normal;
  font-family: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', monospace;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.review-slide cite span {
  color: var(--gray-500);
}

.review-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.65rem 0 1rem;
}

.review-slider-dots button {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.review-slider-dots button.is-active {
  background: var(--bubble-deep);
  transform: scale(1.15);
}

.review-slider-dots button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.review-slider-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gray-400);
  font-style: italic;
}

.review-slider-note a {
  color: var(--blue);
  font-style: normal;
}

/* Why choose us page */
.why-reasons {
  display: grid;
  gap: 1.5rem;
}

.why-reason {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.why-reason:last-child {
  border-bottom: 0;
}

.why-reason-num {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bubble-deep);
  line-height: 1;
  min-width: 2.5rem;
}

.why-reason h3 {
  margin: 0 0 0.4rem;
}

.why-reason p {
  margin: 0;
  color: var(--gray-600);
}

@media (min-width: 760px) {
  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1100px;
    gap: 1.15rem;
  }

  .process-card {
    padding: 1.85rem 1rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #12324a 45%, #0d6fa8 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-hero--photo {
  position: relative;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  padding: 5.5rem 0;
}

.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 42, 0.55) 0%, rgba(11, 29, 42, 0.72) 100%);
  z-index: 0;
}

.page-hero--photo .container {
  position: relative;
  z-index: 1;
}

.page-hero--photo-booking {
  background-image: url('../images/house-washing-after.jpg');
}

.page-hero--photo-services {
  background-image: url('../images/pressure-washing.jpg');
}

.page-hero--photo-commercial {
  background-image: url('../images/concrete-cleaning.jpg');
}

.page-hero--photo-gallery {
  background-image: url('../images/hero-roof-cleaning.jpg');
}

.page-hero--photo-service-area {
  background-image: url('../images/driveway-pavers.jpg');
}

.page-hero--photo-faq {
  background-image: url('../images/exterior-window-cleaning.jpg');
}

.page-hero--photo-privacy {
  background-image: url('../images/hero-deck-cleaning.jpg');
}

.page-hero--photo-why {
  background-image: url('../images/soft-washing-hero.png');
  background-position: center 40%;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  opacity: 0.85;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Service detail — image cards (services page) */
.services-page-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.service-detail-visual {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-detail-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.service-detail-visual h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.service-avg-price {
  display: inline-block;
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--blue-light);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.service-avg-price strong {
  color: var(--blue);
}

.service-price-meta {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.35;
}

.service-interval {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 214, 0, 0.35);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.service-recur-note {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.45;
  padding: 0.55rem 0.65rem;
  background: var(--blue-light);
  border-radius: 4px;
}

.service-loss-callout {
  margin: 0.75rem 0 1rem;
  padding: 0.85rem 1rem;
  background: rgba(0, 102, 204, 0.08);
  border-left: 3px solid var(--blue);
  border-radius: 0 4px 4px 0;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-loss-callout strong {
  color: var(--blue);
}

.pricing-callout {
  margin: 0 0 1.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--yellow);
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.pricing-callout strong {
  color: var(--navy);
}

.maintain-section {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: 4.5rem 0 5rem;
  background: var(--bubble);
}

.maintain-wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(2.5rem, 6vw, 4.5rem);
  transform: translateY(-99%);
  color: var(--bubble);
  pointer-events: none;
  line-height: 0;
  z-index: 1;
}

.maintain-wave--bottom {
  top: auto;
  bottom: 0;
  transform: translateY(99%) scaleY(-1);
}

.maintain-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.maintain-wave path {
  fill: currentColor;
}

.maintain-strip {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--navy);
  text-align: center;
}

.maintain-strip h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.35rem;
}

.maintain-strip > p {
  margin: 0 auto 1.25rem;
  max-width: 640px;
  color: rgba(10, 21, 36, 0.72);
  font-size: 0.95rem;
}

.maintain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  text-align: left;
  max-width: 960px;
  margin: 0 auto 1.25rem;
}

@media (min-width: 720px) {
  .maintain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.maintain-card {
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(10, 21, 36, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(10, 21, 36, 0.08);
}

.maintain-card h4 {
  margin: 0 0 0.25rem;
  color: var(--navy);
  font-size: 1rem;
}

.maintain-cadence {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(10, 21, 36, 0.55);
}

.maintain-card p:last-child {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.maintain-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  position: relative;
}

.maintain-k-mark {
  width: 2.75rem;
  height: auto;
  display: block;
  transform: translateY(0.35rem);
  flex-shrink: 0;
}

/* Window / gutter recurring plans */
.plan-section {
  margin: 2.5rem 0 0;
  padding: 2.25rem 0 0.5rem;
}

.plan-section-header {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.plan-section-header h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.plan-section-header p {
  margin: 0;
  color: var(--gray-600);
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 800px) {
  .plan-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.plan-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.2rem 1.25rem;
  box-shadow: 0 10px 28px rgba(10, 21, 36, 0.06);
  text-align: center;
}

.plan-card-tier {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bubble-deep);
}

.plan-card-offer {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
}

.plan-card-per {
  margin: 0.2rem 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.plan-card-features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.plan-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.35;
}

.plan-feature-mark {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.12rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.plan-feature-mark.is-yes {
  background: var(--bubble);
  color: var(--navy);
}

.plan-feature-mark.is-no {
  background: #fee2e2;
  color: #b91c1c;
}

.plan-card-features li.is-excluded {
  color: var(--gray-500);
}

.plan-card .btn {
  width: 100%;
}

.plan-card--featured {
  border-color: var(--bubble);
  box-shadow: 0 14px 36px rgba(43, 180, 240, 0.18);
}

.plan-card--gutter {
  max-width: 420px;
  margin: 0 auto;
}

.plan-section--gutter {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--gray-200);
}

.service-detail-visual p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.service-detail-visual ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
  flex: 1;
}

.service-detail-visual ul li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--gray-600);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.service-detail-visual ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
}

.service-often-booked {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  background: var(--gray-50);
  border-left: 3px solid var(--yellow);
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.service-often-booked strong {
  display: block;
  color: var(--navy);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.service-often-booked a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-detail-cta {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  transition: color var(--transition);
}

.service-detail-visual:hover .service-detail-cta {
  color: var(--navy);
}

@media (min-width: 1025px) {
  .services-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service area */
.area-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.area-map-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

.area-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.area-map {
  height: 380px;
  min-height: 380px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.area-map--gesture::after {
  content: 'Use two fingers to move the map';
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 500;
  transform: translate(-50%, -50%);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 21, 36, 0.82);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.area-map--gesture.is-gesture-hint::after {
  opacity: 1;
}

#service-area-map.leaflet-container,
.area-map.leaflet-container {
  height: 380px;
  min-height: 380px;
  width: 100%;
  font-family: var(--font);
  background: #e8eef4;
}

.area-map--compact.leaflet-container {
  height: 320px;
  min-height: 320px;
}

/* Global img { max-width: 100% } breaks Leaflet tiles */
.leaflet-container img.leaflet-tile,
.leaflet-container img.leaflet-marker-icon,
.leaflet-container img.leaflet-marker-shadow,
.leaflet-container img.leaflet-tile-loaded {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-div-icon.area-map-marker,
.area-map-marker {
  background: var(--navy);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.leaflet-div-icon.area-map-marker--major,
.area-map-marker--major {
  background: var(--blue);
  width: 14px !important;
  height: 14px !important;
  margin-left: -7px !important;
  margin-top: -7px !important;
  border-width: 2.5px;
}

.area-map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  text-align: center;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.area-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.home-service-area {
  padding: 4rem 0;
  background: var(--white);
}

.home-service-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.home-service-area-copy .section-header,
.home-service-area-copy {
  text-align: left;
}

.home-service-area-copy h2 {
  margin-bottom: 0.85rem;
}

.home-service-area-copy p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  max-width: 34rem;
}

.home-service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.home-service-area-list li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.08);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
}

.area-map--compact {
  height: 320px;
  min-height: 320px;
}

.home-service-area-map .area-map-iframe {
  min-height: 320px;
}

.area-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.area-map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.legend-swatch {
  display: inline-block;
  flex-shrink: 0;
}

.legend-swatch--radius {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: rgba(0, 102, 204, 0.15);
}

.legend-swatch--major {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--blue);
}

.legend-swatch--town {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
}

.areas-group {
  margin-bottom: 2rem;
}

.areas-group-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.area-card--major {
  border-color: rgba(0, 102, 204, 0.35);
  background: rgba(0, 102, 204, 0.05);
}

.area-card--major span {
  font-weight: 600;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

a.area-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.area-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.area-card svg {
  width: 20px;
  height: 20px;
  fill: var(--blue);
  flex-shrink: 0;
}

.area-card span {
  font-weight: 500;
  color: var(--navy);
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  color: var(--gray-600);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--gray-100);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  color: var(--gray-400);
  font-size: 0.85rem;
  gap: 0.5rem;
}

.gallery-placeholder svg {
  width: 40px;
  height: 40px;
  fill: var(--gray-400);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 29, 42, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 29, 42, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  max-height: 80vh;
  margin: 0 auto;
  border-radius: var(--radius);
}

.lightbox-caption {
  color: var(--white);
  margin-top: 1rem;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

/* Booking form */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.booking-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

/* Multi-step booking progress */
.booking-progress {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0 0.25rem;
}

.booking-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
}

.booking-k-mark {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.booking-brand-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.booking-service-perks {
  margin: 0.35rem 0 0;
  padding: 0.75rem 0.9rem;
  list-style: none;
  border-radius: 10px;
  background: rgba(27, 168, 232, 0.08);
  display: grid;
  gap: 0.35rem;
}

.booking-service-perks li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.booking-service-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bubble);
  font-weight: 800;
}

.booking-service-quote-note {
  margin: 0 0 0.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border-left: 3px solid var(--bubble);
  background: var(--blue-light);
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.booking-commercial-fields {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--blue-light);
}

.booking-commercial-fields[hidden] {
  display: none;
}

.booking-commercial-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.45;
  font-weight: 600;
}

.booking-commercial-fields .form-group {
  margin-bottom: 0.85rem;
}

.booking-commercial-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.booking-progress-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  text-align: center;
  color: var(--gray-400);
}

.booking-progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.05rem;
  left: calc(50% + 1.15rem);
  width: calc(100% - 2.3rem);
  height: 2px;
  background: var(--gray-200);
}

.booking-progress-step.is-complete:not(:last-child)::after,
.booking-progress-step.is-active:not(:last-child)::after {
  background: var(--bubble);
}

.booking-progress-num {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--gray-100);
  color: var(--gray-500);
  border: 2px solid var(--gray-200);
  z-index: 1;
}

.booking-progress-step.is-active .booking-progress-num,
.booking-progress-step.is-complete .booking-progress-num {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.booking-progress-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 7.5rem;
  line-height: 1.25;
}

.booking-progress-step.is-active .booking-progress-label {
  color: var(--navy);
}

.booking-step-title {
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.booking-step-lead {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.booking-step-btn,
.booking-step-actions .btn {
  width: 100%;
}

.booking-step-actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.booking-packages-title,
.booking-services-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.booking-packages-lead {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.booking-packages {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

@media (min-width: 720px) {
  .booking-packages {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.booking-package-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  text-align: left;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.booking-package-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.booking-package-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  color: var(--navy);
  opacity: 0.88;
}

.booking-package-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-package-card.is-active .booking-package-icon {
  color: var(--white);
  opacity: 1;
}

.booking-package-card:hover {
  border-color: var(--bubble);
}

.booking-package-card.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(10, 21, 36, 0.18);
}

.booking-package-save {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bubble);
}

.booking-package-card.is-active .booking-package-save {
  color: #9ec9ff;
}

.booking-package-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.booking-package-card.is-active .booking-package-name {
  color: var(--white);
}

.booking-package-includes {
  font-size: 0.86rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.booking-package-card.is-active .booking-package-includes {
  color: rgba(255, 255, 255, 0.78);
}

.booking-package-from {
  margin-top: 0.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.booking-package-card.is-active .booking-package-from {
  color: var(--white);
}

.booking-services-title {
  margin-top: 0.25rem;
}

.booking-travel {
  margin: 1.15rem 0 1rem;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
}

.booking-travel-lead {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.booking-travel-option {
  display: grid;
  gap: 0.15rem;
  text-align: left !important;
  border-radius: 12px !important;
  padding: 0.75rem 1rem !important;
}

.booking-travel-option strong {
  font-size: 0.95rem;
}

.booking-travel-option em {
  font-style: normal;
  font-weight: 800;
  color: var(--bubble);
}

.booking-toggle input:checked + .booking-travel-option em {
  color: #9ec9ff;
}

.booking-travel-option small {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.35;
}

.booking-toggle input:checked + .booking-travel-option small {
  color: rgba(255, 255, 255, 0.75);
}

.booking-services {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.booking-service-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.booking-service-card.is-selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 168, 232, 0.12);
}

.booking-service-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.booking-service-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.booking-service-from {
  display: grid;
  gap: 0.1rem;
  justify-items: start;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-500);
}

.booking-service-from-note {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.booking-service-card.is-selected .booking-service-from {
  color: var(--blue);
}

.booking-service-card.is-selected .booking-service-from-note {
  color: var(--gray-500);
}

.booking-service-expand {
  width: 0.55rem;
  height: 0.55rem;
  margin-left: auto;
  border-right: 2px solid var(--gray-400);
  border-bottom: 2px solid var(--gray-400);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.booking-service-card.is-selected .booking-service-expand {
  transform: rotate(225deg);
  margin-top: 0.25rem;
}

.booking-service-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-service-check-ui {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  background: var(--white);
}

.booking-service-check input:checked + .booking-service-check-ui {
  background: var(--bubble);
  border-color: var(--bubble);
}

.booking-service-check input:checked + .booking-service-check-ui::after {
  content: '';
  position: absolute;
  left: 0.28rem;
  top: 0.05rem;
  width: 0.35rem;
  height: 0.65rem;
  border: solid var(--navy);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.booking-service-options {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--gray-200);
  display: grid;
  gap: 0.85rem;
}

.booking-service-options[hidden] {
  display: none !important;
}

.booking-size-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.booking-size-field select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
}

.booking-toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.booking-toggle-group--sizes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-toggle-group--wrap {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-toggle-group--stack {
  grid-template-columns: 1fr;
}

.booking-toggle-group--stack .booking-toggle input + span {
  border-radius: 12px;
  text-align: left;
  padding: 0.75rem 1rem;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .booking-toggle-group--wrap {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.booking-toggle {
  cursor: pointer;
}

.booking-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-toggle input + span {
  display: block;
  text-align: center;
  padding: 0.65rem 0.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--white);
}

.booking-toggle input:checked + span {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.booking-toggle--size .booking-size-option {
  border-radius: var(--radius);
  padding: 0.8rem 0.55rem;
  min-height: 9rem;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.45rem;
}

.booking-size-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.booking-size-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-size-icon.is-s {
  transform: scale(0.82);
}

.booking-size-icon.is-m {
  transform: scale(0.94);
}

.booking-size-icon.is-l {
  transform: scale(1.06);
}

.booking-size-icon.is-xl {
  transform: scale(1.18);
}

.booking-size-tier {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.booking-size-copy {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: inherit;
}

.booking-service-error {
  color: #b42318;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.booking-bundle {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--blue-light);
  border: 1px solid rgba(27, 168, 232, 0.35);
  border-left: 4px solid var(--bubble);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin: 0 0 1rem;
}

.booking-bundle-copy strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.booking-bundle-copy p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.booking-bundle-dismiss {
  margin-left: auto;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--gray-500);
  cursor: pointer;
  padding: 0.1rem 0.35rem;
}

.booking-estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
  margin-bottom: 0.65rem;
}

.booking-estimate-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.2rem;
}

.booking-estimate-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.booking-savings {
  margin: 0.55rem 0 0;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(27, 168, 232, 0.1);
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.35;
  display: grid;
  gap: 0.15rem;
}

.booking-savings[hidden] {
  display: none !important;
}

.booking-savings strong {
  font-size: 0.95rem;
  color: var(--navy);
}

.booking-savings span {
  color: var(--gray-600);
  font-size: 0.82rem;
}

.booking-estimate-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: var(--navy);
  line-height: 1;
}

.booking-estimate-disclaimer {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0 0 1rem;
  line-height: 1.45;
}

.booking-condition-note {
  margin: 0 0 1.35rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.booking-addons-title {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.booking-addons-lead {
  color: var(--gray-600);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.booking-addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.booking-addon-card {
  display: block;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  cursor: pointer;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.booking-addon-card:has(input:checked) {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 168, 232, 0.1);
}

.booking-addon-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-addon-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.booking-addon-top strong {
  color: var(--navy);
}

.booking-addon-price {
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.booking-addon-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.4;
}

@media (min-width: 700px) {
  .booking-addons {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .booking-progress-label {
    font-size: 0.6rem;
  }

  .booking-step-actions {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid,
input.is-invalid,
textarea.is-invalid {
  border-color: #ef4444;
}

.field-error {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b42318;
  line-height: 1.35;
}

.callback-fields .field-error,
.lead-popup-fields .field-error {
  grid-column: 1 / -1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.35rem;
}

.preferred-date-label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.preferred-date-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  appearance: none;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--navy);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.preferred-date-toggle:hover {
  border-color: var(--blue);
  background: var(--white);
}

.preferred-date-toggle[aria-expanded="true"] {
  border-color: var(--blue);
  background: var(--white);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.preferred-date-toggle-hint {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.preferred-date-panel {
  border: 1px solid var(--blue);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0.85rem;
  background: var(--white);
}

.preferred-date-status {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.preferred-date-calendar {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  padding: 0.85rem;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.cal-month {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.cal-nav {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.cal-nav:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
}

.cal-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cal-nav svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.cal-weekdays,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.cal-weekdays {
  margin-bottom: 0.35rem;
}

.cal-weekdays span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.cal-day {
  aspect-ratio: 1;
  min-height: 2rem;
  border: 0;
  border-radius: 0.45rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cal-day--empty {
  visibility: hidden;
}

.cal-day--disabled {
  color: var(--gray-300);
  background: transparent;
}

.cal-day--available {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(11, 29, 42, 0.04);
}

.cal-day--available:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.cal-day--available.is-selected {
  border-color: var(--blue);
  background: rgba(0, 102, 204, 0.08);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.preferred-date-clear {
  margin-top: 0.65rem;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  text-decoration: underline;
}

.preferred-date [data-preferred-date-input] {
  display: none;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.service-picker-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.service-pills:empty {
  display: none;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.45rem 0.3rem 0.65rem;
  background: rgba(0, 102, 204, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.28);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}

.service-pill-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(11, 29, 42, 0.1);
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.service-pill-remove:hover {
  background: rgba(11, 29, 42, 0.2);
}

.service-picker-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.service-picker-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.service-picker.is-invalid .service-picker-select {
  border-color: #ef4444;
}

.service-picker-error {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #ef4444;
}

.booking-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.sidebar-card ul {
  margin-bottom: 1.5rem;
}

.sidebar-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.sidebar-card li svg {
  width: 18px;
  height: 18px;
  fill: var(--blue-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-contact {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.sidebar-contact h4 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.sidebar-contact p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.sidebar-contact a {
  color: var(--blue);
  font-weight: 600;
}

.sidebar-proof {
  margin-top: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sidebar-proof-header {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.9rem 1rem 0.65rem;
}

.sidebar-proof-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.sidebar-proof-header strong {
  color: var(--navy);
  font-size: 1rem;
}

.sidebar-proof-viewport {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--gray-100);
}

.sidebar-proof-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.sidebar-proof-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-proof-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar-proof-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem 0.9rem;
}

.sidebar-proof-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--gray-200);
  cursor: pointer;
}

.sidebar-proof-dots button.is-active {
  background: var(--blue);
  width: 1.1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.active {
  display: block;
}

.form-success svg {
  width: 64px;
  height: 64px;
  fill: var(--blue);
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--gray-600);
}

.booking-form.hidden {
  display: none;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-mark {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-brand .logo-tagline {
  color: var(--blue-light);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-brand-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  min-height: 140px;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0 0.5rem;
  overflow: hidden;
}

.footer-watermark {
  font-size: clamp(4.5rem, 14vw, 8.5rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.08);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.footer-brand-details {
  position: relative;
  z-index: 1;
  text-align: right;
  flex-shrink: 0;
  padding-bottom: 0.35rem;
}

.footer-brand-details strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.footer-brand-details p {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand-details .footer-social {
  justify-content: flex-end;
  margin-top: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--blue);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.text-center {
  text-align: center;
}

.mt-2 { margin-top: 2rem; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-jims-block {
    padding: 2.5rem 1.25rem 1.75rem;
  }

  .hero-quote-card {
    max-width: 100%;
  }

  .quote-section-layout {
    grid-template-columns: 1fr;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .results-proof-intro,
  .before-after-grid-proof {
    grid-template-columns: 1fr;
  }

  .home-service-area-layout {
    grid-template-columns: 1fr;
  }

  .area-map--compact {
    height: 280px;
    min-height: 280px;
  }

  .area-map--compact.leaflet-container {
    height: 280px;
    min-height: 280px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-landing .container.hero-landing-inner,
  .hero-landing-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }

  .area-intro {
    grid-template-columns: 1fr;
  }

  .area-map {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    padding-left: 1.6rem;
    padding-right: 1.35rem;
  }

  .site-header.nav-open {
    border-bottom-color: transparent;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }

  .logo {
    order: 1;
    margin-left: 0.15rem;
  }

  .header-right {
    order: 2;
    margin-left: auto;
    margin-right: 0.15rem;
    gap: 0.65rem;
  }

  .header-quote-pill {
    display: inline-flex;
  }

  .results-proof-section {
    padding-top: 3.5rem;
  }

  .before-after-card-content {
    padding: 1rem 1rem 1.15rem;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    padding: 4px;
  }

  .main-nav {
    order: 3;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    grid-column: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0.5rem -1.35rem 0 -1.6rem;
    padding: 0 1.25rem;
    background: var(--navy);
    border-radius: 20px;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease, margin 0.35s ease;
  }

  .main-nav.open {
    max-height: 720px;
    opacity: 1;
    margin-top: 0.75rem;
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .main-nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
  }

  .main-nav a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    transition: background var(--transition), color var(--transition);
  }

  .main-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
  }

  .main-nav a.active {
    color: #ffffff;
    background: var(--navy-light);
  }

  .main-nav a.active::after {
    display: none;
  }

  .nav-menu-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    background: var(--yellow);
    color: var(--navy);
    font-size: 1rem;
    font-weight: 800;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  }

  .nav-menu-quote:hover {
    background: var(--yellow-hover);
    color: var(--navy);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    margin-top: -2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-banner {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    gap: 1rem;
  }

  .footer-watermark {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .footer-brand-details {
    text-align: left;
  }

  .footer-brand-details .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .booking-toggle-group--sizes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* —— Audit upgrades —— */
.hero-jims-subtitle {
  display: block;
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.92;
  margin-top: 0.15em;
}

.quote-form-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.hero-quote-card-light .quote-form-lead {
  color: var(--gray-600);
}

.service-picker-help {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.hero-quote-card:not(.hero-quote-card-light) .service-picker-help {
  color: rgba(255, 255, 255, 0.72);
}

.service-picker-multi-hint {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--blue);
  font-weight: 600;
}

.hero-quote-card:not(.hero-quote-card-light) .service-picker-multi-hint {
  color: var(--yellow);
}

.bundle-strip {
  position: relative;
  margin: 2.5rem 0 0;
  padding: 1.85rem 1.25rem 1.65rem;
  background:
    linear-gradient(180deg, rgba(78, 200, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%),
    var(--white);
  color: var(--navy);
  text-align: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bundle-strip .klear-bubble {
  opacity: 0.75;
  z-index: 0;
}

.bundle-strip h3,
.bundle-strip > p,
.bundle-strip .package-grid,
.bundle-strip-note,
.bundle-strip-actions {
  position: relative;
  z-index: 1;
}

.bundle-strip h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  color: var(--navy);
}

.bundle-strip > p {
  margin: 0 auto 1.35rem;
  max-width: 540px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.5;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  text-align: left;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.2rem 1.05rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(10, 21, 36, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.package-card:hover {
  border-color: var(--bubble);
  box-shadow: 0 14px 28px rgba(10, 21, 36, 0.1);
  transform: translateY(-3px);
  color: var(--navy);
}

.package-card--featured {
  border-color: var(--navy);
  background:
    linear-gradient(165deg, rgba(78, 200, 255, 0.12) 0%, rgba(255, 255, 255, 1) 48%);
  box-shadow: 0 12px 28px rgba(10, 21, 36, 0.1);
}

.package-card--featured:hover {
  border-color: var(--navy);
}

.package-card-icon {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  width: 2rem;
  height: 2rem;
  color: var(--bubble);
  pointer-events: none;
}

.package-card:hover .package-card-icon {
  color: var(--bubble-deep);
}

.package-badge {
  position: absolute;
  top: -0.55rem;
  left: 0.85rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
}

.package-save-badge {
  display: inline-block;
  align-self: flex-start;
  margin: 0.45rem 0 0.15rem;
  background: rgba(78, 200, 255, 0.18);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.package-card--featured .package-save-badge {
  margin-top: 0.7rem;
  background: var(--bubble);
  color: var(--navy);
}

.package-card h4 {
  margin: 0.25rem 0 0;
  padding-right: 2.2rem;
  font-size: 1.08rem;
  color: var(--navy);
}

.package-includes {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--gray-600);
  flex: 1;
}

.package-price {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.package-price strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
}

.package-note {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  line-height: 1.4;
}

.package-cta {
  margin-top: 0.65rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--bubble-deep);
}

.package-card:hover .package-cta {
  color: var(--navy);
}

.bundle-strip-note {
  margin-top: 1.1rem !important;
  font-size: 0.82rem !important;
  color: var(--gray-500) !important;
  max-width: 640px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.bundle-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.bundle-strip .btn-bundle-alt {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.bundle-strip .btn-bundle-alt:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.bundle-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: -0.25rem 0 1.25rem;
}

.bundle-chips-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
}

.bundle-chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.bundle-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.bundle-chip.is-active {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--navy);
}

.bundle-chip-save {
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}

.package-save-inline {
  color: inherit;
  font-weight: 800;
}

.google-badge--soft {
  align-items: center;
  gap: 0.75rem;
}

.google-badge-sub {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 0.15rem;
}

.whatsapp-link {
  color: #128C7E;
  font-weight: 700;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 3rem;
}

.home-faq {
  padding: 4rem 0;
  background: var(--white);
}

.home-faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
  overflow: hidden;
}

.faq-item.is-open {
  background: var(--white);
  border-color: var(--blue);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: 0;
  padding: 1rem 1.1rem;
  font: inherit;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

.faq-trigger:hover {
  color: var(--blue);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--blue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 0.55rem;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 0.55rem;
}

.faq-item.is-open .faq-icon::after {
  display: none;
}

.faq-panel {
  padding: 0 1.1rem 1.1rem;
}

.faq-panel p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
}

.faq-aside {
  background: var(--gray-100);
  padding: 1.5rem;
}

.faq-aside h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.faq-aside p {
  margin: 0 0 1rem;
  color: var(--gray-600);
}

.faq-aside .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.65rem;
}

.legal-content {
  max-width: 720px;
  padding-bottom: 3rem;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  color: var(--gray-600);
  line-height: 1.65;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

/* Lead conversion popup */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lead-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-popup[hidden] {
  display: none !important;
}

.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 42, 0.55);
}

.lead-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(11, 29, 42, 0.28);
  display: flex;
  flex-direction: column;
}

.lead-popup-content {
  padding: 1.15rem 1.25rem 1.1rem;
}

.lead-popup-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.lead-popup-avail {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a7a3e;
  flex: 1;
}

.lead-popup-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.lead-popup-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--gray-400);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.15rem;
}

.lead-popup-close:hover {
  color: var(--navy);
}

.lead-popup-dialog h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  color: var(--navy);
  line-height: 1.2;
}

.lead-popup-copy {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.lead-popup-trust {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.lead-popup-stars {
  letter-spacing: 0.05em;
  color: var(--gray-400);
}

.lead-popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lead-popup-form input {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
}

.lead-popup-form input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.lead-popup-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-weight: 700;
}

.lead-popup-btn-outline {
  background: var(--white);
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.lead-popup-btn-outline:hover {
  background: var(--blue-light);
  color: var(--blue);
  border-color: var(--blue);
}

.lead-popup-success {
  padding: 0.75rem 0 0.25rem;
  text-align: center;
}

.lead-popup-success strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.lead-popup-success p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.lead-popup-media {
  margin-top: auto;
  line-height: 0;
}

.lead-popup-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 0 0 16px 16px;
}

body.lead-popup-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .lead-popup-dialog {
    width: 100%;
  }

  .lead-popup-media img {
    height: 150px;
  }
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bundle-strip-actions {
    flex-direction: column;
  }

  .bundle-strip-actions .btn {
    width: 100%;
  }
}

/* SEO landing pages — not linked in main nav */
.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.seo-breadcrumb a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-breadcrumb a:hover {
  color: var(--yellow);
}

.seo-breadcrumb-sep {
  opacity: 0.6;
}

.seo-intro {
  padding: 3.5rem 0;
}

.seo-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.seo-intro h2 {
  margin: 0.5rem 0 1rem;
}

.seo-intro p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.seo-trust-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.seo-trust-card h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.seo-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.seo-check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.seo-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--yellow);
}

.seo-check-list--inline {
  margin: 1.25rem 0;
}

.seo-price-note {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

/* Commercial landing visuals */
.commercial-trust-visual {
  overflow: hidden;
  padding: 0;
}

.commercial-trust-img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin: 0;
}

.commercial-trust-visual h3,
.commercial-trust-visual .seo-check-list,
.commercial-trust-visual .seo-price-note {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.commercial-trust-visual h3 {
  margin-top: 1.25rem;
}

.commercial-trust-visual .seo-price-note {
  padding-bottom: 1.5rem;
}

.commercial-photo-band {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(78, 200, 255, 0.14), transparent 55%),
    var(--white);
}

.commercial-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.commercial-photo-item {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--navy);
  box-shadow: 0 8px 22px rgba(10, 21, 36, 0.1);
}

.commercial-photo-item img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.2);
  filter: blur(3.5px) brightness(0.68);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.commercial-photo-item:hover img {
  transform: scale(1.26);
  filter: blur(4px) brightness(0.58);
}

.commercial-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 0.9rem 1rem;
  background: linear-gradient(
    to top,
    rgba(10, 21, 36, 0.78) 0%,
    rgba(10, 21, 36, 0.28) 42%,
    rgba(10, 21, 36, 0.12) 100%
  );
  color: var(--white);
}

.commercial-photo-overlay h3 {
  margin: 0 0 0.7rem;
  color: var(--white);
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(0.72rem, 2vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.commercial-photo-overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.commercial-photo-overlay li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
}

.commercial-photo-overlay li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #4caf50;
  font-weight: 800;
  font-size: 0.85rem;
}

.commercial-services-visual {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
}

.commercial-service-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.commercial-service-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(10, 21, 36, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.commercial-service-tile img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.commercial-service-tile span {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 2.4rem 0.9rem 0.9rem;
  background: linear-gradient(to top, rgba(10, 21, 36, 0.9), transparent);
  display: grid;
  gap: 0.2rem;
}

.commercial-service-tile strong {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.commercial-service-tile em {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.commercial-service-tile:hover,
.commercial-service-tile:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(10, 21, 36, 0.18);
  outline: none;
}

.commercial-service-tile:hover img,
.commercial-service-tile:focus-visible img {
  transform: scale(1.05);
  filter: brightness(0.92);
}

@media (max-width: 900px) {
  .commercial-photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-service-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .commercial-photo-item {
    aspect-ratio: 4 / 5;
  }

  .commercial-trust-img {
    height: 140px;
  }
}

.commercial-quote-section {
  padding: 2.5rem 0 4rem;
  scroll-margin-top: 6rem;
  background: linear-gradient(180deg, var(--gray-50, #f8fafc) 0%, #fff 100%);
}

.commercial-quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.commercial-quote-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 1rem;
  padding: 1.75rem 1.75rem 2rem;
  box-shadow: 0 12px 40px rgba(10, 21, 36, 0.06);
}

.commercial-quote-form .booking-step-btn {
  width: 100%;
  margin-top: 0.5rem;
}

.commercial-quote-note {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--gray-600, #4b5563);
}

.commercial-quote-note a {
  color: var(--navy, #0a1524);
  font-weight: 600;
}

.commercial-quote-aside .sidebar-card {
  margin: 0;
}

@media (max-width: 900px) {
  .commercial-quote-layout {
    grid-template-columns: 1fr;
  }
}

.seo-price-badge {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.seo-price-badge strong {
  font-size: 2rem;
  color: var(--blue);
}

.seo-divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 1.25rem 0;
}

.seo-services {
  padding: 3rem 0 3.5rem;
}

.seo-service-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.seo-service-link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.seo-service-link:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.08);
}

.seo-service-link strong {
  color: var(--navy);
  font-family: var(--font-heading);
}

.seo-service-link span {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.seo-faq {
  padding: 3rem 0;
}

.seo-related {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--gray-200);
}

.seo-related-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.seo-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.seo-related-links a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.seo-related-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .seo-intro-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Brand rebrand: bubbles + mascot —— */
.bubble-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.bubble-float {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #fff 0%, var(--bubble) 42%, var(--bubble-deep) 100%);
  opacity: 0.55;
  box-shadow: inset -2px -3px 6px rgba(10, 21, 36, 0.18);
  animation: bubble-rise linear infinite;
}

.bubble-float:nth-child(1) { width: 14px; height: 14px; left: 8%; animation-duration: 11s; animation-delay: 0s; }
.bubble-float:nth-child(2) { width: 22px; height: 22px; left: 22%; animation-duration: 14s; animation-delay: -3s; }
.bubble-float:nth-child(3) { width: 10px; height: 10px; left: 48%; animation-duration: 10s; animation-delay: -6s; }
.bubble-float:nth-child(4) { width: 18px; height: 18px; left: 68%; animation-duration: 13s; animation-delay: -2s; }
.bubble-float:nth-child(5) { width: 12px; height: 12px; left: 84%; animation-duration: 12s; animation-delay: -8s; }
.bubble-float:nth-child(6) { width: 26px; height: 26px; left: 36%; animation-duration: 16s; animation-delay: -5s; opacity: 0.35; }

@keyframes bubble-rise {
  0% { transform: translateY(110%) scale(0.85); opacity: 0; }
  12% { opacity: 0.55; }
  100% { transform: translateY(-120vh) scale(1.05); opacity: 0; }
}

.klear-bubble {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  height: auto;
  opacity: 0.92;
}

.klear-bubble--sm { width: clamp(2.4rem, 6vw, 3.5rem); }
.klear-bubble--md { width: clamp(3.2rem, 8vw, 5rem); }
.klear-bubble--lg { width: clamp(4.5rem, 11vw, 7rem); }

.klear-bubble--tl { top: 0.75rem; left: 0.5rem; }
.klear-bubble--tr { top: 0.85rem; right: 0.65rem; }
.klear-bubble--bl { bottom: 0.85rem; left: 0.65rem; }
.klear-bubble--br { bottom: 0.75rem; right: 0.5rem; }

.klear-bubble--drift {
  animation: klear-bubble-drift 7s ease-in-out infinite;
}

.klear-bubble--drift-slow {
  animation: klear-bubble-drift 10s ease-in-out infinite reverse;
}

@keyframes klear-bubble-drift {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .klear-bubble--drift,
  .klear-bubble--drift-slow {
    animation: none !important;
  }
}

.hero-landing .klear-bubble {
  z-index: 3;
  opacity: 0.95;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}

.booking-brand .klear-bubble {
  position: absolute;
  right: -0.35rem;
  top: -0.55rem;
  width: 1.85rem;
  opacity: 0.95;
}

.page-hero .klear-bubble {
  z-index: 2;
  opacity: 0.9;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.mascot-strip .klear-bubble {
  z-index: 0;
  opacity: 0.7;
}

@media (max-width: 700px) {
  .klear-bubble--hide-mobile {
    display: none;
  }
}

.brand-mascot-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.brand-mascot {
  width: min(280px, 70vw);
  height: auto;
  background: transparent;
  border-radius: 0;
  filter: none;
  animation: mascot-float 4.2s ease-in-out infinite;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-jims-layout .hero-jims-block {
  position: relative;
}

.hero-brand-mascot {
  position: absolute;
  left: 1.5%;
  bottom: 0;
  z-index: 3;
  width: min(210px, 22vw);
  pointer-events: none;
  display: none;
}

.hero-brand-mascot img {
  width: 100%;
  height: auto;
  animation: mascot-float 4.2s ease-in-out infinite;
}

@media (min-width: 1100px) {
  .hero-brand-mascot {
    display: block;
  }
}

.mascot-strip {
  background: #ffffff;
  padding: 2.5rem 0 2.75rem;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.mascot-strip-inner {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 1rem 1.5rem;
  align-items: center;
}

.mascot-strip-copy .section-label {
  color: var(--blue);
}

.mascot-strip h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.mascot-strip p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  max-width: 36rem;
  font-size: 0.95rem;
}

.mascot-strip .brand-mascot-wrap {
  background: #ffffff;
  justify-content: center;
  align-items: center;
}

.mascot-strip .brand-mascot {
  width: 100%;
  max-width: 190px;
  background: #ffffff;
  display: block;
  animation: none;
}

@media (min-width: 701px) {
  .mascot-strip-inner {
    grid-template-columns: minmax(180px, 230px) 1fr;
    gap: 1.5rem 2rem;
  }

  .mascot-strip .brand-mascot {
    max-width: 220px;
  }
}

@media (max-width: 700px) {
  .mascot-strip-inner {
    grid-template-columns: 130px 1fr;
    text-align: left;
    justify-items: stretch;
    gap: 0.85rem 1rem;
  }

  .mascot-strip .brand-mascot {
    max-width: 130px;
  }

  .mascot-strip-copy .btn {
    width: 100%;
  }
}

.cta-banner .brand-mascot-wrap {
  display: none !important;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.site-footer img.logo-wordmark {
  height: 34px !important;
  max-width: 150px !important;
}

.footer-brand .logo-mark,
.footer-brand .logo-wordmark {
  animation: none;
}

.shimmer-btn {
  position: relative;
  overflow: hidden;
}

.shimmer-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.45) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: shimmer-sweep 3.5s ease-in-out infinite;
}

@keyframes shimmer-sweep {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

