/* ============================================================
   HOUSE CLEANING SASKATOON — site.css
   Modern, mobile-first design
============================================================ */

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

:root {
  /* === Refined Premium Palette === */
  --primary:    #0f5fa3;
  --primary-dk: #0a4a82;
  --primary-lt: #e6f0fa;
  --primary-glow: rgba(15, 95, 163, .15);

  --accent:     #f59e0b;
  --accent-dk:  #d97706;
  --accent-lt:  #fef3c7;

  --gold:       #d4a017;
  --teal:       #14b8a6;
  --green:      #10b981;
  --rose:       #f43f5e;

  --dark:       #0f172a;
  --dark-2:     #1e293b;
  --dark-3:     #334155;
  --mid:        #64748b;
  --mid-2:      #94a3b8;
  --light:      #f8fafc;
  --light-2:    #f1f5f9;
  --white:      #ffffff;
  --border:     #e2e8f0;
  --border-2:   #cbd5e1;

  /* === Premium Shadows (soft + layered) === */
  --shadow-xs:  0 1px 2px rgba(15, 23, 42, .04);
  --shadow-sm:  0 2px 4px rgba(15, 23, 42, .04), 0 1px 2px rgba(15, 23, 42, .03);
  --shadow-md:  0 4px 6px rgba(15, 23, 42, .04), 0 10px 20px rgba(15, 23, 42, .06);
  --shadow-lg:  0 10px 15px rgba(15, 23, 42, .05), 0 25px 50px rgba(15, 23, 42, .10);
  --shadow-xl:  0 20px 25px rgba(15, 23, 42, .08), 0 40px 80px rgba(15, 23, 42, .15);
  --shadow-glow: 0 0 0 1px var(--primary-glow), 0 20px 40px var(--primary-glow);

  /* === Gradients === */
  --gradient-primary: linear-gradient(135deg, #0f5fa3 0%, #0a4a82 100%);
  --gradient-primary-soft: linear-gradient(135deg, #1a6fb5 0%, #0f5fa3 50%, #0a4a82 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 30, 60, .85) 0%, rgba(15, 95, 163, .75) 50%, rgba(10, 60, 110, .85) 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

  /* === Geometry === */
  --radius-xs:  6px;
  --radius:     12px;
  --radius-md:  16px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: .2s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: .6s cubic-bezier(.4, 0, .2, 1);
  --bounce: cubic-bezier(.34, 1.56, .64, 1);

  --header-h:   76px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--dark-2);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--primary); color: var(--white); }
::-moz-selection { background: var(--primary); color: var(--white); }

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.75rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }

/* ── Buttons (premium pill-style with smooth hover) ──────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: .01em;
  overflow: hidden;
  isolation: isolate;
}
.btn i { font-size: .9em; transition: transform var(--transition); }
.btn:hover i { transform: translateX(2px); }
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
  z-index: -1;
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: var(--gradient-accent);
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(245, 158, 11, .35), 0 1px 3px rgba(0,0,0,.08);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, .45), 0 4px 8px rgba(0,0,0,.1);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px var(--primary-glow);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--primary-lt);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-google {
  background: #fff;
  color: #4285F4;
  border: 2px solid #4285F4;
  font-weight: 700;
}
.btn-google:hover {
  background: #4285F4;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66,133,244,.3);
}

.btn-full { width: 100%; justify-content: center; }

/* Section tag pill - refined */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--primary-lt);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(15, 95, 163, .15);
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.section-tag.light {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.section-tag.light::before { background: var(--accent); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2.75rem, 5.5vw, 4.5rem);
}
.section-header h2 {
  margin-block: .65rem 1.1rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  color: var(--mid);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

/* ── Scroll-reveal animations ────────────────────────────── */
.reveal, .fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible, .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PROMO BAR ───────────────────────────────────────────── */
.promo-bar {
  background: linear-gradient(90deg, #fbbf24 0%, var(--accent) 50%, #fbbf24 100%);
  background-size: 200% 100%;
  animation: shimmer-bg 8s ease-in-out infinite;
  color: var(--dark);
  font-size: .85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 12px rgba(245, 158, 11, .2);
}
@keyframes shimmer-bg {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.promo-bar.hidden { display: none; }
.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .55rem 0;
  flex-wrap: wrap;
}
.promo-text { display: inline-flex; align-items: center; gap: .5rem; }
.promo-text i { color: var(--primary); }
.promo-cta {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--dark);
  color: var(--accent);
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  transition: var(--transition);
}
.promo-cta:hover { background: var(--primary); color: var(--white); }
.promo-close {
  background: none; border: none;
  color: var(--dark);
  font-size: .95rem;
  cursor: pointer;
  padding: .2rem .4rem;
  opacity: .55;
  transition: opacity var(--transition);
}
.promo-close:hover { opacity: 1; }

/* When promo is visible, push header down */
.promo-bar:not(.hidden) ~ .site-header { top: 38px; }
.promo-bar:not(.hidden) ~ .hero { padding-top: calc(var(--header-h) + 38px); }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, .6);
  z-index: 1000;
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 4px 20px rgba(15, 23, 42, .06);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}
.logo-icon {
  width: 42px; height: 42px;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 95, 163, .3);
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,.2) 50%, transparent 70%);
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: rotate(0deg) translateX(-100%); }
  50% { transform: rotate(0deg) translateX(100%); }
}
.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.05); transition: transform var(--transition); }
.logo strong { color: var(--primary); }

