/* ============================================================
   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 {
  --primary:    #1a6fb5;
  --primary-dk: #145a94;
  --primary-lt: #e8f2fb;
  --accent:     #f5a623;
  --accent-dk:  #d48a10;
  --green:      #27ae60;
  --dark:       #1a2332;
  --dark-2:     #2c3e50;
  --mid:        #5a6a7e;
  --light:      #f7f9fc;
  --white:      #ffffff;
  --border:     #e2e8f0;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --header-h:   72px;
}

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);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }

.section { padding-block: clamp(4rem, 8vw, 7rem); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn i { font-size: .9em; }

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,.4);
}

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

.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 */
.section-tag {
  display: inline-block;
  background: var(--primary-lt);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.section-tag.light {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header h2 { margin-block: .5rem 1rem; }
.section-header p  { color: var(--mid); font-size: 1.05rem; }

/* ── 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, var(--accent) 0%, #f7b94a 100%);
  color: var(--dark);
  font-size: .85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}
.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,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.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: 38px; height: 38px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.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 ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background:
    linear-gradient(135deg, rgba(15,40,80,.82) 0%, rgba(10,60,110,.72) 60%, rgba(0,30,60,.85) 100%),
    url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?w=1600&q=85') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(26,111,181,.25) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffd700;
  backdrop-filter: blur(6px);
}
.hero-badge span { color: rgba(255,255,255,.9); margin-left: .3rem; }

.hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.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 {
  background: var(--accent);
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 700;
  padding: .9rem 2rem;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: .6rem;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(245,166,35,.45);
}
.btn-hero-primary:hover {
  background: var(--accent-dk);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(245,166,35,.5);
}

.btn-hero-secondary {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  padding: .9rem 2rem;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: .6rem;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.25);
  border-color: var(--white);
  transform: translateY(-3px);
}

.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: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 1.4rem;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── PROOF BAR ───────────────────────────────────────────── */
.proof-bar {
  background: var(--dark);
  padding-block: 1.1rem;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.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 ────────────────────────────────────────────── */
.services-section { background: var(--light); }

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

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

.service-icon {
  width: 56px; height: 56px;
  background: var(--primary-lt);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}

.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: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  color: var(--white);
  border-color: transparent;
}
.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: 1rem; margin-bottom: 2rem; }
.why-list li { display: flex; gap: .9rem; align-items: flex-start; }
.why-list i {
  color: var(--green);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.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: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  color: var(--white);
}

/* 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 {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  transition: transform var(--transition), background var(--transition);
}
.contact-only-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.contact-only-card:first-child { background: var(--accent); color: var(--dark); border-color: transparent; }
.contact-only-card:first-child:hover { background: var(--accent-dk); }
.contact-only-card:first-child .contact-only-sub { color: rgba(0,0,0,.75); }

.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 {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.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: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .25rem;
}
.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);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 4px 20px rgba(26,111,181,.12); }

.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: linear-gradient(135deg, #0d3559 0%, var(--primary) 100%);
  padding-block: clamp(3rem, 6vw, 5rem);
  color: var(--white);
}
.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(--dark);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}

.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(--primary); }
.mobile-bar-quote { color: var(--dark); background: var(--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(--light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.how-step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}

.how-step-icon {
  width: 72px; height: 72px;
  margin: .5rem auto 1.25rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(26,111,181,.25);
}

.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);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.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: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-ring 2.4s infinite;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn--call { background: var(--green); }
.float-btn--sms  { background: var(--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) + 4rem) 0 4rem;
  background:
    linear-gradient(135deg, rgba(15,40,80,.88) 0%, rgba(10,60,110,.80) 100%),
    url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?w=1600&q=85') center/cover no-repeat;
  color: var(--white);
  text-align: center;
}
.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; }
}
