/* ============================================================
   SEASTREAM HANDYMAN — main.css
   Blue #009eff | Deep Navy-Blue #00395a | Sky #83d6ff
   Premium, clean, "the handyman my whole neighborhood uses"
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #009eff;
  --blue-bright: #33b1ff;
  --navy:        #00395a;
  --navy-deep:   #002235;
  --blue-dark:   #00557f;
  --blue-pale:   #eef8ff;
  --off-white:   #f5fafe;
  --sky:         #83d6ff;
  --gold:        #e0a92e;   /* used sparingly — stars, warranty seal */
  --gold-light:  #f3c452;
  --white:       #ffffff;
  --text:        #0c2233;
  --gray:        #56708a;
  --gray-light:  #8aa1b8;
  --border:      #dbe9f5;
  --shadow-sm:   0 2px 8px rgba(0,57,90,.07);
  --shadow-md:   0 6px 30px rgba(0,57,90,.13);
  --shadow-lg:   0 20px 70px rgba(0,57,90,.18);
  --radius:      10px;
  --radius-lg:   16px;
  --ease:        cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy-deep);
  text-align: center;
  padding: .5rem 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
}
.top-bar a { color: var(--sky); font-weight: 700; text-decoration: none; transition: color .2s; }
.top-bar a:hover { color: var(--white); }
.top-bar strong { color: rgba(255,255,255,.92); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 300;
  background: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 88px;
  box-shadow: 0 1px 0 var(--border), 0 6px 22px rgba(0,57,90,.07);
  transition: height .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  will-change: height;
}
nav.scrolled {
  height: 70px;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 6px 26px rgba(0,57,90,.12);
}
.nav-logo { display: flex; align-items: center; gap: .85rem; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 70px; width: auto; aspect-ratio: 598 / 356; display: block; transition: height .3s var(--ease); }
nav.scrolled .nav-logo img { height: 54px; }