.main-nav { margin-inline: auto; }
.main-nav ul {
  display: flex;
  gap: .25rem;
}
.main-nav a {
  padding: .4rem .75rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark-2);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover {
  background: var(--primary-lt);
  color: var(--primary);
}

.header-cta { display: flex; gap: .6rem; flex-shrink: 0; }

.btn-outline-header {
  padding: .5rem 1.1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex; align-items: center; gap: .4rem;
  transition: var(--transition);
}
.btn-outline-header:hover { background: var(--primary); color: #fff; }

.btn-primary-header {
  padding: .5rem 1.1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--dark);
  display: flex; align-items: center; gap: .4rem;
  transition: var(--transition);
}
.btn-primary-header:hover { background: var(--accent-dk); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (premium) ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background:
    linear-gradient(135deg, rgba(10, 30, 60, .88) 0%, rgba(15, 95, 163, .72) 50%, rgba(10, 60, 110, .88) 100%),
    url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?w=1600&q=85') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

/* Floating decorative shapes */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  pointer-events: none;
  animation: float-shape 20s ease-in-out infinite;
}
.hero::before {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -150px; right: -100px;
  opacity: .15;
}
.hero::after {
  width: 600px; height: 600px;
  background: var(--primary);
  bottom: -200px; left: -150px;
  opacity: .25;
  animation-delay: -10s;
}
@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.05); }
  66%      { transform: translate(-30px, 30px) scale(.95); }
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(245, 158, 11, .12) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(15, 95, 163, .25) 0%, transparent 60%);
  pointer-events: none;
}

/* subtle dot grid texture */
.hero-bg-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .4;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 5rem 4rem;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius-full);
  padding: .5rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  color: #fcd34d;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}
.hero-badge span { color: rgba(255, 255, 255, .92); margin-left: .4rem; font-weight: 500; }

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, .25);
}
.hero-headline br + * { color: #fcd34d; }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  position: relative;
  background: var(--gradient-accent);
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  display: inline-flex; align-items: center; gap: .65rem;
  transition: all var(--transition);
  box-shadow: 0 10px 30px rgba(245, 158, 11, .45), 0 2px 6px rgba(0,0,0,.15);
  overflow: hidden;
  isolation: isolate;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
  z-index: -1;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245, 158, 11, .55), 0 4px 8px rgba(0,0,0,.2);
}
.btn-hero-primary:hover::before { transform: translateX(100%); }

.btn-hero-secondary {
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .35);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  display: inline-flex; align-items: center; gap: .65rem;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, .18);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255, 255, 255, .15);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.8);
}
.hero-trust span { display: flex; align-items: center; gap: .45rem; }
.hero-trust i { color: var(--accent); font-size: .95rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  animation: bounce 2.2s infinite;
  z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .25);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.hero-scroll-hint:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── PROOF BAR (premium dark) ────────────────────────────── */
