/* ============================================================
   SEASTREAM SOFTWASH — main.css
   Navy #0c1f70 | Royal #1a4fc9 | Blue #3580e8 | Gold #d4a41c
   ============================================================ */

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

:root {
  --navy:        #0c1f70;
  --navy-deep:   #07123f;
  --royal:       #1a4fc9;
  --blue:        #3580e8;
  --sky:         #6ab5ff;
  --gold:        #d4a41c;
  --gold-light:  #f0c840;
  --white:       #ffffff;
  --off-white:   #f3f8ff;
  --text:        #0d1a3e;
  --gray:        #5b6a8c;
  --gray-light:  #8fa3c0;
  --border:      #d6e5f5;
  --shadow-sm:   0 2px 8px rgba(12,31,112,.07);
  --shadow-md:   0 6px 30px rgba(12,31,112,.13);
  --shadow-lg:   0 20px 70px rgba(12,31,112,.18);
  --radius:      10px;
  --radius-lg:   16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── 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(--gold);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}
.top-bar a:hover { color: var(--gold-light); }
.top-bar strong { color: rgba(255,255,255,.9); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 300;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 80px;
  box-shadow: 0 2px 20px rgba(7,18,63,.35);
}
.nav-logo { display: flex; align-items: center; gap: .85rem; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 72px; width: auto; display: block; }
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-text .brand { font-size: 1.05rem; font-weight: 900; color: var(--white); letter-spacing: -.02em; }
.nav-logo-text .sub { font-size: .65rem; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; }

.nav-center { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-center > li { position: relative; }
.nav-center > li > a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  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(--white); background: rgba(255,255,255,.1); }
.nav-center > li.active > a { color: var(--gold-light); }
.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: 220px;
  padding: .5rem 0;
  z-index: 400;
}
.nav-center > li:hover .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(--royal); }
.nav-dropdown a .dd-icon { font-size: 1rem; width: 20px; text-align: center; }
.nav-dropdown .dd-divider { height: 1px; background: var(--border); margin: .35rem 0; }

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

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); 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: 80px; 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(7,18,63,.4);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block; 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(--gold); }
.mobile-nav .mobile-services-label {
  font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.4);
  letter-spacing: .1em; text-transform: uppercase;
  padding: .9rem 0 .3rem;
}
.mobile-nav .mobile-cta-btn {
  display: block; text-align: center;
  background: var(--gold); color: var(--navy-deep);
  font-weight: 800; font-size: .95rem;
  padding: .85rem; border-radius: 8px;
  text-decoration: none; margin-top: 1.25rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--royal); color: var(--white);
  padding: .85rem 2rem; border-radius: 8px;
  font-size: .95rem; font-weight: 700;
  text-decoration: none; letter-spacing: -.01em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 3px 14px rgba(26,79,201,.3);
}
.btn-primary:hover {
  background: #1540b0;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26,79,201,.4);
}
.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--navy-deep);
  padding: .85rem 2rem; border-radius: 8px;
  font-size: .95rem; font-weight: 800;
  text-decoration: none; letter-spacing: -.01em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 3px 14px rgba(212,164,28,.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212,164,28,.4);
}
.btn-outline-white {
  display: inline-block;
  background: transparent; color: var(--white);
  padding: .85rem 2rem; border-radius: 8px;
  font-size: .95rem; font-weight: 600;
  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-royal {
  display: inline-block;
  background: transparent; color: var(--royal);
  padding: .75rem 1.75rem; border-radius: 8px;
  font-size: .88rem; font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--royal);
  transition: background .2s, color .2s;
}
.btn-outline-royal:hover { background: var(--royal); color: var(--white); }

/* ── 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(--gold); 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(--royal); }
.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) 55%, #1a3a8a 100%);
  padding: 4rem 2.5rem 4.5rem;
  position: relative; overflow: hidden;
}
/* subtle radial glow behind hero content */
.hero::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,79,201,.25), transparent 65%);
  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 */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,164,28,.15); border: 1px solid rgba(212,164,28,.3);
  border-radius: 20px; padding: .3rem .9rem;
  font-size: .72rem; font-weight: 700; color: var(--gold);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before { content: '★'; }
.hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 900; line-height: 1.12;
  letter-spacing: -.04em; color: var(--white);
  margin-bottom: 1rem;
}
.hero h1 .accent { color: var(--sky); }
.hero h1 .rotating-wrap { color: var(--gold); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  font-weight: 400; line-height: 1.8; max-width: 460px;
  margin-bottom: 1.75rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.75rem;
}
.hero-badge {
  display: flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; padding: .4rem .85rem;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.85);
}
.hero-badge .badge-icon { font-size: .95rem; }
.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; }

/* hero right — quote card */
.quote-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 8px 50px rgba(7,18,63,.4), 0 0 0 1px rgba(255,255,255,.08);
  position: relative; overflow: hidden;
}
.quote-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.quote-card-title {
  font-size: 1.05rem; font-weight: 900; color: var(--text);
  letter-spacing: -.02em; margin-bottom: .2rem;
}
.quote-card-sub { font-size: .78rem; color: var(--gray); margin-bottom: 1.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 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 textarea:focus {
  outline: none; border-color: var(--royal); background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }

.services-label {
  font-size: .7rem; font-weight: 700; color: var(--text);
  letter-spacing: .03em; text-transform: uppercase;
  margin: .7rem 0 .5rem;
}
.services-checks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .3rem .5rem; margin-bottom: .8rem;
}
.check-item {
  display: flex; align-items: center; gap: .45rem;
  cursor: pointer;
}
.check-item input[type="checkbox"] { display: none; }
.checkmark {
  width: 17px; height: 17px; border-radius: 4px;
  border: 1.5px solid var(--border); background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color .2s, background .2s, transform .15s;
}
.checkmark::after {
  content: '✓'; font-size: .7rem; font-weight: 700;
  color: var(--white); display: none;
}
.check-item input:checked ~ .checkmark {
  background: var(--royal); border-color: var(--royal);
}
.check-item input:checked ~ .checkmark::after { display: block; }
.check-item .check-label { font-size: .8rem; font-weight: 500; color: var(--text); }

.btn-form-submit {
  width: 100%; background: var(--royal); color: var(--white);
  border: none; padding: .75rem; 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: .35rem;
}
.btn-form-submit:hover { background: #1540b0; transform: translateY(-1px); }
.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(--royal);
  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);
  padding: 0;
}
.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.5rem;
  border-right: 1px solid var(--border);
  flex: 1; min-width: 180px;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.trust-text strong {
  display: block; font-size: .88rem; font-weight: 800; color: var(--text);
}
.trust-text span { font-size: .75rem; color: var(--gray); }

/* ── SERVICES SECTION ── */
#services { background: var(--white); padding: 5.5rem 2rem; }
.services-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem;
  gap: 2rem; flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-bottom: 3rem;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  text-decoration: none;
  display: block;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--sky));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  border-color: rgba(26,79,201,.25);
}
.svc-icon {
  width: 52px; height: 52px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.1rem;
  transition: background .25s;
}
.svc-card:hover .svc-icon { background: rgba(26,79,201,.1); }
.svc-card h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--text);
  margin-bottom: .4rem; letter-spacing: -.02em;
}
.svc-card p { font-size: .84rem; color: var(--gray); line-height: 1.65; }
.svc-card .svc-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .8rem; font-weight: 700; color: var(--royal);
  margin-top: .85rem; text-decoration: none;
}
.svc-card .svc-link::after { content: '→'; transition: transform .2s; }
.svc-card:hover .svc-link::after { transform: translateX(4px); }

/* ── CONCRETE COMBO FEATURED ── */
.concrete-feature {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem; position: relative; overflow: hidden;
  border: 1px solid rgba(212,164,28,.2);
}
.concrete-feature::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,28,.15), transparent 70%);
}
.concrete-feature-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: center;
}
.cf-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(212,164,28,.2); border: 1px solid rgba(212,164,28,.4);
  border-radius: 20px; padding: .25rem .8rem;
  font-size: .68rem; font-weight: 800; color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem;
}
.cf-tag::before { content: '★'; }
.concrete-feature h3 {
  font-size: 1.5rem; font-weight: 900; color: var(--white);
  letter-spacing: -.03em; margin-bottom: .5rem;
}
.concrete-feature p { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.7; max-width: 460px; }
.cf-combo {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem;
}
.cf-chip {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px; padding: .35rem .75rem;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: .3rem;
}
.cf-chip::before { content: '✓'; color: var(--gold); font-weight: 900; }
.cf-cta { flex-shrink: 0; text-align: center; }
.cf-cta .cf-price {
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.5);
  letter-spacing: .06em; text-transform: uppercase; margin-top: .6rem;
}

