
/* ─── RESET & VARS ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue:       #2757A6;
  --blue-dark:  #1D3F80;
  --blue-mid:   #3A528F;
  --blue-light: #D6E4F7;
  --blue-pale:  #EEF5FD;
  --orange:     #E8802A;
  --orange-lt:  #FDF0E3;
  --white:      #FFFFFF;
  --sky:        #F0F6FD;
  --text:       #1A2B45;
  --text-mid:   #4A607A;
  --text-lt:    #8099B4;
  --border:     #C8DAEA;
  --serif:      'DM Serif Display', serif;
  --sans:       'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── FLOATING BUBBLES ──────────────────────────────────────── */
.bubbles-wrap {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 0;
}
.bubble {
  position: absolute; border-radius: 50%;
  animation: floatBubble linear infinite;
  will-change: transform;
}
/* Blue bubbles — white highlight center, blue mid, soft edge */
.bubble-bw { background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.5) 20%, #D6E4F7 55%, rgba(39,87,166,.12) 100%); }
/* Orange bubbles — white specular center, lighter orange mid-ring, white/transparent edge */
.bubble-bo { background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.55) 18%, rgba(232,128,42,.32) 55%, rgba(255,255,255,.35) 100%); }
/* Dark bg orange bubble — warm cream/peach tint, won't muddy against blue */
.bubble-dark-o { background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.85) 0%, rgba(255,240,220,.6) 25%, rgba(255,200,140,.25) 60%, rgba(255,255,255,.05) 100%); }
/* Pure soft blue */
.bubble-bl { background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.5) 18%, rgba(198,220,247,.65) 55%, rgba(39,87,166,.1) 100%); }

@keyframes floatBubble {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(var(--dx1), var(--dy1)) scale(var(--s1)); }
  50%  { transform: translate(var(--dx2), var(--dy2)) scale(var(--s2)); }
  75%  { transform: translate(var(--dx3), var(--dy3)) scale(var(--s1)); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Each section gets its own bubble set */
.has-bubbles { position: relative; }

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  border-radius: 100px; padding: 13px 28px; border: none;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .25s; white-space: nowrap;
  letter-spacing: .01em;
}
/* Primary orange – shimmer + lift */
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.38), transparent);
  transition: left .55s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,128,42,.42); }
.btn-primary:hover::after { left: 140%; }
.btn-primary:active { transform: none; }
/* Outline white – fill from bottom */
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.6); z-index: 0; transition: color .3s, transform .2s;
}
.btn-outline-white::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 0; background: #fff; transition: height .3s ease; z-index: -1;
}
.btn-outline-white:hover { color: var(--blue); transform: translateY(-2px); }
.btn-outline-white:hover::before { height: 100%; }
/* Outline blue – fill from bottom */
.btn-outline-blue {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue); z-index: 0; transition: color .3s, transform .2s;
}
.btn-outline-blue::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 0; background: var(--blue); transition: height .3s ease; z-index: -1;
}
.btn-outline-blue:hover { color: #fff; transform: translateY(-2px); }
.btn-outline-blue:hover::before { height: 100%; }
/* Ghost */
.btn-ghost {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: background .25s, border-color .25s, transform .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.55); transform: translateY(-2px); }