.proof-bar {
  background: var(--gradient-dark);
  padding-block: 1.25rem;
  position: relative;
  overflow: hidden;
}
.proof-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(15, 95, 163, .25) 0%, transparent 70%);
  pointer-events: none;
}
.proof-bar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 500;
}
.proof-item i.fa-star { color: #ffd700; font-size: .85rem; }
.proof-item i:not(.fa-star) { color: var(--accent); font-size: 1rem; }
.proof-item strong { color: #fff; }
.proof-divider {
  width: 1px; height: 28px;
  background: rgba(255,255,255,.2);
}

/* ── SERVICES (premium card) ─────────────────────────────── */
.services-section {
  background: var(--light);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 1400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 150px; height: 150px;
  background: radial-gradient(circle at top right, var(--primary-lt) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 64px; height: 64px;
  background: var(--primary-lt);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 12px 24px rgba(15, 95, 163, .35);
}

.service-card h3 { margin-bottom: .75rem; font-size: 1.15rem; }
.service-card p  { color: var(--mid); font-size: .93rem; flex: 1; margin-bottom: 1.25rem; }

.service-link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
  transition: gap var(--transition);
  margin-top: auto;
}
.service-link:hover { gap: .6rem; }

.service-card--cta {
  background: var(--gradient-primary-soft);
  color: var(--white);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.service-card--cta::after {
  background: radial-gradient(circle at top right, rgba(245, 158, 11, .3) 0%, transparent 70%);
  opacity: 1;
}
.service-card--cta::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-dk));
  transform: scaleX(1);
}
.service-card--cta h3 { color: var(--white); }
.service-card--cta p  { color: rgba(255,255,255,.8); }
.service-card--cta .service-icon {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.service-card--cta:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(26,111,181,.35);
}

/* ── WHY US ──────────────────────────────────────────────── */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-image img { width: 100%; height: 480px; object-fit: cover; }

.why-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
.google-badge {
  background: var(--white);
  border-radius: 14px;
  padding: .9rem 1.1rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.google-badge:hover { transform: scale(1.04); }
.google-badge > i { font-size: 1.6rem; color: #4285F4; }
.stars-sm { display: flex; gap: 2px; color: #ffd700; font-size: .75rem; margin-bottom: .15rem; }
.google-badge span { font-size: .8rem; font-weight: 600; color: var(--dark); white-space: nowrap; }

.why-content { padding-inline: .5rem; }
.why-content h2 { margin-block: .75rem 1rem; }
.why-lead { color: var(--mid); font-size: 1rem; margin-bottom: 1.75rem; line-height: 1.7; }

.why-list { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.25rem; }
.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .25rem 0;
  transition: transform var(--transition);
}
.why-list li:hover { transform: translateX(4px); }
.why-list i {
  color: var(--white);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .2rem;
  width: 24px; height: 24px;
  background: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, .35);
}
.why-list strong { display: block; font-size: .95rem; margin-bottom: .15rem; }
.why-list span   { font-size: .87rem; color: var(--mid); }

.why-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── QUOTE ───────────────────────────────────────────────── */
.quote-section {
  background: var(--gradient-primary-soft);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.quote-section::before, .quote-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.quote-section::before {
  width: 500px; height: 500px;
  background: rgba(245, 158, 11, .15);
  top: -200px; right: -100px;
}
.quote-section::after {
  width: 400px; height: 400px;
  background: rgba(255, 255, 255, .08);
  bottom: -150px; left: -100px;
}
.quote-section > .container { position: relative; z-index: 1; }

/* Contact-only block (replaces former quote form) */
.contact-only { text-align: center; max-width: 900px; margin: 0 auto; }
.contact-only h2 { margin-block: .5rem 1rem; }
.contact-only-lead { color: rgba(255,255,255,.88); font-size: 1.08rem; max-width: 620px; margin: 0 auto 2.5rem; }

.contact-only-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-only-card {
  position: relative;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  transition: all var(--transition);
  overflow: hidden;
}
.contact-only-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.contact-only-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .3);
}
.contact-only-card:hover::before { opacity: 1; }
.contact-only-card:first-child {
  background: var(--gradient-accent);
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(245, 158, 11, .35);
}
.contact-only-card:first-child:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  box-shadow: 0 20px 40px rgba(245, 158, 11, .5);
}
.contact-only-card:first-child .contact-only-sub { color: rgba(0,0,0,.7); }