.nav-center { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-center > li { position: relative; }
.nav-center > li > a {
  color: #33485f; text-decoration: none;
  font-size: .88rem; font-weight: 600;
  padding: .55rem .9rem; border-radius: 6px;
  transition: color .2s, background .2s;
  display: flex; align-items: center; gap: .3rem;
}
.nav-center > li > a:hover, .nav-center > li.active > a { color: var(--blue-dark); background: rgba(0,158,255,.08); }
.nav-center > li.active > a { color: var(--blue-dark); }
.nav-center > li > a .chevron { font-size: .65rem; opacity: .6; transition: transform .2s; }
.nav-center > li:hover > a .chevron { transform: rotate(180deg); }

/* dropdown */
.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 270px; padding: .5rem 0; z-index: 400;
}
.nav-center > li:hover .nav-dropdown,
.nav-center > li:focus-within .nav-dropdown { display: block; }
.nav-dropdown a {
  display: flex; align-items: center; gap: .6rem;
  padding: .6rem 1.1rem; font-size: .88rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-dropdown a:hover { background: var(--off-white); color: var(--blue-dark); }
.nav-dropdown a .dd-icon { display: inline-flex; align-items: center; justify-content: center; width: 22px; }
.nav-dropdown a .dd-icon svg { width: 18px; height: 18px; stroke: var(--blue); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.nav-right { display: flex; align-items: center; gap: .85rem; }
.nav-phone {
  display: flex; align-items: center; gap: .45rem;
  color: var(--navy); font-size: .85rem; font-weight: 700;
  text-decoration: none; transition: color .2s; white-space: nowrap;
}
.nav-phone:hover { color: var(--blue-dark); }
.nav-phone svg { width: 16px; height: 16px; fill: var(--blue); flex-shrink: 0; }
.btn-nav-quote {
  background: var(--blue); color: var(--white);
  font-size: .85rem; font-weight: 800;
  padding: .55rem 1.35rem; border-radius: 8px;
  text-decoration: none; letter-spacing: -.01em; white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(0,158,255,.35);
}
.btn-nav-quote:hover { background: var(--blue-bright); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(0,158,255,.45); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; display: block; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-h, 88px); left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 1.5rem 2rem; z-index: 299;
  box-shadow: 0 16px 40px rgba(0,34,53,.4);
  max-height: calc(100vh - var(--nav-h, 88px)); overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: flex; align-items: center; gap: .55rem; padding: .7rem 0;
  color: rgba(255,255,255,.82); font-size: .95rem; font-weight: 500;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mobile-nav ul li a:hover { color: var(--sky); }
.mobile-nav .m-ico { width: 18px; height: 18px; stroke: var(--sky); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.mobile-nav .mobile-services-label {
  font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.65);
  letter-spacing: .1em; text-transform: uppercase; padding: .9rem 0 .3rem;
}
.mobile-nav .mobile-cta-btn {
  display: block; text-align: center;
  background: var(--blue); color: var(--white);
  font-weight: 800; font-size: .95rem;
  padding: .85rem; border-radius: 8px; text-decoration: none; margin-top: 1.25rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--blue); color: var(--white);
  padding: .85rem 2rem; border-radius: 8px;
  font-size: .95rem; font-weight: 800; text-decoration: none; letter-spacing: -.01em;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 3px 14px rgba(0,158,255,.3);
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-3px); box-shadow: 0 6px 22px rgba(0,158,255,.42); }
.btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: transparent; color: var(--white);
  padding: .85rem 2rem; border-radius: 8px;
  font-size: .95rem; font-weight: 700; text-decoration: none;
  border: 2px solid rgba(255,255,255,.4);
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-blue {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: transparent; color: var(--blue-dark);
  padding: .75rem 1.75rem; border-radius: 8px;
  font-size: .88rem; font-weight: 700; text-decoration: none;
  border: 2px solid var(--blue);
  transition: background .2s, color .2s;
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-text {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--blue-dark);
  padding: .85rem 2rem; border-radius: 8px;
  font-size: .95rem; font-weight: 800; text-decoration: none;
  border: 2px solid var(--blue);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.btn-text:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-primary svg, .btn-outline-white svg, .btn-outline-blue svg, .btn-text svg {
  width: 17px; height: 17px; fill: none; stroke: currentColor;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

/* ── SECTION BASE ── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: .7rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue-dark); margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  font-weight: 900; letter-spacing: -.035em;
  color: var(--text); line-height: 1.12; margin-bottom: 1rem;
}
.section-title span { color: var(--blue-dark); }
.section-sub { color: var(--gray); font-size: 1rem; font-weight: 400; max-width: 560px; line-height: 1.8; }
.section-title-center { text-align: center; }
.section-title-center .section-sub { margin: 0 auto; }

/* ── HOMEPAGE HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 42%, var(--blue-dark) 100%);
  padding: 4rem 2.5rem 4.75rem;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle at 70% 35%, rgba(0,158,255,.28), transparent 62%);
  pointer-events: none; z-index: 1;
}
.hero::before {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--off-white); clip-path: ellipse(60% 100% at 50% 100%); z-index: 1;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 430px; gap: 3.5rem;
  align-items: center; position: relative; z-index: 2;
}
.hero-left { max-width: 580px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,158,255,.16); border: 1px solid rgba(0,158,255,.35);
  border-radius: 20px; padding: .3rem .9rem;
  font-size: .72rem; font-weight: 700; color: var(--sky);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero-eyebrow::before { content: '★'; color: var(--gold-light); }
.hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.04em;
  color: var(--white); margin-bottom: 1rem; text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 .rotating-wrap { color: var(--sky); display: inline-block; min-width: 4ch; }
#rotatingCity { display: inline-block; transition: opacity .32s ease, transform .32s ease; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.78); font-weight: 400;
  line-height: 1.8; max-width: 470px; margin-bottom: 1.6rem;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.6rem; }
.hero-badge {
  display: flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px; padding: .4rem .85rem;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.88);
}
.hero-badge svg { width: 15px; height: 15px; stroke: var(--sky); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; }

/* hero entrance */
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-left > * { animation: heroRise .7s var(--ease) backwards; }
.hero-left > *:nth-child(1) { animation-delay: .05s; }
.hero-left > *:nth-child(2) { animation-delay: .13s; }
.hero-left > *:nth-child(3) { animation-delay: .21s; }
.hero-left > *:nth-child(4) { animation-delay: .29s; }
.hero-left > *:nth-child(5) { animation-delay: .37s; }

/* hero right — quote card */
.quote-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: 0 8px 50px rgba(0,34,53,.4), 0 0 0 1px rgba(255,255,255,.08);
  position: relative; overflow: hidden;
  animation: heroRise .8s var(--ease) .25s backwards;
  transition: box-shadow .35s var(--ease);
}
.quote-card:hover { box-shadow: 0 14px 60px rgba(0,34,53,.5), 0 0 0 1px rgba(255,255,255,.1); }
.quote-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--blue));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.quote-card-title { font-size: 1.1rem; font-weight: 900; color: var(--text); letter-spacing: -.02em; margin-bottom: .2rem; }
.quote-card-sub { font-size: .78rem; color: var(--gray); margin-bottom: 1rem; }