/* ── WHY CHOOSE US ── */
#why { background: var(--off-white); }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex; gap: 1.1rem; align-items: flex-start;
  transition: box-shadow .2s, border-color .2s;
}
.why-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(26,79,201,.2);
}
.why-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: var(--white); font-size: .85rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-text h4 {
  font-size: .95rem; font-weight: 800; color: var(--text);
  margin-bottom: .3rem; letter-spacing: -.01em;
}
.why-text p { font-size: .84rem; color: var(--gray); line-height: 1.65; }

/* ── Review star glyphs (reused by the review wall) ── */
.reel-stars { color: #f59e0b; font-size: .88rem; letter-spacing: 2px; }

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

/* ── 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(212,164,28,.12), transparent 70%);
}
#cta-section .section-label { color: var(--gold); }
#cta-section .section-title { color: var(--white); }
#cta-section .section-sub { color: rgba(255,255,255,.65); margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
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: 56px; margin-bottom: .85rem; }
.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,.4); line-height: 1.75; max-width: 230px; }
.footer-col h4 {
  font-size: .68rem; font-weight: 800; color: rgba(255,255,255,.4);
  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(--gold); }
.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,.22); flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-cities { font-size: .75rem; color: rgba(255,255,255,.2); margin-top: .35rem; }
.footer-gold-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: .4;
}

/* ── SERVICE PAGE HERO ── */
.service-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1a3a8a 100%);
  padding: 4.5rem 2.5rem;
  position: relative; overflow: hidden;
}
/* decorative glow */
.service-hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,28,.1), 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,.5);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); 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: 700px;
}
.service-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  max-width: 600px; 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,.15);
  border-radius: 6px; padding: .35rem .8rem;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.8);
}

/* ── SERVICE PAGE CONTENT ── */
.service-intro { background: var(--off-white); padding: 4.5rem 2rem; }
.service-intro-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.service-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-placeholder-label {
  text-align: center; color: rgba(255,255,255,.4);
}
.img-placeholder-label .ph-icon { font-size: 3rem; margin-bottom: .75rem; display: block; }
.img-placeholder-label p { font-size: .82rem; line-height: 1.6; }

.service-intro-text .section-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .85rem; }
.service-intro-text p { color: var(--gray); font-size: .97rem; line-height: 1.85; margin-bottom: 1rem; }
.service-intro-text .btn-primary { margin-top: .5rem; }

/* ── WHY CHOOSE US — SERVICE PAGE ── */
.why-service { background: var(--white); padding: 4.5rem 2rem; }
.why-service-inner { max-width: 1140px; margin: 0 auto; }
.why-service-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; margin-top: 3.5rem; align-items: start;
}
.why-checks { display: flex; flex-direction: column; gap: 1.25rem; }
.why-check-item { display: flex; gap: 1rem; align-items: flex-start; }
.check-circle {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .1rem;
}
.check-circle::after { content: '✓'; color: var(--white); font-size: .78rem; font-weight: 900; }
.why-check-item h4 {
  font-size: .95rem; font-weight: 800; color: var(--text);
  margin-bottom: .2rem; letter-spacing: -.01em;
}
.why-check-item p { font-size: .84rem; color: var(--gray); line-height: 1.65; }
.why-service-img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); position: sticky; top: 100px;
}
.why-service-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── RELATED SERVICES ── */
.related-services { background: var(--off-white); padding: 4rem 2rem; }
.related-inner { max-width: 1140px; margin: 0 auto; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 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: border-color .2s, box-shadow .2s, transform .2s;
}
.related-card:hover {
  border-color: rgba(26,79,201,.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.related-card .rc-icon { font-size: 1.5rem; margin-bottom: .6rem; display: block; }
.related-card h4 { font-size: .88rem; font-weight: 800; color: var(--text); margin-bottom: .2rem; }
.related-card p { font-size: .78rem; color: var(--gray); line-height: 1.5; }

/* ── ABOUT PAGE ── */
.about-story { background: var(--off-white); padding: 5rem 2rem; }
.about-story-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text p { color: var(--gray); font-size: .97rem; line-height: 1.9; margin-bottom: 1.25rem; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 2rem;
}
.stat-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem; text-align: center;
}
.stat-card .stat-num {
  font-size: 2rem; font-weight: 900; color: var(--royal);
  letter-spacing: -.04em; display: block;
}
.stat-card .stat-label { font-size: .75rem; color: var(--gray); font-weight: 600; }

/* ── CONTACT PAGE ── */
.contact-section { background: var(--off-white); padding: 5rem 2rem; }
.contact-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
}
.contact-info h3 { font-size: 1.3rem; font-weight: 900; color: var(--text); margin-bottom: .5rem; }
.contact-info p { color: var(--gray); font-size: .97rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text strong {
  display: block; font-size: .85rem; font-weight: 800; color: var(--text);
  margin-bottom: .15rem;
}
.contact-detail-text span, .contact-detail-text a {
  font-size: .9rem; color: var(--gray); line-height: 1.6;
}
.contact-detail-text a { color: var(--royal); text-decoration: none; font-weight: 600; }
.contact-form-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 {
  font-size: 1.25rem; font-weight: 900; color: var(--text);
  margin-bottom: .3rem;
}
.contact-form-card .sub { font-size: .84rem; color: var(--gray); margin-bottom: 1.5rem; }
.contact-form-card .form-group { margin-bottom: .85rem; }
.contact-form-card select {
  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; cursor: pointer;
}
.contact-form-card select:focus { outline: none; border-color: var(--royal); }

/* ── GALLERY PAGE ── */
.gallery-section { background: var(--off-white); padding: 5rem 2rem; }

/* ── GALLERY OVERLAY ── */
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,18,63,.88), transparent);
  padding: 1.5rem 1rem .75rem;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.gallery-label .gl-service {
  font-size: .72rem; font-weight: 800; color: var(--gold);
  letter-spacing: .08em; text-transform: uppercase; display: block;
  margin-bottom: .2rem;
}
.gallery-label .gl-tag {
  font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.75);
}
.gallery-label .gl-ba {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px; padding: .2rem .55rem;
  font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .06em; flex-shrink: 0;
}