.contact-only-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: .5rem;
}
.contact-only-card:first-child .contact-only-icon { background: rgba(0,0,0,.12); }
.contact-only-title { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }
.contact-only-number { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; letter-spacing: -.5px; }
.contact-only-sub { font-size: .9rem; opacity: .8; }

.quote-hours {
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-only-cards { grid-template-columns: 1fr; }
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.quote-info h2 { margin-block: .75rem 1rem; }
.quote-info p  { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 2rem; }

.quote-contact-options { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.75rem; }

.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: background var(--transition), transform var(--transition);
}
.contact-option:hover { background: rgba(255,255,255,.18); transform: translateX(4px); }
.contact-option i { font-size: 1.3rem; color: var(--accent); flex-shrink: 0; }
.contact-option strong { display: block; font-size: .93rem; margin-bottom: .1rem; }
.contact-option span { font-size: .83rem; color: rgba(255,255,255,.75); }

.quote-hours {
  font-size: .87rem;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: .5rem;
}

.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-lg);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--dark-2); margin-bottom: .4rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .93rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,111,181,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-disclaimer { margin-top: .9rem; font-size: .78rem; color: var(--mid); text-align: center; }

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success i { font-size: 3rem; color: var(--green); margin-bottom: 1rem; }
.form-success h3 { margin-bottom: .75rem; }
.form-success p  { color: var(--mid); }
.form-success a  { color: var(--primary); font-weight: 600; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-section { background: var(--light); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.review-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  color: var(--primary-lt);
  font-weight: 700;
  pointer-events: none;
  z-index: 0;
}
.review-card > * { position: relative; z-index: 1; }
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.review-stars { display: flex; gap: 3px; color: #ffd700; font-size: .95rem; }
.review-text  { color: var(--dark-2); font-size: .93rem; line-height: 1.7; flex: 1; font-style: italic; }

.review-author { display: flex; align-items: center; gap: .85rem; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .93rem; }
.review-author span   { font-size: .8rem; color: var(--mid); }

.review-source { font-size: .78rem; color: var(--mid); display: flex; align-items: center; gap: .35rem; }
.review-source i { color: #4285F4; }

.reviews-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── VIDEO ───────────────────────────────────────────────── */
.video-section { background: var(--white); }

.video-wrap {
  margin-inline: auto;
  max-width: 800px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  margin-bottom: 2.5rem;
}
.video-wrap iframe { width: 100%; height: 100%; border: none; }

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder-link { display: block; width: 100%; height: 100%; }
.video-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  height: 100%;
  color: var(--white);
  transition: opacity var(--transition);
}
.video-placeholder-inner:hover { opacity: .85; }
.video-placeholder-inner i { font-size: 4rem; color: #ff0000; }
.video-placeholder-inner span { font-size: 1.2rem; font-weight: 600; }
.video-placeholder-inner small { font-size: .88rem; color: rgba(255,255,255,.65); }

.video-social { text-align: center; }
.video-social p { color: var(--mid); margin-bottom: 1.25rem; font-size: .95rem; }

.social-icons-row { display: flex; gap: 1rem; justify-content: center; align-items: center; }

.social-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  flex-direction: column;
  gap: 2px;
}
.social-icon:hover { transform: translateY(-4px) scale(1.08); box-shadow: var(--shadow-md); }
.social-icon small { font-size: .55rem; font-weight: 600; }

.social-icon.facebook  { background: #1877f2; }
.social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-icon.youtube   { background: #ff0000; }
.social-icon.tiktok.coming-soon {
  background: var(--border);
  color: var(--mid);
  cursor: default;
  font-size: .95rem;
}

/* ── SERVICE AREA ────────────────────────────────────────── */
.area-section { background: var(--light); }

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.area-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.area-map iframe { width: 100%; height: 100%; border: none; }

.area-list h3 { margin-bottom: .75rem; color: var(--dark); }
.area-list > p { color: var(--mid); margin-bottom: 1.25rem; font-size: .93rem; }

.neighbourhood-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .5rem;
  margin-bottom: 1.25rem;
}
.neighbourhood-list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem;
  color: var(--dark-2);
  padding: .4rem .6rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.neighbourhood-list i { color: var(--primary); font-size: .75rem; }

.area-note { font-size: .87rem; color: var(--mid); }
.area-note a { color: var(--primary); font-weight: 600; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 { margin-block: .75rem 1.25rem; }
.about-content p  { color: var(--mid); font-size: .95rem; line-height: 1.75; margin-bottom: 1rem; }

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat {
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.25rem;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
.stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .35rem;
  letter-spacing: -0.03em;
}
.stat span { font-size: .82rem; color: var(--mid); font-weight: 500; }

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 460px; object-fit: cover; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--light); }

.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.faq-item:hover { border-color: var(--border-2); }
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(15, 95, 163, .12);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  font-size: .96rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--primary-lt); }
.faq-item.open .faq-question { background: var(--primary-lt); color: var(--primary); }
.faq-question i { flex-shrink: 0; transition: transform var(--transition); color: var(--primary); }
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--mid);
  font-size: .93rem;
  line-height: 1.75;
}
.faq-answer a { color: var(--primary); font-weight: 600; }
.faq-item.open .faq-answer { max-height: 400px; }