.form-group { margin-bottom: .6rem; }
.form-group label {
  display: block; font-size: .7rem; font-weight: 700; color: var(--text);
  margin-bottom: .22rem; letter-spacing: .03em; text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .52rem .8rem;
  border: 1.5px solid var(--border); border-radius: 7px;
  font-size: .88rem; font-family: 'Inter', sans-serif;
  color: var(--text); background: var(--off-white);
  transition: border-color .2s, background .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue-dark); background: var(--white);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 56px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.btn-form-submit {
  width: 100%; background: var(--blue); color: var(--white);
  border: none; padding: .8rem; border-radius: 8px;
  font-size: .95rem; font-weight: 800; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: background .2s, transform .15s;
  letter-spacing: -.01em; margin-top: .5rem;
}
.btn-form-submit:hover { background: var(--blue-bright); transform: translateY(-1px); }
.btn-form-submit:disabled { opacity: .85; cursor: default; transform: none; }
.form-disclaimer { font-size: .68rem; color: var(--gray-light); margin-top: .55rem; line-height: 1.5; text-align: center; }
.form-call-link {
  display: block; text-align: center; font-size: .88rem; font-weight: 700;
  color: var(--blue-dark); text-decoration: none; margin-top: .7rem; transition: color .2s;
}
.form-call-link:hover { color: var(--navy); }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--off-white); border-bottom: 1px solid var(--border); }
.trust-strip-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: stretch; justify-content: space-around; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .7rem;
  padding: 1.25rem 1.4rem; border-right: 1px solid var(--border);
  flex: 1; min-width: 175px;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-icon svg { width: 19px; height: 19px; stroke: #fff; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.trust-text strong { display: block; font-size: .86rem; font-weight: 800; color: var(--text); }
.trust-text span { font-size: .74rem; color: var(--gray); }

/* ── HOOK + HOW IT WORKS (compact) ── */
.howto { background: var(--white); }
.howto-hook {
  text-align: center; max-width: 760px; margin: 0 auto 2.5rem;
}
.howto-hook h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 900;
  letter-spacing: -.03em; color: var(--text); line-height: 1.18; margin-bottom: .75rem;
}
.howto-hook h2 span { color: var(--blue-dark); }
.howto-hook p { color: var(--gray); font-size: 1rem; line-height: 1.75; }
.howto-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem; max-width: 960px; margin: 0 auto;
}
.howto-step {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 1.4rem; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.howto-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,158,255,.25); }
.howto-step .hs-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff; font-size: .9rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin-bottom: .9rem;
}
.howto-step h4 { font-size: .98rem; font-weight: 800; color: var(--text); margin-bottom: .35rem; letter-spacing: -.01em; }
.howto-step p { font-size: .85rem; color: var(--gray); line-height: 1.6; }
.howto-note {
  max-width: 720px; margin: 2rem auto 0; text-align: center;
  font-size: .9rem; color: var(--gray); line-height: 1.7;
}
.howto-note strong { color: var(--blue-dark); }