/* ── PHOTO STRIP (homepage) ── */
.photo-strip { background: var(--navy); padding: 0; overflow: hidden; }
.photo-strip-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  height: 340px;
}
.strip-item { position: relative; overflow: hidden; cursor: pointer; }
.strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.strip-item:hover img { transform: scale(1.06); }
.strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,18,63,.82) 0%, rgba(7,18,63,.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem 1.1rem;
  transition: background .3s;
}
.strip-item:hover .strip-overlay { background: linear-gradient(to top, rgba(7,18,63,.92) 0%, rgba(7,18,63,.2) 60%); }
.strip-service {
  font-size: .68rem; font-weight: 800; color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: .25rem;
}
.strip-label { font-size: .95rem; font-weight: 800; color: var(--white); letter-spacing: -.01em; }
.strip-ba {
  font-size: .72rem; color: rgba(255,255,255,.6); margin-top: .2rem;
}
@media (max-width: 640px) {
  .photo-strip-inner { grid-template-columns: 1fr; height: auto; }
  .strip-item { height: 220px; }
}

/* ── SCROLL BEHAVIOR for images ── */
.service-img-wrap img,
.why-service-img img,
.about-img-wrap img { transition: transform .4s ease; }
.service-img-wrap:hover img,
.why-service-img:hover img,
.about-img-wrap:hover img { transform: scale(1.02); }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 1100px) {
  nav { padding: 0 1.75rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .quote-card { max-width: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-intro-inner { grid-template-columns: 1fr; }
  .why-service-grid { grid-template-columns: 1fr; }
  .why-service-img { position: static; aspect-ratio: 16/9; }
  .about-story-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .concrete-feature-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .hero { padding: 3rem 1.25rem 4rem; }
  section { padding: 3.5rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-strip-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .about-stats { grid-template-columns: 1fr 1fr 1fr; }
  .service-hero { padding: 3rem 1.25rem 4rem; }
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .services-checks { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr; }
  nav { height: 68px; }
  .mobile-nav { top: 68px; }
}

/* ============================================================
   ENHANCEMENTS v2 — sleeker, more modern, smoother motion
   ============================================================ */

:root { --ease: cubic-bezier(.22,.61,.36,1); }

/* ── NAV: tightens + frosts on scroll ── */
nav { transition: height .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease); will-change: height; }
nav.scrolled {
  height: 66px;
  background: rgba(9,23,80,.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 6px 26px rgba(7,18,63,.45);
}
nav.scrolled .nav-logo img { height: 58px; transition: height .3s var(--ease); }
.nav-logo img { transition: height .3s var(--ease); }

/* collapse desktop nav to hamburger earlier — no cramped middle zone */
@media (max-width: 1000px) {
  .nav-center, .nav-phone { display: none !important; }
  .hamburger { display: flex !important; }
}

/* ── HERO: real-photo backdrop + cinematic overlay ── */
.hero {
  background:
    linear-gradient(110deg, rgba(7,18,63,.95) 0%, rgba(10,26,95,.9) 42%, rgba(20,52,128,.72) 100%),
    url('../images/housewash1.webp');
  background-size: cover;
  background-position: center 35%;
  padding-top: 4.75rem; padding-bottom: 5.25rem;
}
/* soft grain/vignette for depth */
.hero::after {
  background: radial-gradient(circle at 78% 30%, rgba(53,128,232,.28), transparent 60%);
  width: 620px; height: 620px;
}
.hero-eyebrow {
  background: rgba(212,164,28,.16);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 14px rgba(0,0,0,.15);
}
.hero h1 { text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.rotating-wrap { display: inline-block; min-width: 4ch; }

/* hero entrance animation */
@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; }
.quote-card { animation: heroRise .8s var(--ease) .25s backwards; }
.quote-card:hover { box-shadow: 0 14px 60px rgba(7,18,63,.5), 0 0 0 1px rgba(255,255,255,.1); }
.quote-card { transition: box-shadow .35s var(--ease); }

/* ── SVG ICONS (replacing emoji) ── */
.svc-icon svg, .trust-icon svg, .hero-badge svg, .why-num svg { display: block; }
.svc-icon {
  background: linear-gradient(135deg, rgba(26,79,201,.12), rgba(53,128,232,.08));
  border: 1px solid rgba(26,79,201,.14);
}
.svc-icon svg { width: 26px; height: 26px; stroke: var(--royal); 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(--royal), var(--blue)); border-color: transparent; }
.svc-card:hover .svc-icon svg { stroke: #fff; transform: scale(1.06); }
.trust-icon svg { width: 19px; height: 19px; stroke: #fff; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.hero-badge svg { width: 15px; height: 15px; stroke: var(--gold-light); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── SMOOTHER CARD MOTION ── */
.svc-card, .why-card, .area-pill, .reel-card, .related-card { transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(12,31,112,.16); }
.btn-gold, .btn-primary, .btn-nav-quote, .btn-outline-white { transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
.btn-gold:hover, .btn-primary:hover { transform: translateY(-3px); }

/* ── FADE-IN: staggered, smoother (JS adds .visible) ── */
.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; }

/* ── PHOTO STRIP: taller, richer ── */
.photo-strip-inner { height: 380px; }
.strip-item img { transition: transform .6s var(--ease); }
.strip-item:hover img { transform: scale(1.08); }

/* ── SERVICE AREAS: interactive pills ── */
.area-pill:hover { transform: translateY(-2px); border-color: var(--royal); color: var(--royal); }

/* ── Menu icons (dropdown + mobile) ── */
.dd-icon { display: inline-flex; align-items: center; justify-content: center; width: 22px; }
.dd-icon svg { width: 17px; height: 17px; stroke: var(--royal); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.nav-dropdown a:hover .dd-icon svg { stroke: var(--royal); }
.m-ico { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; vertical-align: -3px; margin-right: .55rem; }

/* ── Back-to-top button ── */
.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(--royal), var(--navy));
  box-shadow: 0 6px 22px rgba(12,31,112,.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(12,31,112,.5); }
.back-to-top svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 600px) { .back-to-top { bottom: 1rem; right: 1rem; width: 42px; height: 42px; } }

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

/* ============================================================
   FUNNEL v3 — process, CTA strips, packages, FAQ, reviews,
   guarantee, mobile action bar, lightbox, click-to-text
   ============================================================ */

/* ── Click-to-text button (pairs with tel: buttons) ── */
.btn-text {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--royal);
  padding: .85rem 2rem; border-radius: 8px;
  font-size: .95rem; font-weight: 800; text-decoration: none;
  border: 2px solid var(--royal);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.btn-text:hover { background: var(--royal); color: #fff; transform: translateY(-2px); }
.btn-text svg, .btn-gold svg, .btn-primary svg, .btn-outline-white svg {
  width: 17px; height: 17px; fill: none; stroke: currentColor;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.btn-gold, .btn-primary, .btn-outline-white { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; }

/* ── REUSABLE 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-strip.on-navy {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-color: transparent;
}
.cta-strip.on-navy h3 { color: #fff; }
.cta-strip.on-navy p { color: rgba(255,255,255,.7); }

/* ── PROCESS / "HOW WE DO IT" ── */
.process { background: var(--white); }
.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(26,79,201,.22); }
.process-step::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--royal), var(--sky));
}
.ps-num {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--royal), 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(--royal); }