.faq-cta { text-align: center; }
.faq-cta p { color: var(--mid); margin-bottom: 1rem; font-size: .95rem; }

/* ── CTA STRIP ───────────────────────────────────────────── */
.cta-strip {
  background: var(--gradient-primary-soft);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, .2) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-strip > .container { position: relative; z-index: 1; }
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .35rem; }
.cta-strip-text p  { color: rgba(255,255,255,.75); font-size: 1rem; }
.cta-strip-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--gradient-dark);
  color: rgba(255,255,255,.75);
  padding-top: 4.5rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 95, 163, .5), transparent);
}
.site-footer::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(15, 95, 163, .15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.site-footer > .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: .55rem;
  font-size: 1.1rem; font-weight: 600; color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo i { color: var(--accent); font-size: 1.3rem; }
.footer-logo strong { color: var(--accent); }
.footer-brand p { font-size: .87rem; line-height: 1.7; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: .65rem; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.footer-tiktok-placeholder {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35);
  font-size: .95rem;
  cursor: default;
}

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: .88rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-contact ul { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .75rem; font-size: .88rem; }
.footer-contact i { color: var(--accent); font-size: .95rem; margin-top: .15rem; flex-shrink: 0; }
.footer-contact a {
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--accent); }

.footer-review-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  padding: .6rem 1.1rem;
  border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}