/* ── SERVICES ── */
#services { background: var(--off-white); padding: 5.5rem 2rem; }
.services-head { text-align: center; margin-bottom: 3rem; }
.services-head .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.9rem 1.6rem 1.65rem;
  text-decoration: none; display: block; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(0,57,90,.16); border-color: rgba(0,158,255,.25); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,158,255,.12), rgba(131,214,255,.1));
  border: 1px solid rgba(0,158,255,.16);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
  transition: background .25s;
}
.svc-icon svg { width: 26px; height: 26px; stroke: var(--blue); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.svc-card:hover .svc-icon { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); border-color: transparent; }
.svc-card:hover .svc-icon svg { stroke: #fff; transform: scale(1.06); }
.svc-card h3 { font-size: 1.08rem; font-weight: 800; color: var(--text); margin-bottom: .45rem; letter-spacing: -.02em; }
.svc-card p { font-size: .84rem; color: var(--gray); line-height: 1.6; }
.svc-tasks { list-style: none; margin: .75rem 0 0; }
.svc-tasks li {
  font-size: .8rem; color: var(--gray); padding: .12rem 0 .12rem 1.1rem; position: relative; line-height: 1.5;
}
.svc-tasks li::before { content: '✓'; position: absolute; left: 0; color: var(--blue-dark); font-weight: 900; font-size: .78rem; }
.svc-card .svc-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .8rem; font-weight: 700; color: var(--blue-dark); margin-top: .9rem;
}
.svc-card .svc-link::after { content: '→'; transition: transform .2s; }
.svc-card:hover .svc-link::after { transform: translateX(4px); }

