/* ============================================================
   Toronto Interior Demolition — Main Stylesheet
   ============================================================ */

/* ---- RESET & BASE ----------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink:         #111417;
  --ink-light:   #1c2128;
  --ink-dark:    #0a0b0d;
  --brand:       #d9a300;
  --brand-dark:  #b08800;
  --brand-light: #f0c933;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --gold:        #d9a300;
  --green:       #22c55e;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.12);
  --shadow-md:   0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.15), 0 4px 12px rgba(0,0,0,.1);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.2);
  --transition:  all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip; /* clip instead of hidden — doesn't break position:sticky */
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }


/* ---- UTILITY ---------------------------------------------- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217,163,0,.1);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: .01em;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217,163,0,.4);
}
.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 6px 20px rgba(217,163,0,.5);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-lg { padding: 17px 36px; font-size: 1.05rem; }


/* ---- PULSE DOT -------------------------------------------- */
.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,.7); }
  50%  { box-shadow: 0 0 0 8px rgba(34,197,94,0);  }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94,0);  }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.35);
  color: #15803d;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: .04em;
  white-space: nowrap;
}


/* ---- US FLAG CSS-ONLY ------------------------------------- */
.flag-icon {
  display: inline-block;
  overflow: hidden;
  width: 20px;
  height: 13px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.3);
  background: linear-gradient(
    to bottom,
    #b22234  0   15%, #fff 15%  23%,
    #b22234 23%  38%, #fff 38%  46%,
    #b22234 46%  61%, #fff 61%  69%,
    #b22234 69%  84%, #fff 84%  92%,
    #b22234 92% 100%
  );
  position: relative;
}
.flag-icon::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 53%;
  background: #3c3b6e;
}


/* ---- TOP BAR ---------------------------------------------- */
#top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 6px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .73rem;
  font-weight: 600;
  color: var(--gray-600);
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-flag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}

.top-bar-items {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Mobile ticker wrapper — invisible on desktop, items flow naturally */
.top-bar-ticker {
  display: contents;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gray-600);
  white-space: nowrap;
}
.top-bar-item i { color: var(--brand); font-size: .68rem; }
.top-bar-phone a { color: var(--ink); font-weight: 700; }

/* Separator dot between items in ticker */
.top-bar-sep {
  display: none; /* hidden on desktop */
  color: var(--gray-400);
  font-size: .6rem;
  user-select: none;
}

/* Duplicate ticker items — hidden on desktop, revealed by mobile rules below */
.top-bar-dup { display: none; }

@keyframes topBarScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ---- HEADER ----------------------------------------------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  color: var(--gray-800);
  box-shadow: 0 1px 0 var(--gray-200);
  transition: box-shadow .25s ease;
}

/* Shadow only on scroll — height stays fixed to avoid sticky jitter */
#site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  flex-shrink: 0;
}

.logo--img {
  gap: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: min(280px, 52vw);
  display: block;
  flex-shrink: 0;
}

#mobile-nav .logo-img {
  height: 42px;
  max-width: min(240px, 70vw);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-sub {
  font-size: .6rem;
  font-weight: 500;
  opacity: .7;
  display: block;
}

.nav-links { display: flex; gap: 20px; }
.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone-wrap { display: flex; align-items: center; gap: 8px; }
.header-phone-num {
  font-size: .95rem;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}
.header-phone-num a { color: var(--ink); }


/* ---- HAMBURGER -------------------------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px);  }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


/* ---- MOBILE NAV DRAWER ------------------------------------ */
#mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--ink-dark);
  z-index: 2000;
  transition: right .3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,.3);
  overflow-y: auto;
}
#mobile-nav.open { right: 0; }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav-header .logo { font-size: .9rem; }

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav-links { padding: 20px 0; }
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.mobile-nav-links a:hover { background: rgba(255,255,255,.05); color: var(--white); }
.mobile-nav-links a i  { color: var(--brand); width: 16px; text-align: center; }

.mobile-nav-cta { padding: 20px; }
.mobile-nav-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(217,163,0,.4);
}

#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1999;
}
#nav-overlay.open { display: block; }