.footer-review-btn:hover { background: #4285F4; border-color: #4285F4; }
.footer-review-btn i { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.5rem;
  font-size: .83rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ── MOBILE STICKY BAR ───────────────────────────────────── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background var(--transition);
}
.mobile-bar-btn i { font-size: 1.25rem; }
.mobile-bar-call  { color: var(--primary); background: var(--primary-lt); }
.mobile-bar-sms   { color: var(--white); background: var(--gradient-primary); }
.mobile-bar-quote { color: var(--dark); background: var(--gradient-accent); }
.mobile-bar-btn:active { opacity: .85; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-image, .about-image { max-width: 600px; margin-inline: auto; }
  .why-image img { height: 360px; }
  .about-image img { height: 340px; }
  .quote-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .area-grid   { grid-template-columns: 1fr; }
  .area-map    { max-width: 600px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  /* Mobile nav open */
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
  }
  .main-nav.open ul { flex-direction: column; gap: .25rem; }
  .main-nav.open a { font-size: 1rem; padding: .65rem 1rem; }

  .hero-btns { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

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

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

  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-btns { justify-content: center; }

  .mobile-sticky-bar {
    display: flex;
  }

  body { padding-bottom: 64px; }

  .proof-bar-inner .proof-divider { display: none; }
  .proof-bar-inner { gap: .75rem; }

  .neighbourhood-list { grid-template-columns: 1fr; }

  .about-stats { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .hero-trust { gap: .75rem; font-size: .82rem; }
  .hero-badge { font-size: .76rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-btns, .reviews-cta { flex-direction: column; }
  .why-btns a, .reviews-cta a { width: 100%; justify-content: center; }
  .about-stats { flex-wrap: wrap; }
}

/* ============================================================
   NEW SECTIONS: How It Works, Pricing, Gallery, Floating CTAs
============================================================ */

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-section { background: var(--white); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  position: relative;
}

/* Connecting dotted line */
.how-grid::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 16.5%;
  right: 16.5%;
  height: 2px;
  background-image: linear-gradient(to right, var(--primary) 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}

.how-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.75rem 1.75rem 2.25rem;
  text-align: center;
  border: 1px solid var(--border);
  z-index: 1;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.how-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.how-step:hover .how-step-icon {
  transform: rotate(-10deg) scale(1.05);
}

.how-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--dark);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(245, 158, 11, .4);
  border: 4px solid var(--white);
}

.how-step-icon {
  width: 80px; height: 80px;
  margin: .75rem auto 1.5rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.85rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(15, 95, 163, .3);
  transition: transform var(--transition);
  position: relative;
}
.how-step-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(15, 95, 163, .2);
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.how-step h3 { margin-bottom: .75rem; font-size: 1.15rem; }
.how-step p  { color: var(--mid); font-size: .92rem; line-height: 1.65; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-section { background: var(--light); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 2px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--primary-lt) 0%, var(--white) 30%);
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-6px); }

.pricing-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-tag--featured { background: var(--accent); color: var(--dark); }

.pricing-card h3 { margin-bottom: .75rem; }
.pricing-price {
  display: flex; align-items: baseline; gap: .35rem;
  margin-bottom: .75rem;
}
.pricing-from { font-size: .82rem; color: var(--mid); font-weight: 500; }
.pricing-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.pricing-desc { color: var(--mid); font-size: .88rem; margin-bottom: 1.25rem; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.pricing-features li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .87rem;
  color: var(--dark-2);
}
.pricing-features i { color: var(--green); font-size: .8rem; margin-top: .3rem; flex-shrink: 0; }

.pricing-note {
  text-align: center;
  font-size: .85rem;
  color: var(--mid);
  margin-top: 1rem;
}
.pricing-note i { color: var(--primary); margin-right: .25rem; }
.pricing-note a { color: var(--primary); font-weight: 600; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-xl);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25, 1, .5, 1);
}
.gallery-item:hover img { transform: scale(1.1); }

.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  padding: 1.25rem 1rem .75rem;
  display: flex; align-items: center; gap: .45rem;
}
.gallery-item figcaption i { color: var(--accent); }

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

/* ── FLOATING CTA BUBBLES (desktop) ──────────────────────── */
.floating-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  z-index: 998;
}
.float-btn {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  animation: pulse-ring 2.4s infinite;
}
.float-btn:hover {
  transform: scale(1.15) translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.float-btn--call { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.float-btn--sms  { background: var(--gradient-primary); animation-delay: 1.2s; }

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(39,174,96,.55), var(--shadow-md); }
  70%  { box-shadow: 0 0 0 14px rgba(39,174,96,0), var(--shadow-md); }
  100% { box-shadow: 0 0 0 0 rgba(39,174,96,0), var(--shadow-md); }
}
.float-btn--sms { animation-name: pulse-ring-blue; }
@keyframes pulse-ring-blue {
  0%   { box-shadow: 0 0 0 0 rgba(26,111,181,.55), var(--shadow-md); }
  70%  { box-shadow: 0 0 0 14px rgba(26,111,181,0), var(--shadow-md); }
  100% { box-shadow: 0 0 0 0 rgba(26,111,181,0), var(--shadow-md); }
}