/* ── REVIEW REEL ── */
.review-reel { background: var(--navy); padding: 2.75rem 0; overflow: hidden; position: relative; }
.reel-header { text-align: center; margin-bottom: 1.75rem; padding: 0 2rem; }
.reel-header .section-label { color: var(--sky); }
.reel-header h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; color: #fff; letter-spacing: -.03em; }
.reel-rating {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: .75rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px; padding: .4rem 1rem; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.78);
}
.reel-rating .reel-stars { color: #f59e0b; letter-spacing: 2px; }
.review-reel::before, .review-reel::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.review-reel::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.review-reel::after  { right: 0; background: linear-gradient(to left, var(--navy), transparent); }
.reel-track { display: flex; gap: 1.25rem; width: max-content; animation: scrollReel 55s linear infinite; }
.reel-track:hover { animation-play-state: paused; }
@keyframes scrollReel { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.reel-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid transparent;
  border-radius: var(--radius); padding: 1.35rem 1.5rem;
  min-width: 300px; max-width: 320px; flex-shrink: 0; transition: background .2s, border-left-color .2s;
}
.reel-card:hover { background: rgba(255,255,255,.1); border-left-color: var(--blue); }
.reel-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .65rem; }
.reel-stars { color: #f59e0b; font-size: .88rem; letter-spacing: 2px; }
.reel-badge svg { width: 20px; height: 20px; }
.reel-text { font-size: .84rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: .9rem; font-style: italic; }
.reel-author { display: flex; align-items: center; gap: .6rem; }
.reel-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .72rem; color: #fff; flex-shrink: 0; }
.reel-name { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.92); }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-slideshow { position: relative; width: 100%; height: 100%; }
.about-slideshow .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; }
.about-slideshow .slide.active { opacity: 1; position: relative; }
.slide-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slide-dots .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: background .3s; border: none; padding: 0; }
.slide-dots .dot.active { background: #fff; }
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p { color: var(--gray); font-size: 1rem; line-height: 1.85; margin-bottom: 1.2rem; }
.about-points { list-style: none; margin-top: 1.25rem; display: grid; gap: .6rem; }
.about-points li { display: flex; gap: .65rem; align-items: flex-start; font-size: .9rem; color: var(--text); font-weight: 500; }
.about-points li svg { width: 20px; height: 20px; stroke: var(--blue); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 1px; }

/* ── SERVICE AREAS ── */
#areas { background: var(--off-white); }
.areas-grid { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2rem; }
.area-pill {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 6px; padding: .5rem 1rem;
  font-size: .84rem; font-weight: 600; color: var(--navy);
  transition: transform .3s var(--ease), border-color .2s, background .2s, color .2s;
}
.area-pill:hover { transform: translateY(-2px); border-color: var(--blue-dark); color: var(--blue-dark); background: var(--blue-pale); }
.areas-map-note { margin-top: 1.5rem; font-size: .85rem; color: var(--gray); font-style: italic; }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 2.5rem auto 0; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  margin-bottom: .8rem; overflow: hidden; background: var(--white);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item.open { border-color: rgba(0,158,255,.4); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: none; font-family: 'Inter', sans-serif;
  padding: 1.15rem 1.35rem; font-size: .95rem; font-weight: 700; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-q:hover { color: var(--blue-dark); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px; background: var(--blue); border-radius: 2px; transform: translate(-50%, -50%);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s var(--ease); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a { max-height: 0; overflow: hidden; visibility: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-a { visibility: visible; }
.faq-a-inner { padding: 0 1.35rem 1.2rem; font-size: .9rem; color: var(--gray); line-height: 1.75; }

/* ── CALL/TEXT CTA STRIP ── */
.cta-strip { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.25rem 2rem; }
.cta-strip-inner { max-width: 880px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cta-strip h3 { font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 900; color: var(--text); letter-spacing: -.025em; line-height: 1.2; }
.cta-strip p { font-size: .92rem; color: var(--gray); max-width: 520px; line-height: 1.7; margin-top: -.35rem; }
.cta-strip-btns { display: flex; gap: .85rem; flex-wrap: wrap; justify-content: center; }

/* ── CTA SECTION ── */
#cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  text-align: center; padding: 6rem 2rem; position: relative; overflow: hidden;
}
#cta-section::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,158,255,.16), transparent 70%);
}
#cta-section .section-label { color: var(--sky); }
#cta-section .section-title { color: var(--white); }
#cta-section .section-sub { color: rgba(255,255,255,.68); margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer-blue-bar { height: 3px; background: linear-gradient(90deg, transparent, var(--blue), var(--sky), var(--blue), transparent); opacity: .5; }
footer { background: var(--navy-deep); padding: 4.5rem 2.5rem 2.5rem; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.25fr; gap: 3rem; }
.footer-brand img { height: 52px; width: auto; aspect-ratio: 598 / 356; display: block; margin-bottom: 1rem; background: #fff; padding: 8px 14px; border-radius: 10px; }
.footer-brand-name { font-size: 1.05rem; font-weight: 900; color: var(--white); letter-spacing: -.02em; margin-bottom: .3rem; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.62); line-height: 1.75; max-width: 240px; }
.footer-col h4 { font-size: .68rem; font-weight: 800; color: rgba(255,255,255,.62); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a { color: rgba(255,255,255,.58); font-size: .88rem; text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--sky); }
.footer-contact p { font-size: .88rem; color: rgba(255,255,255,.58); line-height: 1.85; }
.footer-contact a { color: var(--sky); text-decoration: none; font-weight: 600; transition: color .2s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1140px; margin: 2.5rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.6); flex-wrap: wrap; gap: .5rem;
}
.footer-cities { font-size: .75rem; color: rgba(255,255,255,.58); margin-top: .35rem; }

/* ── SERVICE PAGE HERO ── */
.service-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--blue-dark) 100%);
  padding: 4.5rem 2.5rem; position: relative; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,158,255,.14), transparent 65%); pointer-events: none;
}
.service-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 50px;
  background: var(--off-white); clip-path: ellipse(55% 100% at 50% 100%);
}
.service-hero-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: rgba(255,255,255,.66); margin-bottom: 1.25rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.66); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.85); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }
.service-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); letter-spacing: -.04em; line-height: 1.1; margin-bottom: .85rem; max-width: 720px; }
.service-hero p { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 620px; line-height: 1.8; margin-bottom: 2rem; }
.service-hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.service-hero-badge { display: flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 6px; padding: .35rem .8rem; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.82); }
.service-hero-badge svg { width: 14px; height: 14px; stroke: var(--sky); stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ── WHAT'S INCLUDED ── */
.included { background: var(--off-white); padding: 4.5rem 2rem; }
.included-inner { max-width: 1140px; margin: 0 auto; }
.included-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.included-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1.35rem; display: flex; gap: .85rem; align-items: flex-start;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.included-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(0,158,255,.25); }
.included-card .ic-check { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--navy)); flex-shrink: 0; display: grid; place-items: center; margin-top: 1px; }
.included-card .ic-check::after { content: '✓'; color: #fff; font-size: .72rem; font-weight: 900; }
.included-card span { font-size: .9rem; font-weight: 600; color: var(--text); line-height: 1.45; }

/* ── PROCESS (service pages) ── */
.process { background: var(--white); padding: 4.5rem 2rem; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.process-step {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,158,255,.22); }
.process-step::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: linear-gradient(180deg, var(--blue), var(--sky)); }
.ps-num { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; font-size: .95rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.process-step h4 { font-size: .98rem; font-weight: 800; color: var(--text); margin-bottom: .4rem; letter-spacing: -.01em; }
.process-step p { font-size: .85rem; color: var(--gray); line-height: 1.65; }
.process-note {
  max-width: 760px; margin: 2.25rem auto 0; text-align: center;
  font-size: .9rem; color: var(--gray); line-height: 1.7;
  background: var(--off-white); border: 1.5px dashed var(--border); border-radius: var(--radius); padding: 1rem 1.5rem;
}
.process-note strong { color: var(--blue-dark); }

/* ── BEFORE/AFTER + PHOTO SHOWCASE ── */
.svc-gallery { background: var(--off-white); padding: 4.5rem 2rem; }
.svc-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.svc-shot {
  border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc-shot:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.svc-shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); cursor: zoom-in; }