/* ---- HERO ------------------------------------------------- */
#hero {
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Animated Ken Burns background image */
.hero-bg-img {
  position: absolute;
  inset: -8%;
  background: url('../img/background.png') center / cover no-repeat;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
  z-index: 0;
  will-change: transform;
}

/* Dark gradient overlay above the photo */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.55) 40%, rgba(0,0,0,.72) 100%);
  z-index: 1;
}

@keyframes heroKenBurns {
  0%   { transform: scale(1)    translate(0,    0);   }
  33%  { transform: scale(1.06) translate(-1%,  .5%); }
  66%  { transform: scale(1.04) translate( .5%, 1%);  }
  100% { transform: scale(1.1)  translate(-1%,  -.5%);}
}

/* Subtle grid overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-orb {
  position: absolute;
  pointer-events: none;
  filter: blur(70px);
  opacity: .3;
  z-index: 3;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,163,0,.5), transparent 70%);
  top: -180px; right: -100px;
  animation: orbFloat1 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,.1), transparent 70%);
  bottom: -80px; left: -60px;
  animation: orbFloat2 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0,0); }
  50%       { transform: translate(-25px,18px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0,0); }
  50%       { transform: translate(18px,-22px); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 4;
}

/* Prevent either column from expanding beyond its allocated space */
.hero-inner > * { min-width: 0; }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-available {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  font-size: .77rem;
  font-weight: 600;
  padding: 5px 13px;
  letter-spacing: .04em;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-title span { color: var(--brand); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 7px 13px;
  font-size: .77rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.trust-badge i { color: var(--gold); font-size: .85rem; }

/* Service fee badge variant */
.trust-badge.fee-badge {
  background: rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.3);
}
.trust-badge.fee-badge i { color: var(--green); }

.hero-card {
  background: var(--white);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  color: var(--gray-800);
}

.hero-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-title i { color: var(--brand); }

.quick-form .form-group { margin-bottom: 14px; }
.quick-form label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 5px;
}
.quick-form input,
.quick-form select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-200);
  font-family: inherit;
  font-size: .9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.quick-form input:focus,
.quick-form select:focus { border-color: var(--brand); }
.quick-form .btn { width: 100%; justify-content: center; margin-top: 4px; }

.hero-card-note {
  text-align: center;
  font-size: .74rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* Free estimate callout inside hero card (same as example .fee-callout) */
.fee-callout,
.estimate-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: .8rem;
  color: #166534;
  line-height: 1.4;
}
.fee-callout i,
.estimate-callout i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.fee-callout strong,
.estimate-callout strong { display: block; font-size: .82rem; margin-bottom: 1px; }


/* ---- PROOF BAR -------------------------------------------- */
#stats-strip {
  background: var(--gray-50);
  border-top: 3px solid var(--brand);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 32px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}
.stat-card:last-child { border-right: none; }

.stat-icon {
  font-size: 1.6rem;
  color: var(--brand);
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.stat-stars { color: var(--gold); font-size: .85rem; }

.stat-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-600);
}

.stat-sub {
  font-size: .72rem;
  color: var(--gray-400);
  font-weight: 500;
}


/* ---- BRAND SLIDER ----------------------------------------- */
#brands {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
  overflow: hidden;
}

.brands-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 18px;
}

.brands-track-wrap {
  overflow: hidden;
  position: relative;
}
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.brands-track-wrap::before { left: 0;  background: linear-gradient(90deg,  var(--white), transparent); }
.brands-track-wrap::after  { right: 0; background: linear-gradient(270deg, var(--white), transparent); }

.brands-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  animation: brandScroll 36s linear infinite;
  will-change: transform;
}
.brands-track:hover { animation-play-state: paused; }

/* 4 identical sets in HTML → move one set width (-25%) for seamless loop */
@keyframes brandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 36px;
  gap: 6px;
  flex: 0 0 auto;
  border-right: 1px solid var(--gray-200);
}

.brand-logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-600);
  transition: color .25s ease;
  white-space: nowrap;
}
.brand-item:hover .brand-logo-text { color: var(--ink); }