.float-tooltip {
  position: absolute;
  right: calc(100% + .6rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: .35rem .65rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top-btn {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 997;
}
.back-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Highlighted "Get a Quote" nav link */
.nav-cta {
  background: var(--accent) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--accent-dk) !important;
  color: var(--dark) !important;
}

/* ── RESPONSIVE: new sections ────────────────────────────── */
@media (max-width: 1024px) {
  .how-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .how-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .promo-bar { font-size: .76rem; padding: .35rem 0; }
  .promo-bar-inner { gap: .5rem; padding: .35rem .5rem; }
  .promo-bar:not(.hidden) ~ .site-header { top: 0; }
  .promo-bar:not(.hidden) ~ .hero { padding-top: var(--header-h); }

  .floating-cta { display: none; }
  .back-to-top-btn { bottom: calc(64px + var(--safe-bottom) + .75rem); }

  /* iOS safe-area for mobile bar */
  .mobile-sticky-bar {
    padding-bottom: var(--safe-bottom);
    height: calc(64px + var(--safe-bottom));
  }
  body { padding-bottom: calc(64px + var(--safe-bottom)); }

  /* Larger tap targets */
  .btn { min-height: 44px; }
  .mobile-bar-btn { min-height: 44px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; min-height: 46px; } /* prevents iOS auto-zoom */
  .faq-question { min-height: 56px; padding-block: 1rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .promo-text { font-size: .73rem; }
  .promo-cta { font-size: .72rem; padding: .2rem .55rem; }
  .pricing-amount { font-size: 2.2rem; }
}

/* ============================================================
   SUB-PAGE STYLES (non-homepage)
============================================================ */
.page-banner {
  position: relative;
  padding: calc(var(--header-h) + 4.5rem) 0 4.5rem;
  background:
    linear-gradient(135deg, rgba(10, 30, 60, .92) 0%, rgba(15, 95, 163, .80) 50%, rgba(10, 60, 110, .92) 100%),
    url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?w=1600&q=85') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-banner::before, .page-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.page-banner::before {
  width: 400px; height: 400px;
  background: rgba(245, 158, 11, .15);
  top: -150px; right: -100px;
}
.page-banner::after {
  width: 500px; height: 500px;
  background: rgba(15, 95, 163, .25);
  bottom: -200px; left: -150px;
}
.page-banner > .container { position: relative; z-index: 1; }
.page-banner h1 {
  color: var(--white);
  font-weight: 900;
}
.page-banner h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: .75rem;
}
.page-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.page-banner .breadcrumbs {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}
.page-banner .breadcrumbs a { color: var(--accent); }
.page-banner .breadcrumbs a:hover { text-decoration: underline; }
.page-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.content-section { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.content-section h2 { margin-bottom: 1.25rem; }
.content-section h3 { margin-block: 1.75rem .75rem; color: var(--primary); }
.content-section p  { color: var(--mid); margin-bottom: 1rem; line-height: 1.75; }
.content-section ul { margin: 0 0 1.5rem 1.5rem; }
.content-section ul li { color: var(--mid); margin-bottom: .5rem; line-height: 1.7; }
.content-section ul li::marker { color: var(--primary); }

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.content-main { max-width: 720px; }
.content-side {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}
.content-side h3 { margin-top: 0; }
.content-side .btn { width: 100%; justify-content: center; margin-bottom: .6rem; }
.content-side .side-phone {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin: 1rem 0;
}

.related-services {
  background: var(--light);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.related-card i { font-size: 2rem; color: var(--primary); margin-bottom: .75rem; }
.related-card h4 { font-size: 1rem; margin-bottom: .5rem; }
.related-card p { font-size: .85rem; color: var(--mid); margin-bottom: 1rem; }
.related-card a { color: var(--primary); font-weight: 600; font-size: .88rem; }

@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-side { position: static; }
  .page-banner { padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: 2.5rem; }
}

/* ── PRINT ───────────────────────────────────────────────── */
@media print {
  .site-header, .mobile-sticky-bar, .floating-cta, .back-to-top-btn, .promo-bar { display: none !important; }
  .hero { min-height: auto; padding: 2rem 0; }
  * { box-shadow: none !important; }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .fade-in { opacity: 1; transform: none; }
}