.svc-shot:hover img { transform: scale(1.05); }
.svc-shot .gl-ba { position: absolute; top: 10px; left: 10px; background: rgba(0,34,53,.78); border: 1px solid rgba(255,255,255,.25); border-radius: 4px; padding: .2rem .55rem; font-size: .62rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .08em; z-index: 2; }
.svc-shot.empty { display: grid; place-items: center; }
.svc-shot.empty img { display: none; }
.svc-shot.empty::after { content: "📷  Photos coming soon"; color: rgba(255,255,255,.55); font-size: .8rem; font-weight: 600; }
.svc-shot.empty .gl-ba { display: none; }

/* ── RELATED SERVICES ── */
.related-services { background: var(--white); padding: 4rem 2rem; }
.related-inner { max-width: 1140px; margin: 0 auto; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1rem; margin-top: 2rem; }
.related-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 1.35rem 1.25rem; text-decoration: none; display: block;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(0,158,255,.25); }
.related-card .rc-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--blue-pale); display: grid; place-items: center; margin-bottom: .65rem; }
.related-card .rc-icon svg { width: 20px; height: 20px; stroke: var(--blue); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.related-card h4 { font-size: .9rem; font-weight: 800; color: var(--text); margin-bottom: .2rem; }
.related-card p { font-size: .78rem; color: var(--gray); line-height: 1.5; }

/* ── PROOF BAND (single real review, service pages) ── */
.proof-band { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); padding: 4rem 2rem; position: relative; overflow: hidden; }
.proof-band::before { content: ''; position: absolute; top: -50px; left: 50%; transform: translateX(-50%); width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(0,158,255,.14), transparent 70%); }
.proof-band-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.proof-band .pb-stars { color: #f59e0b; letter-spacing: 3px; font-size: 1.05rem; }
.proof-band blockquote { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 700; color: #fff; line-height: 1.5; letter-spacing: -.02em; margin: 1rem 0 1.1rem; font-style: italic; }
.proof-band .pb-author { font-size: .9rem; font-weight: 800; color: var(--sky); }
.proof-band .pb-src { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .2rem; }

/* ── PAGE HEADER (gallery) ── */
.page-header { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); padding: 4.5rem 2rem 3.5rem; text-align: center; position: relative; }
.page-header .section-label { color: var(--sky); }
.page-header h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 900; letter-spacing: -.03em; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* ── GALLERY ── */
.gallery-section { background: var(--off-white); padding: 4.5rem 2rem; border-bottom: 1px solid var(--border); }
.gallery-section:nth-of-type(even) { background: var(--white); }
.gal-head { max-width: 720px; margin-bottom: 2rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }

/* ── MOBILE STICKY ACTION BAR ── */
.mobile-cta-bar { display: none; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 250;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 6px 22px rgba(0,57,90,.4);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.9);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,57,90,.5); }
.back-to-top svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ── FADE-IN ── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); will-change: opacity, transform; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; z-index: 600; background: rgba(0,34,53,.92); display: none; align-items: center; justify-content: center; padding: 2rem; cursor: zoom-out; opacity: 0; transition: opacity .25s var(--ease); }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 94%; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,.6); }
.lightbox-close { position: absolute; top: 1.25rem; right: 1.5rem; width: 44px; height: 44px; border: none; cursor: pointer; background: rgba(255,255,255,.1); border-radius: 50%; color: #fff; font-size: 1.6rem; line-height: 1; display: grid; place-items: center; transition: background .2s; }
.lightbox-close:hover { background: rgba(255,255,255,.22); }

/* ── KEYBOARD FOCUS (visible focus ring for accessibility) ── */
a:focus-visible, button:focus-visible, .svc-card:focus-visible, .related-card:focus-visible,
.faq-q:focus-visible, .area-pill:focus-visible, .hamburger:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--sky); outline-offset: 2px; border-radius: 4px;
}