/* ─── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(23,45,90,.2);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .4s, border-color .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 28px rgba(39,87,166,.1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo-img { height: 52px; width: auto; transition: opacity .2s; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.9);
  transition: color .2s; position: relative; letter-spacing: .01em;
}
nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width .25s;
}
.nav-links a:hover { color: var(--white); }
nav.scrolled .nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-phone {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
  transition: color .2s;
}
nav.scrolled .nav-phone { color: var(--blue); }
.nav-phone:hover { color: var(--orange) !important; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 82vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('https://res.cloudinary.com/dgrurlr01/image/upload/f_auto,q_auto/Cleaning_Banner_AdobeStock_196301210_pahv7h') 50% center / auto 110% no-repeat;
  animation: heroSway 80s ease-in-out infinite alternate;
  animation-delay: -40s;
  will-change: background-position;
}
@keyframes heroSway {
  from { background-position: 15% center; }
  to   { background-position: 85% center; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(23,45,90,.88) 0%,
    rgba(27,55,110,.75) 45%,
    rgba(39,87,166,.35) 100%
  );
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 120px 32px 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-left { max-width: 660px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(232,128,42,.2); color: var(--orange);
  border: 1px solid rgba(232,128,42,.35);
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 100px;
  padding: 6px 14px; margin-bottom: 24px;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 62px);
  color: #fff; line-height: 1.1; margin-bottom: 22px;
}
.hero-h1 em { color: var(--orange); font-style: italic; }
.hero-sub {
  font-size: 17px; font-weight: 300; color: rgba(255,255,255,.8);
  line-height: 1.75; margin-bottom: 32px; max-width: 570px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.55);
}
.hero-trust-sep { color: rgba(255,255,255,.2); }
.hero-trust .stars { color: var(--orange); letter-spacing: 1px; }

/* Hero right card */
.hero-card {
  background: var(--blue);
  border-radius: 20px; padding: 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.hero-card-label { display: none; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.stat-item {
  padding: 14px 16px; background: rgba(255,255,255,.1);
  border-radius: 10px; border: 1px solid rgba(255,255,255,.15);
}
.stat-num {
  font-family: var(--serif); font-size: 38px; color: var(--orange);
  line-height: 1; margin-bottom: 4px;
}
/* Thicker + sign */
.stat-num .plus { font-family: var(--sans); font-weight: 700; font-size: 28px; vertical-align: middle; }
/* Star same cap-height as the number */
.stat-num .star { font-size: 34px; vertical-align: baseline; line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 400; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.badge { font-size: 11px; font-weight: 600; border-radius: 100px; padding: 4px 12px; }
.badge-1 { background: var(--orange-lt); color: var(--orange); }
.badge-2 { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.badge-3 { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.badge-4 { background: var(--orange-lt); color: var(--orange); }

/* VIDEO NOTE */
.video-note {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.5); color: rgba(255,255,255,.6);
  font-size: 11px; font-weight: 500; letter-spacing: .06em;
  padding: 6px 16px; border-radius: 100px; z-index: 2;
  border: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}

/* ─── CLIENTS BAR ───────────────────────────────────────────── */
.clients-bar { background: var(--blue); padding: 20px 32px; }
.clients-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between;
}
.clients-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); white-space: nowrap; }
.clients-list { display: flex; gap: 16px; flex-wrap: nowrap; align-items: center; }
.client-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: .03em;
  color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
.client-item::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.clients-bar-cta { font-size: 13px; font-weight: 600; color: var(--orange); white-space: nowrap; cursor: pointer; transition: color .2s; }
.clients-bar-cta:hover { color: #fff; }

/* ─── SHARED SECTION ────────────────────────────────────────── */
section { padding: 88px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.section-h2 { font-family: var(--serif); font-size: clamp(30px, 4vw, 46px); color: var(--blue); line-height: 1.1; margin-bottom: 16px; }
.section-h2 em { color: var(--orange); font-style: italic; }
.section-sub { font-size: 16px; font-weight: 300; color: var(--text-mid); line-height: 1.7; max-width: 520px; }

/* ─── SERVICES ──────────────────────────────────────────────── */
.services { background: var(--white); }
.services .section-inner { position: relative; z-index: 1; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 20px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  border-radius: 18px; padding: 28px 24px;
  border: 1px solid var(--border); background: var(--sky);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(39,87,166,.25); border-color: var(--blue); background: var(--blue); }
.svc-icon { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.svc-icon img { width: 80px; height: 80px; object-fit: contain; }
.svc-icon-o { background: none; }
.svc-icon-b { background: none; }
.svc-icon-w { background: none; }
.svc-name { font-family: var(--serif); font-size: 20px; transition: color .3s; }
.service-card .svc-name { color: var(--blue); }
.service-card:hover .svc-name { color: #fff; }
.svc-sub { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: color .3s; }
.service-card .svc-sub { color: var(--text-lt); }
.service-card:hover .svc-sub { color: rgba(255,255,255,.55); }
.svc-desc { font-size: 13px; font-weight: 300; line-height: 1.65; flex: 1; transition: color .3s; }
.service-card .svc-desc { color: var(--text-mid); }
.service-card:hover .svc-desc { color: rgba(255,255,255,.75); }
.svc-link { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 5px; margin-top: 4px; transition: gap .2s, color .3s; }
.service-card .svc-link { color: var(--blue); }
.service-card:hover .svc-link { color: var(--orange); }
.service-card:hover .svc-link { gap: 10px; }

/* ─── TRUST STRIP ───────────────────────────────────────────── */
/* ─── PROPS BAR ──────────────────────────────────────────────── */
.props-bar {
  background: var(--sky); padding: 44px 32px;
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
/* Props bar — diagonal left-to-right colour sweep, slow + soft */
.props-bar {
  background: linear-gradient(120deg,
    #2757A6 0%,
    #2757A6 8%,
    #F0F6FD 92%,
    #F0F6FD 100%
  );
  background-size: 300% 100%;
  animation: propsSweepBg 16s ease-in-out infinite alternate;
}
@keyframes propsSweepBg {
  from { background-position: 100% 0; }
  to   { background-position: 0%   0; }
}
/* Stagger text colour — cascade follows the sweep */
.prop-item:nth-child(1) .prop-text h4,
.prop-item:nth-child(1) .prop-text p { animation-delay: 0s; }
.prop-item:nth-child(2) .prop-text h4,
.prop-item:nth-child(2) .prop-text p { animation-delay: 2s; }
.prop-item:nth-child(3) .prop-text h4,
.prop-item:nth-child(3) .prop-text p { animation-delay: 4s; }
.prop-item:nth-child(4) .prop-text h4,
.prop-item:nth-child(4) .prop-text p { animation-delay: 6s; }
.prop-text h4 { animation: propsH4 16s ease-in-out infinite alternate; }
.prop-text p  { animation: propsP  16s ease-in-out infinite alternate; }
@keyframes propsH4 {
  0%   { color: #2757A6; }
  100% { color: #ffffff; }
}
@keyframes propsP {
  0%   { color: #4A607A; }
  100% { color: rgba(255,255,255,.8); }
}

.props-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 1; }
.prop-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.prop-icon { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.prop-icon img { width: 72px; height: 72px; object-fit: contain; }
.prop-text h4 { font-family: var(--serif); font-size: 17px; color: var(--blue); margin-bottom: 4px; }
.prop-text p { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.5; }

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about { background: var(--orange); }
.about .section-inner { position: relative; z-index: 1; }
.about .eyebrow { color: #fff; }
.about .section-h2 { color: #fff; }
.about .section-h2 em { color: var(--blue); }
.about .section-sub { color: rgba(255,255,255,.85); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* Mission card — text left, John right pinned to bottom */
.mission-card {
  background: var(--blue); border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 210px;
  overflow: visible;
}
.mission-content { padding: 36px 28px; display: flex; flex-direction: column; background: var(--blue); border-radius: 22px 0 0 22px; overflow: hidden; position: relative; z-index: 1; }
.mission-label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.mission-text {
  font-family: var(--sans); font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,.88); line-height: 1.8;
}
.mission-word {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--orange);
}
.mission-photo-col {
  display: flex; flex-direction: column; justify-content: flex-start;
  overflow: visible;
  padding: 32px 28px 0 0;
  position: relative; z-index: 2;
}
.mission-photo-col img {
  width: 100%; display: block;
  border-bottom: 2px solid var(--orange);
  transform-origin: bottom right;
  transition: transform .4s ease;
}
.mission-photo-col:hover img {
  transform: scale(1.08);
}
.mission-photo-credit { padding: 10px 0 0; background: none; text-align: right; }
.mission-john-name { font-family: var(--serif); font-size: 15px; color: #fff; line-height: 1.2; }
.mission-john-title { font-size: 11px; font-weight: 400; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ─── SQUEEGEE BAND ─────────────────────────────────────────── */
.squeegee-band {
  height: 185px; position: relative; overflow: hidden;
  /* Dirty glass: steamy, foggy, grimy */
  background:
    radial-gradient(ellipse at 15% 60%, rgba(255,255,255,.22) 0%, transparent 30%),
    radial-gradient(ellipse at 40% 25%, rgba(255,255,255,.14) 0%, transparent 25%),
    radial-gradient(ellipse at 75% 70%, rgba(255,255,255,.18) 0%, transparent 28%),
    radial-gradient(ellipse at 90% 40%, rgba(255,255,255,.12) 0%, transparent 20%),
    linear-gradient(175deg,
      #8a9da8 0%, #9eb0ba 15%, #b2c2ca 30%,
      #a8b8c2 45%, #96a8b4 60%, #a4b4be 75%,
      #8e9fa8 100%
    );
  cursor: default;
}
/* The "cleaned" side that grows from left */
.squeegee-clean {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0%;
  overflow: hidden;
  /* Silver metallic base */
  background: linear-gradient(
    160deg,
    #b8c6d0 0%, #ccd8e2 18%, #dde7ed 32%,
    #edf3f6 44%, #f5f8fa 50%,
    #edf3f6 56%, #dde7ed 68%, #ccd8e2 82%, #b8c6d0 100%
  );
  will-change: width;
}
/* Animated shimmer sweep over silver */
.squeegee-clean::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%, transparent 25%,
    rgba(255,255,255,.0) 35%,
    rgba(255,255,255,.45) 48%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.45) 52%,
    rgba(255,255,255,.0) 65%,
    transparent 75%, transparent 100%
  );
  background-size: 200% 100%;
  animation: silverSheen 4s ease-in-out infinite alternate;
}
/* Subtle horizontal streaks */
.squeegee-clean::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 35%, rgba(255,255,255,.2) 36%, rgba(255,255,255,.2) 38%, transparent 39%),
    linear-gradient(transparent 55%, rgba(180,200,215,.15) 56%, rgba(180,200,215,.15) 58%, transparent 59%),
    linear-gradient(transparent 70%, rgba(255,255,255,.18) 71%, rgba(255,255,255,.18) 73%, transparent 74%);
  pointer-events: none;
}
@keyframes silverSheen {
  from { background-position: 100% 0; }
  to   { background-position: 0%   0; }
}
/* Tagline in the clean area */
.squeegee-tagline {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; z-index: 5;
  font-family: var(--sans); font-style: normal; font-weight: 700;
  font-size: 28px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--orange); opacity: 0;
  text-shadow: 0 1px 8px rgba(255,255,255,.8);
  transition: opacity .5s ease;
  pointer-events: none;
}
.squeegee-tagline.visible { opacity: 1; }
/* The squeegee tool */
.squeegee-tool {
  position: absolute; top: 0; left: -220px;
  z-index: 4; will-change: left;
  height: 100%; width: auto;
  filter: drop-shadow(2px 4px 8px rgba(0,0,0,.25));
}

/* ─── REVIEWS CAROUSEL ──────────────────────────────────────── */
.reviews { background: var(--sky); }
.reviews .section-inner { position: relative; z-index: 1; }
.reviews-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px; flex-wrap: wrap; gap: 16px;
}
.carousel-arrows { display: flex; gap: 10px; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  color: var(--blue); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  flex-shrink: 0;
}
.carousel-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: scale(1.08); }
.carousel-btn:disabled { opacity: .35; cursor: default; transform: none; }
.carousel-viewport { overflow: hidden; padding-top: 8px; margin-top: -8px; }
.carousel-track {
  display: flex; gap: 18px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  background: var(--white); border-radius: 18px; padding: 28px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .8s ease, border-color .8s ease, box-shadow .8s ease, transform .25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(39,87,166,.1); }
.review-card.featured { background: var(--blue); border-color: var(--blue); }
.review-quote-mark {
  font-family: var(--serif); font-size: 72px; line-height: 1;
  position: absolute; top: 8px; right: 18px;
  transition: color .8s ease;
}
.review-card:not(.featured) .review-quote-mark { color: var(--blue-light); }
.review-card.featured .review-quote-mark { color: rgba(255,255,255,.12); }
.stars { color: var(--orange); font-size: 13px; letter-spacing: 2px; }
.review-text { font-size: 14px; font-weight: 300; line-height: 1.7; font-style: italic; flex: 1; position: relative; z-index: 1; transition: color .8s ease; }
.review-card:not(.featured) .review-text { color: var(--text-mid); }
.review-card.featured .review-text { color: rgba(255,255,255,.85); }
.reviewer-row { margin-top: auto; }
.reviewer-name { font-size: 13px; font-weight: 600; transition: color .8s ease; }
.review-card:not(.featured) .reviewer-name { color: var(--text); }
.review-card.featured .reviewer-name { color: #fff; }
.review-source { font-size: 11px; font-weight: 400; margin-top: 2px; transition: color .8s ease; }
.review-card:not(.featured) .review-source { color: var(--text-lt); }
.review-card.featured .review-source { color: rgba(255,255,255,.45); }
/* Dots */
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 28px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background .25s, transform .25s; padding: 0;
}
.carousel-dot.active { background: var(--orange); transform: scale(1.3); }

/* ─── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(130deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-mid) 100%);
  padding: 96px 32px; position: relative; overflow: hidden;
}
/* Bubbles on dark bg use white/orange tints */
/* Dark bg white bubble */
.bubble-dark-w { background: radial-gradient(circle at 38% 38%, rgba(255,255,255,.18) 0%, rgba(255,255,255,.08) 50%, rgba(255,255,255,.02) 100%); }
.cta-inner {
  max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.cta-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.cta-h2 { font-family: var(--serif); font-size: clamp(34px, 5vw, 52px); color: #fff; line-height: 1.1; margin-bottom: 18px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-h2 em { color: var(--orange); font-style: italic; }
.cta-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.62); line-height: 1.7; margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-perks { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.cta-perk { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 6px; }
.cta-perk::before { content: '✓'; color: var(--orange); font-weight: 700; }

/* ─── GALLERY ───────────────────────────────────────────────── */
.gallery { background: var(--white); padding: 88px 32px; }
.gallery .section-inner { position: relative; z-index: 1; }
.gallery .section-inner { position: relative; z-index: 1; }
.gallery-header { margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.gallery-item {
  border-radius: 16px; overflow: hidden; position: relative;
  background: var(--sky);
  transition: transform .3s, box-shadow .3s;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 16px 48px rgba(39,87,166,.15); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px 14px;
  background: linear-gradient(to top, rgba(23,45,90,.7) 0%, transparent 100%);
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.85);
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ─── CTA FORM ──────────────────────────────────────────────── */
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  width: 100%; max-width: 760px; margin: 0 auto;
}
.cta-input {
  padding: 13px 18px; width: 100%;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 100px; color: #fff; font-family: var(--sans); font-size: 14px;
  outline: none; transition: border-color .25s, background .25s;
  box-sizing: border-box;
}
.cta-input::placeholder { color: rgba(255,255,255,.45); }
.cta-input:focus { border-color: var(--orange); background: rgba(255,255,255,.18); }
/* Textarea spans first two columns — right edge aligns with email input */
.cta-input-wide {
  grid-column: span 2;
  border-radius: 22px;
  height: 88px; padding: 16px 20px;
  resize: none; align-self: stretch;
}
/* Button takes third column — same width as phone input above */
.cta-submit {
  grid-column: 3;
  width: 100%; align-self: end;
  border-radius: 100px;
}
.cta-form-msg {
  grid-column: span 3;
  text-align: center; font-size: 14px; font-weight: 500;
  padding: 10px; border-radius: 8px;
}
.cta-form-msg.success { background: rgba(255,255,255,.15); color: #fff; }
.cta-form-msg.error { background: rgba(232,128,42,.3); color: #fff; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer { background: var(--text); padding: 60px 32px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 24px;
}
.footer-logo img { height: 52px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.5; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-contact a:hover { color: var(--orange); }
.footer-col-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-legal { font-size: 11px; color: rgba(255,255,255,.25); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.45);
  transition: background .2s, color .2s, border-color .2s;
}
.social-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.footer-credit { font-size: 11px; color: rgba(255,255,255,.2); }
.footer-credit a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-credit a:hover { color: var(--orange); }



/* ─── SPLIT GRID — image offset in top-aligned grids ───────────── */
/* Pushes image top down to align with h2, past the eyebrow label  */
.split-grid.top .split-img {
  margin-top: 62px;
}

/* ─── TRUST BAR — animated sweep, reusable across all pages ──────── */
.trust-bar {
  background: linear-gradient(120deg,
    #2757A6 0%, #2757A6 8%,
    #F0F6FD 92%, #F0F6FD 100%
  );
  background-size: 300% 100%;
  animation: trustSweepBg 16s ease-in-out infinite alternate;
}
@keyframes trustSweepBg {
  from { background-position: 100% 0; }
  to   { background-position: 0%   0; }
}
.trust-bar .why-title {
  font-family: var(--serif); font-size: 17px; color: var(--blue);
  animation: trustH4 16s ease-in-out infinite alternate;
}
.trust-bar .why-desc {
  font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.55;
  animation: trustP 16s ease-in-out infinite alternate;
}
@keyframes trustH4 {
  0%   { color: #2757A6; }
  100% { color: #fff; }
}
@keyframes trustP {
  0%   { color: #4A607A; }
  100% { color: rgba(255,255,255,.8); }
}
.trust-bar .why-item:nth-child(1) .why-title,
.trust-bar .why-item:nth-child(1) .why-desc { animation-delay: 0s; }
.trust-bar .why-item:nth-child(2) .why-title,
.trust-bar .why-item:nth-child(2) .why-desc { animation-delay: 2s; }
.trust-bar .why-item:nth-child(3) .why-title,
.trust-bar .why-item:nth-child(3) .why-desc { animation-delay: 4s; }
.trust-bar .why-item:nth-child(4) .why-title,
.trust-bar .why-item:nth-child(4) .why-desc { animation-delay: 6s; }
.trust-bar .why-icon img { width: 64px; height: 64px; object-fit: contain; }


/* ═══════════════════════════════════════════════════════
   SOCIAL BRAND COLORS
   ═══════════════════════════════════════════════════════ */
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-hamburger { display: none; background: none; border: none; padding: 6px; cursor: pointer; flex-direction: column; gap: 5px; flex-shrink: 0; align-items: center; justify-content: center; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 0; transition: transform .3s ease, opacity .3s ease; transform-origin: center; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
nav.scrolled .nav-hamburger span { background: var(--blue); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); border-radius: 0; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); border-radius: 0; }
.mobile-only-item { display: none; }
a.social-btn[href*="facebook"]  { background: #1877F2; border-color: #1877F2; color: #fff; }
a.social-btn[href*="instagram"] { background: #E1306C; border-color: #E1306C; color: #fff; }
a.social-btn[href*="linkedin"]  { background: #0A66C2; border-color: #0A66C2; color: #fff; }
a.social-btn[href*="yelp"]      { background: #FF1A1A; border-color: #FF1A1A; color: #fff; }
a.social-btn[href*="facebook"]:hover  { background: #0d6efd; border-color: #0d6efd; }
a.social-btn[href*="instagram"]:hover { background: #c1175a; border-color: #c1175a; }
a.social-btn[href*="linkedin"]:hover  { background: #084fa3; border-color: #084fa3; }
a.social-btn[href*="yelp"]:hover      { background: #cc0000; border-color: #cc0000; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; flex-wrap: wrap; justify-content: center; }

/* ═══════════════════════════════════════════════════════
   TABLET (max-width: 900px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-badges { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .props-inner { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .mission-card { grid-template-columns: 1fr; }
  .mission-content { border-radius: 22px 22px 0 0; }
  .mission-photo-col { border-radius: 0 0 22px 22px; min-height: 220px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  .split-grid .split-img { margin-top: 0 !important; }
  .split-grid .split-copy { padding-right: 0 !important; }
  .john-inner { grid-template-columns: 1fr; }
  .john-video-wrap { margin-top: 0 !important; }
  .panels-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE (max-width: 640px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* Global overflow fix */
  html, body { max-width: 100vw !important; overflow-x: hidden !important; }
  * { box-sizing: border-box !important; }
  .carousel-viewport { overflow: hidden !important; width: 100% !important; }
  .carousel-track { overflow: visible; }
  .review-card { min-width: calc(100vw - 40px) !important; max-width: calc(100vw - 40px) !important; width: calc(100vw - 40px) !important; }
  section, .section-inner { max-width: 100vw !important; overflow: visible; }

  /* Portal */
  #portalBtn { display: none !important; }

  /* Nav */
  #navbar { padding: 0 16px; }
  .nav-inner { height: 60px; }
  .nav-logo-img { height: 30px !important; width: auto !important; }
  .nav-right { gap: 8px; }
  .nav-phone { font-size: 12px; }
  .nav-cta { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .mobile-only-item { display: block !important; }

  /* Full-screen nav overlay */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(15,28,65,.98);
    padding: 16px 0 40px;
    z-index: 9000;
    overflow-y: auto;
    list-style: none;
  }
  .nav-links.open { display: flex; height: auto !important; min-height: 100vh; }
  .nav-links > li > a {
    display: block;
    padding: 15px 24px;
    font-size: 16px;
    color: rgba(255,255,255,.85);
    border-bottom: 1px solid rgba(255,255,255,.07);
    text-decoration: none;
  }
  .nav-links a::after { display: none !important; }

  /* Dropdown — always visible inside open mobile menu */
  .nav-dropdown-menu {
    display: block !important;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(255,255,255,.05) !important;
    padding: 0 !important;
    min-width: unset !important;
  }
  .nav-dropdown-menu::before { display: none !important; }
  .nav-dropdown-inner {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    min-width: unset !important;
  }
  .nav-dropdown-inner li { display: block !important; }
  .nav-dropdown-menu li a {
    padding: 12px 24px 12px 44px !important;
    font-size: 14px !important;
    color: rgba(255,255,255,.65) !important;
    white-space: normal !important;
    border-bottom: 1px solid rgba(255,255,255,.04) !important;
  }
  .nav-caret { display: none; }

  /* Hamburger animation */
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero-inner { padding: 90px 20px 56px; grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-btns a, .hero-btns button { width: 100%; text-align: center; box-sizing: border-box; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { justify-content: center; }

  /* Page heroes */
  .page-hero { padding: 100px 20px 60px !important; min-height: auto !important; height: auto !important; align-items: flex-start !important; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 36px); }
  .page-hero-content { padding: 0 16px 20px !important; }
  .page-hero-btns { flex-direction: column !important; align-items: center !important; gap: 10px !important; padding-bottom: 16px !important; }
  .page-hero-btns a, .page-hero-btns button { width: 100% !important; text-align: center !important; box-sizing: border-box !important; }
  .page-hero-img { background-size: cover !important; }
  @keyframes heroSwayMobile { from { background-position: 30% center; } to { background-position: 70% center; } }
  .page-hero-img { animation: heroSwayMobile 20s ease-in-out infinite alternate !important; }

  /* Sections */
  .section-inner { padding: 0 20px; }
  section { padding: 52px 0; }
  .section-h2 { font-size: clamp(24px, 6vw, 34px); }
  .section-sub { font-size: 15px; }

  /* Clients bar */
  .clients-bar-inner { flex-direction: column; gap: 10px; align-items: flex-start; }
  .clients-bar-cta { display: none; }
  .clients-list { flex-wrap: wrap; gap: 8px 14px; }

  /* Services — single column */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Props */
  .props-inner { grid-template-columns: 1fr 1fr; gap: 18px; }

  /* Mission */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .mission-card { grid-template-columns: 1fr; }
  .mission-content { border-radius: 22px 22px 0 0; padding: 28px 20px; }
  .mission-photo-col { min-height: 180px; border-radius: 0 0 22px 22px; padding-bottom: 16px; }

  /* John section */
  .john-inner { grid-template-columns: 1fr; gap: 28px; }
  .john-video-wrap { margin-top: 0 !important; order: 2; max-width: 80%; margin-left: auto; margin-right: auto; }
  .john-copy { order: 1; }

  /* Reviews */
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .carousel-arrows { display: none; }
  .reviews { overflow: hidden !important; }
  .carousel-viewport { overflow: hidden !important; width: 100% !important; max-width: 100vw !important; }
  .review-card { min-width: calc(100vw - 48px) !important; max-width: calc(100vw - 48px) !important; width: calc(100vw - 48px) !important; }

  /* Squeegee */
  .squeegee-band { overflow: hidden; height: 100px !important; }
  .squeegee-tagline { font-size: 16px !important; letter-spacing: .15em !important; }
  .squeegee-tool { height: 100% !important; max-height: 100px !important; }

  /* Split grids */
  .split-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .split-grid .split-img { margin-top: 0 !important; order: -1; }
  .split-grid .split-copy { padding-right: 0 !important; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Panels */
  .panels-grid { grid-template-columns: 1fr !important; }
  .panel-items { grid-template-columns: 1fr !important; }

  /* Before/after */
  .ba-grid { grid-template-columns: 1fr; gap: 14px; }

  /* CTA band — single column form */
  .cta-band { padding: 64px 20px !important; }
  .cta-inner { max-width: 100% !important; }
  .cta-form { display: flex !important; flex-direction: column !important; gap: 10px !important; width: 100% !important; max-width: 100% !important; }
  .cta-input { width: 100% !important; box-sizing: border-box !important; min-width: 0 !important; }
  .cta-btns { flex-direction: column !important; align-items: stretch !important; }
  .cta-btns a, .cta-btns button { text-align: center !important; width: 100% !important; box-sizing: border-box !important; }
  .cta-perks { flex-direction: column !important; align-items: center !important; gap: 8px !important; }

  /* Footer — single column */
  footer { padding: 28px 20px 20px !important; }
  .footer-inner { padding: 0 !important; box-sizing: border-box; overflow: hidden; }
  .footer-top { padding-bottom: 28px !important; margin-bottom: 20px !important; }
  .footer-cols { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-top { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-top { margin-bottom: 28px !important; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; padding-top: 8px !important; margin-top: 8px !important; }
  .footer-social { justify-content: center; }

  /* Contact */
  .reach-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .form-grid { grid-template-columns: 1fr !important; }
  .form-group.full { grid-column: span 1 !important; }

  /* Apply */
  .fit-grid { grid-template-columns: 1fr !important; }
  .fit-img-wrap { display: none !important; }
  .compare-table { font-size: 12px; }
  .compare-table thead th { padding: 12px 10px; font-size: 14px; }
  .compare-table tbody td { padding: 10px 8px; }
  .values-grid { grid-template-columns: 1fr 1fr !important; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr !important; }
  .faq-jene-col { display: none !important; }

  /* Apply */
  .fit-layout { grid-template-columns: 1fr !important; }
  .apply-grid { grid-template-columns: 1fr !important; }
  .values-grid { grid-template-columns: 1fr !important; }

  /* Why grid — single column */
  /* why-grid — always 2 columns on mobile */
  .why-grid { grid-template-columns: 1fr 1fr !important; }

  /* Media */
  .media-grid { grid-template-columns: 1fr !important; }
}