/* ── SERVICE-PAGE BEFORE/AFTER 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), #1a3a8a);
  cursor: zoom-in;
  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); }
.svc-shot:hover img { transform: scale(1.05); }
.svc-shot .gl-ba {
  position: absolute; top: 10px; left: 10px;
  background: rgba(7,18,63,.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;
}

/* ── FAQ ACCORDION ── */
.faq { background: var(--white); }
.faq-list { max-width: 800px; 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(26,79,201,.35); 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(--royal); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px; position: relative;
  transition: transform .3s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px; background: var(--royal); 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;
  transition: max-height .35s var(--ease);
}
.faq-a-inner { padding: 0 1.35rem 1.2rem; font-size: .9rem; color: var(--gray); line-height: 1.75; }

/* ── PACKAGES / RESULTS (no "membership" language) ── */
.packages { background: var(--off-white); }
.pkg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.pkg-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.85rem 1.6rem;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(26,79,201,.22); }
.pkg-card.featured {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(212,164,28,.18);
}
.pkg-flag {
  align-self: flex-start;
  background: rgba(212,164,28,.15); border: 1px solid rgba(212,164,28,.4);
  color: var(--gold); font-size: .62rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 20px; padding: .25rem .75rem; margin-bottom: .85rem;
}
.pkg-card h3 { font-size: 1.15rem; font-weight: 900; color: var(--text); letter-spacing: -.02em; margin-bottom: .5rem; }
.pkg-card > p { font-size: .86rem; color: var(--gray); line-height: 1.65; margin-bottom: 1rem; }
.pkg-includes { list-style: none; margin: 0 0 1.25rem; }
.pkg-includes li {
  font-size: .85rem; color: var(--text); padding: .3rem 0 .3rem 1.5rem;
  position: relative; line-height: 1.5;
}
.pkg-includes li::before {
  content: '✓'; position: absolute; left: 0; top: .3rem;
  color: var(--royal); font-weight: 900;
}
.pkg-price {
  margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border);
}
.pkg-price .amount { font-size: 1.5rem; font-weight: 900; color: var(--navy); letter-spacing: -.03em; }
.pkg-price .amount.quote { font-size: 1.1rem; color: var(--royal); }
.pkg-price .note { display: block; font-size: .72rem; color: var(--gray-light); font-weight: 600; margin-top: .15rem; }
.pkg-card .btn-primary, .pkg-card .btn-gold { width: 100%; margin-top: 1rem; }