/* ── GALLERY EMPTY STATE (until real photos are added) ── */
.gallery-empty {
  text-align: center; max-width: 580px; margin: 1rem auto; padding: 3rem 2rem;
  background: var(--white); border: 1.5px dashed var(--border); border-radius: var(--radius-lg);
}
.gallery-empty svg { width: 42px; height: 42px; stroke: var(--blue); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.gallery-empty h3 { font-size: 1.2rem; font-weight: 900; color: var(--text); margin: .75rem 0 .4rem; letter-spacing: -.02em; }
.gallery-empty p { font-size: .92rem; color: var(--gray); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav { padding: 0 1.75rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1000px) {
  .nav-center, .nav-phone { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .quote-card { max-width: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .howto-steps { grid-template-columns: 1fr; max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .quote-card { margin: 0 auto; }
}
@media (max-width: 900px) {
  .trust-strip-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; height: 72px; }
  .nav-logo img { height: 48px; }
  nav.scrolled .nav-logo img { height: 44px; }
  .hero { padding: 3rem 1.25rem 4rem; }
  section { padding: 3.5rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-hero { padding: 3rem 1.25rem 4rem; }
  /* sticky mobile bar */
  .mobile-cta-bar {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 280;
    background: var(--navy-deep); box-shadow: 0 -4px 24px rgba(0,34,53,.45);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mcb-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .15rem; padding: .6rem .3rem; font-size: .72rem; font-weight: 800; text-decoration: none; color: #fff; border-right: 1px solid rgba(255,255,255,.12); }
  .mcb-btn:last-child { border-right: none; }
  .mcb-btn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
  .mcb-btn.call { color: var(--sky); }
  .mcb-btn.call svg { fill: currentColor; stroke: none; }
  .mcb-btn.text { color: var(--blue-bright); }
  .mcb-btn.quote { background: var(--blue); color: #fff; }
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom, 0)); }
  .back-to-top.show { bottom: calc(4.75rem + env(safe-area-inset-bottom, 0)); }
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}