.brand-badge {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* Individual brand style overrides */
.b-ge .brand-logo-text        { font-style: italic; font-size: 1.3rem; }
.b-kitchenaid .brand-logo-text { font-size: .78rem; letter-spacing: .12em; }
.b-frigidaire .brand-logo-text { font-size: .82rem; letter-spacing: .05em; }
.b-electrolux .brand-logo-text { font-size: .82rem; letter-spacing: .07em; }


/* ---- SERVICES --------------------------------------------- */
#services { padding: 90px 0; background: var(--white); }
.services-head { text-align: center; margin-bottom: 52px; }
.services-head .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:not(.fade-up):hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card:hover::after { transform: scaleX(1); }

.service-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(17,20,23,.55) 100%);
}

.service-img-badge {
  position: absolute;
  bottom: 12px; left: 14px;
  background: var(--brand);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.service-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 44px; height: 44px;
  background: rgba(217,163,0,.08);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--brand); color: var(--white); }

.service-name { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.service-desc { font-size: .87rem; color: var(--gray-600); line-height: 1.6; flex: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  background: var(--brand);
  padding: 9px 18px;
  margin-top: 16px;
  transition: var(--transition);
  align-self: flex-start;
}
.service-link:hover { background: var(--brand-dark); transform: translateY(-1px); }
.service-link i { font-size: .75rem; }

.services-cta { text-align: center; margin-top: 44px; }


/* ---- WHY US ----------------------------------------------- */
#why-us { padding: 90px 0; background: var(--gray-50); }
.why-head { text-align: center; margin-bottom: 52px; }
.why-head .section-subtitle { margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--brand), #f0c933);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(217,163,0,.25);
}

.why-title  { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.why-desc   {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 16px;
}

.why-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 5px 12px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  background: var(--ink);
  flex-shrink: 0;
}


/* ---- HOW IT WORKS (animated) ------------------------------ */
#how-it-works { padding: 90px 0; background: var(--white); }
.how-head { text-align: center; margin-bottom: 60px; }
.how-head .section-subtitle { margin: 0 auto; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-connector {
  position: absolute;
  top: 44px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 3px;
  background: var(--gray-200);
  overflow: hidden;
}
.how-connector-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand), #f0c933);
  transition: width 1.2s ease;
}
.how-connector-fill.animated { width: 100%; }