/* ── GUARANTEE SEAL ── */
.guarantee { background: var(--white); }
.guarantee-seal {
  max-width: 880px; margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 100%);
  border: 1px solid rgba(212,164,28,.3);
  border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; align-items: center; gap: 2rem;
  position: relative; overflow: hidden;
}
.guarantee-seal::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,28,.18), transparent 70%);
}
.gs-badge {
  flex-shrink: 0; width: 92px; height: 92px; border-radius: 50%;
  background: rgba(212,164,28,.12); border: 2px solid var(--gold);
  display: grid; place-items: center; position: relative; z-index: 1;
}
.gs-badge svg { width: 44px; height: 44px; stroke: var(--gold-light); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.gs-text { position: relative; z-index: 1; }
.gs-text h3 { font-size: 1.4rem; font-weight: 900; color: #fff; letter-spacing: -.025em; margin-bottom: .4rem; }
.gs-text p { font-size: .95rem; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 520px; }
@media (max-width: 600px) {
  .guarantee-seal { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .gs-text p { margin: 0 auto; }
}

/* ── REVIEW WALL (staggered screenshot showcase) ── */
.review-wall {
  background: linear-gradient(180deg, var(--off-white) 0%, #ffffff 13%, #ffffff 87%, var(--off-white) 100%);
  padding: 5rem 2rem 5.5rem;
  box-shadow: inset 0 20px 32px -30px rgba(12,31,112,.18), inset 0 -20px 32px -30px rgba(12,31,112,.18);
}
.review-wall .section-label { color: var(--gold); }
.review-wall .reel-rating {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 50px; padding: .45rem 1.1rem; margin: 0 auto .9rem;
  box-shadow: var(--shadow-sm);
  font-size: .8rem; font-weight: 700; color: var(--text);
}
.review-wall .reel-rating .reel-stars { color: #f59e0b; letter-spacing: 2px; }
.review-wall-grid {
  columns: 3; column-gap: 1.5rem;
  max-width: 1000px; margin: 2.5rem auto 0;
}
.review-shot {
  break-inside: avoid; margin: 0 0 1.5rem;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 8px; box-shadow: 0 10px 30px rgba(12,31,112,.12);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review-shot img { width: 100%; height: auto; display: block; border-radius: 7px; cursor: zoom-in; }
.review-shot:nth-child(4n+1) { transform: rotate(-2deg); }
.review-shot:nth-child(4n+2) { transform: rotate(1.5deg); }
.review-shot:nth-child(4n+3) { transform: rotate(-1deg); }
.review-shot:nth-child(4n)   { transform: rotate(2deg); }
.review-shot:hover {
  transform: rotate(0) translateY(-6px) scale(1.02);
  box-shadow: 0 18px 45px rgba(12,31,112,.22);
  position: relative; z-index: 2;
}
.review-shot.empty {
  background: var(--off-white); border: 1.5px dashed var(--border);
  box-shadow: none; padding: 0; transform: none;
}
.review-shot.empty img { display: none; }
.review-shot.empty::after {
  content: "\1F4F7  Review screenshot";
  display: flex; align-items: center; justify-content: center;
  min-height: 160px; color: var(--gray-light);
  font-size: .8rem; font-weight: 600;
}
.review-wall-links {
  display: flex; gap: .75rem; justify-content: center;
  flex-wrap: wrap; margin-top: 2.75rem;
}
@media (max-width: 900px) { .review-wall-grid { columns: 2; } }
@media (max-width: 560px) { .review-wall-grid { columns: 1; max-width: 400px; } }

/* review-quote card (a real text testimonial that sits in the wall) */
.review-quote {
  break-inside: avoid; margin: 0 0 1.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 100%);
  border-radius: 12px; padding: 1.6rem 1.5rem;
  box-shadow: 0 12px 32px rgba(12,31,112,.2);
  text-align: left; transform: rotate(1deg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review-quote:hover { transform: rotate(0) translateY(-6px); box-shadow: 0 18px 45px rgba(12,31,112,.3); }
.review-quote .rq-stars { color: #f59e0b; letter-spacing: 2px; font-size: .9rem; }
.review-quote p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.92); font-style: italic; margin: .55rem 0 .9rem; }
.review-quote .rq-author { font-size: .85rem; font-weight: 800; color: #fff; }
.review-quote .rq-src { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: .1rem; }

/* ── SURFACES WE WASH (patio specialty grid) ── */
.surfaces-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.surface-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.surface-item:hover { border-color: rgba(26,79,201,.22); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.surface-item h4 {
  font-size: .92rem; font-weight: 800; color: var(--text);
  margin-bottom: .3rem; display: flex; align-items: center; gap: .5rem; letter-spacing: -.01em;
}
.surface-item h4::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--sky)); flex-shrink: 0;
}
.surface-item p { font-size: .82rem; color: var(--gray); line-height: 1.55; }
.surface-item .premium-tag {
  font-size: .6rem; font-weight: 800; color: var(--gold); letter-spacing: .1em;
  text-transform: uppercase; margin-left: auto;
}

/* keep longer add-on service names on one line in the nav dropdown */
.nav-dropdown a { white-space: nowrap; }

/* ── STICKY MOBILE ACTION BAR (call / text / quote) ── */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  .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(7,18,63,.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);
    letter-spacing: .01em;
  }
  .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.text { color: var(--gold-light); }
  .mcb-btn.quote { background: var(--gold); color: var(--navy-deep); }
  body { padding-bottom: 62px; }
  .back-to-top.show { bottom: 4.75rem; }
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(7,18,63,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; cursor: zoom-out;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; pointer-events: auto; }
.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); }

/* gallery images become zoomable */
.gallery-section .cat-item { cursor: zoom-in; }

/* ── Utilities ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.btn-form-submit.sent, button.sent, [type="submit"].sent { background: #15803d; color: #fff; }