.how-step {
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.how-step.animated { opacity: 1; transform: translateY(0); }
.how-step:nth-child(2) { transition-delay: .15s; }
.how-step:nth-child(3) { transition-delay: .3s; }
.how-step:nth-child(4) { transition-delay: .45s; }

.step-number {
  width: 88px; height: 88px;
  background: var(--gray-100);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  transition: all .6s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.how-step.animated .step-number {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(17,20,23,.3);
  transform: scale(1.05);
}

.step-icon  { font-size: 1.8rem; line-height: 1; }
.step-title { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.step-desc  { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }

.step-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(217,163,0,.08);
  color: var(--brand);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 12px;
  margin-top: 12px;
}


/* ---- TESTIMONIALS ----------------------------------------- */
#testimonials { padding: 90px 0; background: var(--gray-50); }
.testimonials-head { text-align: center; margin-bottom: 52px; }
.testimonials-head .section-subtitle { margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.t-stars     { color: var(--gold); font-size: .9rem; margin-bottom: 14px; }
.t-text      { font-size: .92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.t-text::before { content: '\201C'; }
.t-text::after  { content: '\201D'; }

.t-author    { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--ink), var(--ink-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.t-name      { font-weight: 700; font-size: .9rem; color: var(--ink); }
.t-appliance { font-size: .78rem; color: var(--gray-400); }
.t-google    { display: flex; align-items: center; gap: 4px; font-size: .72rem; color: var(--gray-400); margin-top: 2px; }
.t-google i  { color: #4285f4; }


/* ---- SERVICE AREAS ---------------------------------------- */
#areas { padding: 80px 0; background: var(--white); }

.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .87rem;
  color: var(--gray-600);
  font-weight: 500;
}
.area-item i { color: var(--brand); font-size: .65rem; }

.areas-map {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  padding: 40px;
  text-align: center;
}
.areas-map .map-icon { font-size: 3rem; color: var(--brand); margin-bottom: 16px; display: block; }
.areas-map h3 { font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.areas-map p  { font-size: .9rem; color: var(--gray-600); margin-bottom: 24px; line-height: 1.6; }


/* ---- BOOKING FORM ----------------------------------------- */
#book {
  padding: 90px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.book-left .section-subtitle { color: var(--gray-600); }

.book-perks { margin-top: 32px; }
.book-perk  { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }

.book-perk-icon {
  width: 44px; height: 44px;
  background: rgba(217,163,0,.08);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Green variant for service fee perk */
.book-perk-icon.green {
  background: rgba(34,197,94,.1);
  color: var(--green);
}

.book-perk-title { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.book-perk-desc  { font-size: .82rem; color: var(--gray-600); line-height: 1.5; }

.book-form-wrap {
  background: var(--white);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.book-form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.book-form-title i { color: var(--brand); }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.form-row .form-group { margin-bottom: 0; min-width: 0; }
.form-group { margin-bottom: 16px; }
.form-group-full { grid-column: 1 / -1; width: 100%; }
#booking-form .form-row:last-of-type { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; }
.form-group label span { color: var(--brand); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--gray-200);
  font-family: inherit;
  font-size: .92rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brand); }

.form-submit { width: 100%; justify-content: center; }
.form-note {
  text-align: center;
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Service fee notice inside booking form */
.book-fee-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: .82rem;
  color: #166534;
  line-height: 1.5;
}
.book-fee-notice i { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.book-fee-notice strong { color: #14532d; }


/* ---- FAQ -------------------------------------------------- */
#faq { padding: 90px 0; background: var(--white); }

.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head .section-subtitle { margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  gap: 16px;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--brand); }

.faq-icon {
  width: 32px; height: 32px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s ease;
  color: var(--ink);
}
.faq-icon i { font-size: .75rem; transition: transform .3s ease; }

.faq-item.open .faq-icon    { background: var(--brand); color: var(--white); }
.faq-item.open .faq-icon i  { transform: rotate(45deg); }
.faq-item.open .faq-q       { color: var(--brand); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  font-size: .93rem;
  color: var(--gray-600);
  line-height: 1.75;
  padding: 0 4px;
}
.faq-a.open { max-height: 5000px; padding: 0 4px 22px; }

.faq-a p { margin: 0 0 12px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul,
.faq-a ol {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.faq-a ul li,
.faq-a ol li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 6px;
}
.faq-a ul li::before,
.faq-a ol li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.7em;
  font-size: 0.75em;
  color: var(--brand);
  line-height: 1;
}
.faq-a li:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--ink); font-weight: 700; }
.faq-a a { color: var(--brand); font-weight: 600; text-decoration: underline; }
.faq-a a:hover { color: var(--brand-dark); }

.faq-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
}
.faq-cta p { font-size: .95rem; color: var(--gray-600); margin-bottom: 16px; }


/* ---- FOOTER ----------------------------------------------- */
#footer {
  background: #111417;
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
  border-top: 3px solid var(--brand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo .logo-icon { width: 36px; height: 36px; font-size: 1rem; }

.footer-desc { font-size: .85rem; line-height: 1.7; margin-bottom: 18px; color: rgba(255,255,255,.65); }

.footer-col h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--brand); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,.65);
}
.footer-contact-item i           { color: var(--brand); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a           { color: var(--white); font-weight: 600; }
.footer-contact-item a:hover     { color: var(--brand); }

.footer-fee-note {
  margin-top: 14px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}


/* ---- MOBILE FLOAT CTA ------------------------------------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  padding: 10px 16px;
  background: var(--ink-dark);
  border-top: 2px solid var(--brand);
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
.mobile-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: 14px;
  box-shadow: 0 4px 14px rgba(217,163,0,.4);
}
.mobile-cta-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: 14px;
}


/* ---- SCROLL ANIMATIONS ------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* Service cards: scroll-in on opacity only — do not fight hover transform/shadow */
.service-card.fade-up {
  transform: none;
  transition:
    opacity 0.55s ease var(--fade-delay, 0s),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0s,
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0s,
    border-color 0.3s ease 0s;
}
.service-card.fade-up.visible {
  opacity: 1;
  transform: none;
}
.service-card.fade-up:hover,
.service-card.fade-up.visible:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.services-grid > .service-card.fade-up:nth-child(1) { --fade-delay: 0s; }
.services-grid > .service-card.fade-up:nth-child(2) { --fade-delay: .1s; }
.services-grid > .service-card.fade-up:nth-child(3) { --fade-delay: .2s; }
.services-grid > .service-card.fade-up:nth-child(4) { --fade-delay: .3s; }
.services-grid > .service-card.fade-up:nth-child(5) { --fade-delay: .4s; }
.services-grid > .service-card.fade-up:nth-child(6) { --fade-delay: .5s; }


/* ---- SUCCESS MODAL ---------------------------------------- */
#success-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.6);
  align-items: center;
  justify-content: center;
}
.modal-box {
  background: var(--white);
  padding: 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
}
.modal-check {
  width: 72px; height: 72px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}


/* ---- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
  .how-steps            { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-connector        { display: none; }
  .how-step             { padding: 0 12px; }
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .why-grid             { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 32px; }
  .book-inner           { gap: 40px; }
  .nav-links            { gap: 14px; }
  .nav-links a          { font-size: .78rem; }
}

@media (max-width: 820px) {
  .nav-links            { display: none; }
  .header-phone-wrap    { display: none; }
  .header-right .btn    { display: none; }
  .hamburger            { display: flex; }
  #site-header .header-inner { padding: 10px 0; }
  .logo--img            { min-width: 0; flex: 1; overflow: hidden; }
  .logo-img             {
    height: 38px;
    max-width: min(200px, 52vw);
    transform: none;
    top: 0;
    position: static;
    transform-origin: left center;
  }
}

/* ---- TOP BAR MOBILE TICKER -------------------------------- */
@media (max-width: 768px) {
  #top-bar                  { padding: 5px 0; }

  .top-bar-inner {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }

  .top-bar-flag { font-size: .68rem; flex-shrink: 0; max-width: 38%; }

  /* Ticker container */
  .top-bar-items {
    flex: 1;
    overflow: hidden;
    gap: 0;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  /* The scrolling track — has items duplicated in HTML */
  .top-bar-ticker {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    animation: topBarScroll 14s linear infinite;
    white-space: nowrap;
  }

  .top-bar-sep { display: inline; }

  /* Reveal duplicate items for seamless ticker loop */
  .top-bar-item.top-bar-dup { display: inline-flex; }
  .top-bar-sep.top-bar-dup  { display: inline; }
}

/* ---- FOOTER MOBILE ACCORDION ------------------------------ */
@media (max-width: 768px) {
  .footer-col.collapsible h4 {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    margin-bottom: 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-col.collapsible h4::after {
    content: '+';
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--brand);
  }
  .footer-col.collapsible.open h4::after { content: '\2212'; }
  .footer-col.collapsible ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    margin-top: 0;
  }
  .footer-col.collapsible.open ul { max-height: 280px; margin-top: 8px; }
  .footer-grid .footer-col.collapsible + .footer-col.collapsible {
    margin-top: -14px;
  }
  .footer-col.collapsible + .footer-col.collapsible h4 {
    border-top: none;
    padding-top: 6px;
  }
}

/* ---- GENERAL MOBILE --------------------------------------- */
@media (max-width: 768px) {
  #hero                     { padding: 52px 0 60px; }
  .hero-inner               { grid-template-columns: 1fr; }
  .hero-card                { display: none; }
  .hero-title               { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* Trust badges: 2-col grid on mobile, hide Same-Day to keep 3 items */
  .hero-trust               { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust-badge              { font-size: .72rem; padding: 7px 10px; justify-content: center; }
  .hero-trust .trust-badge:nth-child(2) { display: none; }
  /* Last badge alone on its row → span full width & centre */
  .hero-trust .trust-badge:last-child   { grid-column: 1 / -1; width: fit-content; margin: 0 auto; }

  .how-steps                { grid-template-columns: 1fr; gap: 32px; }
  .how-connector            { display: none; }
  .how-step                 { padding: 0 20px; text-align: center; }
  .step-number              { margin: 0 auto 20px; }
  .step-time                { margin: 12px auto 0; }
  .testimonials-grid        { grid-template-columns: 1fr; }
  .why-grid                 { grid-template-columns: 1fr; }
  .book-inner               { grid-template-columns: 1fr; }
  .book-form-wrap           { padding: 24px; }
  .areas-inner              { grid-template-columns: 1fr; }
  .areas-list               { grid-template-columns: repeat(2, 1fr); }
  .areas-map                { padding: 22px 18px; }
  .areas-map .map-icon      { font-size: 2.25rem; margin-bottom: 12px; }
  .areas-map h3             { font-size: 1.15rem; margin-bottom: 8px; }
  .areas-map p              { margin-bottom: 18px; }
  .footer-grid              {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-grid > .footer-col.collapsible {
    margin-bottom: 0;
  }
  .form-row                 { grid-template-columns: 1fr; }
  .quick-form .form-row,
  #booking-form .form-row   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-cta               { display: block; background: #111417; }
  body                      { padding-bottom: 0; }
  #footer                   { padding-bottom: 72px; }
  .footer-bottom            { padding-bottom: 16px; }
  #stats-strip              { padding: 18px 0; }
  .stats-inner              {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }
  .stat-card                {
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 16px 12px;
    min-height: 96px;
    border-right: none;
    background: var(--white);
    border: 1px solid var(--gray-200);
  }
  .stat-icon                { font-size: 1.4rem; }
  .stat-num                 {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .stat-num .stat-stars     {
    display: block;
    font-size: .58rem;
    letter-spacing: .02em;
    margin-top: 3px;
  }
  .stat-label               {
    font-size: .68rem;
    line-height: 1.35;
    max-width: 11em;
  }
  .section-title            { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  #services, #why-us, #how-it-works,
  #testimonials, #areas, #book, #faq { padding: 60px 0; }
  .service-body             { padding: 18px 18px 20px; }
  .why-card                 { padding: 28px 22px; }

  .form-group input,
  .form-group select,
  .form-group textarea,
  .quick-form input,
  .quick-form select        { min-height: 48px; font-size: 16px; }

  /* FAQ: no orphan border after last item */
  .faq-item:last-child      { border-bottom: none; }
}

@media (max-width: 540px) {
  .quick-form .form-row,
  #booking-form .form-row   { grid-template-columns: 1fr; }
  .services-grid            { grid-template-columns: 1fr; }
  .hero-ctas                { flex-direction: column; }
  .hero-ctas .btn           { width: 100%; justify-content: center; }
  .footer-grid              { grid-template-columns: 1fr; }
  .why-grid                 { grid-template-columns: 1fr; }
  .testimonials-grid        { grid-template-columns: 1fr; }
  .areas-list               { grid-template-columns: 1fr 1fr; }
  .how-step                 { padding: 0 8px; }
  .step-number              { width: 72px; height: 72px; font-size: 1.5rem; }
  .mobile-cta-call,
  .mobile-cta-book          { font-size: .85rem; padding: 12px 8px; }
  .book-form-wrap           { padding: 18px; }
  #book                     { padding: 50px 0; }
}

/* ---- FAQ last-item border fix (all screen sizes) ---------- */
.faq-item:last-child { border-bottom: none; }

/* ---- Mobile CTA green-on-scroll --------------------------- */
.mobile-cta.scrolled .mobile-cta-call {
  background: var(--green);
  box-shadow: 0 4px 14px rgba(34,197,94,.45);
}
.mobile-cta.scrolled .mobile-cta-call:hover {
  background: #16a34a;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up            { opacity: 1; transform: none; transition: none; }
  .pulse-dot          { animation: none; }
  .brands-track       { animation: none; }
  .hero-bg-img        { animation: none; }
  .hero-orb           { animation: none; }
  .how-step           { opacity: 1; transform: none; transition: none; }
  .how-connector-fill { width: 100%; }
  .top-bar-ticker     { animation: none; }
  .service-card.fade-up,
  .service-card.fade-up.visible,
  .service-card.fade-up:hover { transition: border-color 0.2s ease; transform: none; }
}
