/* ============================================================
   PACIFIC BREEZE WINDOW CLEANING — Website Stylesheet
   Designer: Kai | Built by Field Force Media
   ============================================================ */

/* Google Fonts loaded via <link> tags in HTML <head> — includes Barlow Condensed for truck-matched typography */

/* ---- Variables ---- */
:root {
  --navy:          #0A2E4A;
  --navy-mid:      #0D3A5C;
  --blue:          #1A9FD4;   /* updated: matches truck's vibrant sky blue */
  --blue-dark:     #1480AC;
  --sky:           #50BEE8;
  --sky-light:     #D6F0FA;
  --red:           #D42020;   /* truck red stripe / octopus accent */
  --orange:        #F5780A;
  --orange-dark:   #D96800;
  --orange-light:  #FEF0E6;
  --pb-warm:       #FFE8C4;   /* "PACIFIC BREEZE" warm text — orange undertone on shirts */
  --white:         #FFFFFF;
  --sand:          #EEF4FA;
  --sand-dark:     #D8E8F5;
  --black:         #080E14;
  --gray:          #4A5A6A;
  --light-gray:    #F5F9FC;
  --accent:        var(--orange);
  --radius:        4px;
  --shadow:        0 2px 8px rgba(10,46,74,0.07), 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:     0 4px 16px rgba(10,46,74,0.10), 0 12px 48px rgba(0,0,0,0.12);
  --transition:    color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  --spring:        cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Accessibility ---- */
.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;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--black); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0em;
  line-height: 1.1;
}

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--orange);
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
  border-radius: 1px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 560px; line-height: 1.75; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, #F59D3A 100%);
  color: var(--white); border-color: transparent;
}
.btn-gradient:hover { background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(245,120,10,0.35), 0 8px 32px rgba(245,120,10,0.2); }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(10,46,74,0.2); }
.btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: var(--sand); border-color: var(--sand); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: #1a2530; transform: translateY(-1px); }
.btn-lg { padding: 18px 44px; font-size: 14px; letter-spacing: 0.07em; }

/* Ripple */
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1001;
}
.promo-bar a { color: var(--white); text-decoration: underline; }
.promo-bar strong { font-weight: 800; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.nav-progress {
  position: absolute; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--orange), #F59D3A);
  transition: width 0.1s linear;
  z-index: 10;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 72px; padding: 0 32px;
  gap: 16px;
}
.nav-actions {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo {
  display: flex; align-items: center;
  gap: 10px; text-decoration: none;
}
/* Nav logo — matches truck typography:
   octopus SVG | "PACIFIC BREEZE" bold italic warm | "WINDOW CLEANING" bold white */
.nav-logo-mark {
  display: flex; align-items: center; gap: 10px;
  line-height: 1;
}
.nav-logo-octopus {
  flex-shrink: 0;
  height: 44px;
  width: auto;
  display: block;
}
.nav-logo-text-wrap {
  display: flex; flex-direction: column; gap: 0;
  line-height: 1;
}
.nav-logo-mark .logo-line1 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: 20px; font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--pb-warm);
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(200,80,0,0.5), 0 0 8px rgba(245,120,10,0.2);
}
.nav-logo-mark .logo-line2 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
}
.nav-logo-sub {
  display: none; /* replaced by inline text-wrap */
}
.nav-links {
  display: flex; align-items: center; justify-content: center; gap: 32px;
}
.nav-links a {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: color 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; border-radius: 2px; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border: 1px solid rgba(10,46,74,0.1);
  border-radius: 8px; box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  text-transform: none; color: var(--black);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--sand); color: var(--blue); }
.nav-dropdown-menu a::after { display: none; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-cta { margin-left: 8px; padding: 14px 26px; font-size: 13px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: 60px;
}

/* Layered gradient depth */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 25%, rgba(58,155,213,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 15% 75%, rgba(24,104,167,0.3) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 85%, rgba(245,120,10,0.07) 0%, transparent 50%),
    linear-gradient(145deg, #061D30 0%, #0A2E4A 45%, #0D3A5C 100%);
}

/* Animated light sweep — sunlight on glass */
.hero-sweep {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(255,255,255,0.04) 42%,
    rgba(255,255,255,0.07) 44%,
    rgba(255,255,255,0.04) 46%,
    transparent 50%,
    transparent 100%
  );
  animation: lightSweep 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lightSweep {
  0%   { transform: translateX(-40%) skewX(-8deg); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateX(40%) skewX(-8deg); opacity: 1; }
  60%  { opacity: 0; }
  100% { transform: translateX(40%) skewX(-8deg); opacity: 0; }
}

/* Window pane grid decoration */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Fade bottom into white */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}

.hero-content {
  position: relative; z-index: 3;
  text-align: center; max-width: 840px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,120,10,0.12);
  border: 1px solid rgba(245,120,10,0.38);
  color: rgba(255,255,255,0.9);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before { content: '★'; color: var(--orange); }
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-size: clamp(3.2rem, 7.5vw, 6.2rem);
  font-weight: 800;
  color: var(--white); margin-bottom: 24px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.35);
  letter-spacing: 0.01em;
}
.gradient-word {
  background: linear-gradient(135deg, var(--orange) 0%, #F5B73A 50%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-top: 0.05em;
}
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  margin-bottom: 44px;
  max-width: 540px; margin-left: auto; margin-right: auto;
  line-height: 1.75; font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--black); padding: 14px 0; overflow: hidden; }
.trust-bar-inner {
  display: flex; align-items: center;
  flex-wrap: nowrap; justify-content: flex-start;
  gap: 40px; width: max-content;
  animation: trustTicker 28s linear infinite;
}
.trust-bar-inner:hover { animation-play-state: paused; }
.trust-item {
  display: flex; align-items: center; gap: 6px;
  color: var(--white);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
}
.trust-item .icon { display: flex; align-items: center; color: var(--orange); }
.trust-item .icon svg { width: 15px; height: 15px; stroke-width: 2.25; }
.trust-divider { width: 1px; height: 26px; background: rgba(245,120,10,0.3); flex-shrink: 0; }
@keyframes trustTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(10,46,74,0.09);
  border-radius: 10px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 4px 16px rgba(10,46,74,0.10), 0 12px 40px rgba(10,46,74,0.12);
  transform: translateY(-5px); border-color: transparent;
  transition: transform 0.35s var(--spring), box-shadow 0.35s ease, border-color 0.25s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--sky-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--blue);
}
.service-icon svg { width: 26px; height: 26px; stroke-width: 1.75; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); }
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* Full-width service cards (4 cols on desktop) */
.services-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.section-navy {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0;
}
.section-navy .section-label { color: var(--orange); }
.section-navy .section-title { color: var(--white); }
.section-navy .section-sub { color: rgba(255,255,255,0.65); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 64px;
}
.process-step {
  position: relative;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-step:nth-child(2) { transition-delay: 0.15s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
#processSteps.animated .process-step { opacity: 1; transform: none; }
.process-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4.5rem; font-weight: 800;
  color: rgba(58,155,213,0.15);
  line-height: 1; margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--white); margin-bottom: 12px;
}
.process-step p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.75; }

/* ============================================================
   WHY CHOOSE US / DIFFERENTIATORS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(10,46,74,0.08);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex; gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.why-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.why-icon svg { width: 22px; height: 22px; stroke-width: 2; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.why-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   PHOTO STRIP / VISUAL BREAK
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
}
.photo-strip-item {
  overflow: hidden; position: relative;
}
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-strip-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.photo-strip-placeholder.pb1 { background: linear-gradient(145deg, #0B3A5C 0%, #1868A7 100%); }
.photo-strip-placeholder.pb2 { background: linear-gradient(145deg, #0D4070 0%, #3A9BD5 100%); }
.photo-strip-placeholder.pb3 { background: linear-gradient(145deg, #072940 0%, #1A5F90 100%); }
.photo-strip-placeholder.pb4 { background: linear-gradient(145deg, #0F4878 0%, #2A7FBB 100%); }

/* ============================================================
   SERVICE PLANS
   ============================================================ */
.plans-section { background: var(--sand); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
  align-items: center;
}
.plan-card {
  background: var(--white);
  border: 1.5px solid rgba(10,46,74,0.1);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  background: var(--navy);
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(10,46,74,0.25), 0 24px 64px rgba(10,46,74,0.18);
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.plan-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--orange); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.plan-header { margin-bottom: 24px; }
.plan-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  margin-bottom: 10px; color: var(--navy);
}
.plan-card.featured .plan-name { color: var(--white); }
.plan-tagline { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.plan-card.featured .plan-tagline { color: rgba(255,255,255,0.65); }
.plan-features ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plan-features li {
  font-size: 0.9rem; color: var(--black);
  display: flex; align-items: center; gap: 10px;
}
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.85); }
.plan-features li::before {
  content: '✓';
  font-weight: 700; color: #22C55E; flex-shrink: 0;
}
.plan-card.featured .plan-features li::before { color: var(--orange); }

/* ============================================================
   IMPACT BAND
   ============================================================ */
.impact-band {
  background: var(--navy);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.impact-item {
  text-align: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.impact-item.visible { opacity: 1; transform: none; }
.impact-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1;
}
.impact-num-orange { color: var(--orange); }
.impact-label {
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.4;
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.google-reviews-section { background: var(--white); padding: 96px 0; }
.google-reviews-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 56px;
}
.google-reviews-header-left .section-label { display: block; margin-bottom: 8px; }
.google-overall { display: flex; align-items: center; gap: 20px; margin-top: 16px; }
.google-overall-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.google-stars-row { display: flex; gap: 2px; }
.google-star { color: #F5B700; font-size: 1.3rem; }
.google-review-count {
  font-size: 0.85rem; color: var(--gray);
  margin-top: 4px;
}
.google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--gray); margin-top: 6px;
}
.google-badge-g {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.google-badge-g span { font-size: 13px; font-weight: 800; color: #4285F4; font-family: sans-serif; }
.google-view-all {
  font-size: 14px; font-weight: 600; color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
  align-self: flex-end;
}
.google-view-all:hover { color: var(--navy); border-color: var(--navy); }

/* Carousel */
.reviews-carousel-wrap { position: relative; overflow: hidden; padding: 24px 0; }
.reviews-carousel-track {
  display: flex; position: relative;
  justify-content: center;
  height: 280px; align-items: center;
}
.grev-card {
  position: absolute;
  width: 380px; max-width: 85vw;
  background: var(--white);
  border: 1px solid rgba(10,46,74,0.10);
  border-radius: 12px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease, box-shadow 0.3s ease;
  cursor: pointer; will-change: transform;
}
.grev-card.pos-active {
  transform: translateX(0) scale(1); opacity: 1; z-index: 3;
  box-shadow: 0 8px 32px rgba(10,46,74,0.12), 0 20px 56px rgba(0,0,0,0.1);
}
.grev-card.pos-prev { transform: translateX(-420px) scale(0.88); opacity: 0.5; z-index: 2; }
.grev-card.pos-next { transform: translateX(420px) scale(0.88); opacity: 0.5; z-index: 2; }
.grev-card.pos-far-prev { transform: translateX(-680px) scale(0.78); opacity: 0.2; z-index: 1; }
.grev-card.pos-far-next { transform: translateX(680px) scale(0.78); opacity: 0.2; z-index: 1; }
.grev-card.pos-hidden { transform: translateX(0) scale(0.7); opacity: 0; z-index: 0; pointer-events: none; }
.grev-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.grev-author { display: flex; align-items: center; gap: 12px; }
.grev-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; color: white;
}
.grev-name { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.grev-date { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }
.grev-google-icon { font-size: 18px; }
.grev-stars { color: #F5B700; font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.grev-text {
  font-size: 0.875rem; color: var(--gray);
  line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden;
}
.carousel-controls {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; margin-top: 32px;
}
.carousel-btn {
  background: var(--sand); border: 1.5px solid rgba(10,46,74,0.12); border-radius: 50%;
  width: 42px; height: 42px; font-size: 18px; cursor: pointer; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.carousel-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(10,46,74,0.18); border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--orange); transform: scale(1.3); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #061D30 0%, var(--navy) 50%, #0D4070 100%);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(58,155,213,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(245,120,10,0.08) 0%, transparent 50%);
}
.cta-banner-content {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-banner-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white); margin-bottom: 16px;
}
.cta-banner-content p {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  max-width: 520px; margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-banner-promo {
  display: inline-block;
  background: rgba(245,120,10,0.12);
  border: 1px solid rgba(245,120,10,0.4);
  color: var(--orange); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 28px;
}
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(58,155,213,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0D3A5C 0%, #06192A 100%);
}
.footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.footer-logo-name span { color: var(--sky); }
.footer-tagline {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-top: 12px; max-width: 260px;
}
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: white; }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a {
  font-size: 0.9rem; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 0.875rem; color: rgba(255,255,255,0.55);
}
.footer-contact-item .icon { color: var(--orange); flex-shrink: 0; }
.footer-contact-item svg { width: 15px; height: 15px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.35);
}

/* ============================================================
   FLOATING CTA + BACK TO TOP
   ============================================================ */
.float-cta {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 900; pointer-events: none; opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(12px);
}
.float-cta.visible { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.float-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(245,120,10,0.4), 0 8px 32px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.float-cta a:hover { background: var(--orange-dark); transform: translateY(-2px); }
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: white; border: none; cursor: pointer;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2); transition: var(--transition);
  opacity: 0; pointer-events: none; transform: translateY(8px);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); transform: translateY(-2px); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(145deg, #061D30 0%, var(--navy) 100%);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 40%, rgba(58,155,213,0.15) 0%, transparent 55%),
    linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1));
}
.page-hero .hero-grid {
  opacity: 0.5;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white); margin-bottom: 16px;
}
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.75; }
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.5); }
.page-breadcrumb a:hover { color: var(--white); }
.page-breadcrumb span { color: rgba(255,255,255,0.3); }

/* Service detail cards */
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  margin-bottom: 80px;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-visual {
  height: 360px; border-radius: 12px; overflow: hidden;
  position: relative;
}
.service-detail-visual .photo-strip-placeholder {
  border-radius: 12px; font-size: 13px;
}
.service-detail-text .section-label { margin-bottom: 8px; }
.service-detail-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.service-detail-text p { color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.service-includes { margin-top: 20px; }
.service-includes h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 12px;
}
.service-includes ul { display: flex; flex-direction: column; gap: 8px; }
.service-includes li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--black);
}
.service-includes li::before { content: '✓'; font-weight: 700; color: #22C55E; flex-shrink: 0; }

/* ============================================================
   ESTIMATE / CONTACT PAGE
   ============================================================ */
.estimate-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.estimate-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.estimate-info p { color: var(--gray); line-height: 1.8; margin-bottom: 32px; }
.estimate-contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.estimate-contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.95rem;
}
.estimate-contact-item .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--sky-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.estimate-contact-item .icon svg { width: 18px; height: 18px; }
.estimate-contact-item strong { display: block; font-weight: 700; margin-bottom: 2px; color: var(--navy); }
.estimate-contact-item span { color: var(--gray); font-size: 0.875rem; }
.estimate-form-wrap {
  background: var(--white);
  border: 1.5px solid rgba(10,46,74,0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.estimate-form-wrap h3 {
  font-size: 1.4rem; margin-bottom: 4px;
}
.form-intro { font-size: 0.875rem; color: var(--gray); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  border: 1.5px solid rgba(10,46,74,0.15); border-radius: 6px;
  background: var(--white); color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,104,167,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; }
.form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 12px; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(10,46,74,0.10);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  background: none; border: none; cursor: pointer; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; padding: 0;
}
.faq-question h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  line-height: 1.35; transition: color 0.2s;
}
.faq-item.open .faq-question h3 { color: var(--blue); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--sand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 16px; font-weight: 300;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: white; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 16px; }
.faq-answer p { font-size: 0.95rem; color: var(--gray); line-height: 1.8; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-photo-wrap {
  height: 460px; border-radius: 16px; overflow: hidden;
  position: relative;
}
.about-photo-wrap .photo-strip-placeholder {
  border-radius: 16px;
}
.about-text .section-label { display: block; margin-bottom: 8px; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.about-text p { color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}
.team-card {
  background: var(--white);
  border: 1px solid rgba(10,46,74,0.09);
  border-radius: 12px; padding: 28px 24px; text-align: center;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: white;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; color: var(--navy); }
.team-card p { font-size: 0.85rem; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px;
}
.value-card {
  text-align: center; padding: 28px 20px;
  background: var(--sand); border-radius: 12px;
}
.value-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sky-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   HERO — PHOTO BACKGROUND (truck photo)
   ============================================================ */
.hero-photo-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(6,18,30,0.72), rgba(10,46,74,0.65)),
    url('../images/truck-side.jpeg') center/cover no-repeat;
}

/* ============================================================
   DIRTY WINDOWS SEO SECTION
   ============================================================ */
.dirty-windows-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.dirty-windows-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 100% 50%, rgba(26,159,212,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 50%, rgba(245,120,10,0.06) 0%, transparent 55%);
}
.dirty-windows-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.dirty-windows-text .section-label { color: var(--orange); }
.dirty-windows-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); margin-bottom: 20px;
}
.dirty-windows-text p {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 20px;
}
.dirty-windows-problems {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px;
}
.dirty-windows-problems li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: rgba(255,255,255,0.8); font-weight: 500;
}
.dirty-windows-problems li::before {
  content: '✗';
  color: var(--red); font-weight: 700; flex-shrink: 0; font-size: 1rem;
}
.dirty-windows-visual {
  position: relative; height: 400px; border-radius: 16px; overflow: hidden;
}
.dirty-windows-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
/* Glass-dirty overlay effect on the visual */
.dirty-windows-visual::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.08) 25%,
    transparent 50%,
    rgba(255,255,255,0.03) 75%
  );
  pointer-events: none;
}
.dirty-windows-visual-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #0B3A5C 0%, #1A9FD4 100%);
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   RECURRING SERVICE PLANS
   ============================================================ */
.recurring-plans-section {
  background: linear-gradient(160deg, #E6F3FA 0%, #EDF7FD 60%, #E2F0F8 100%);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.recurring-plans-intro {
  text-align: center; margin-bottom: 64px;
}
.recurring-plans-intro .section-label { color: var(--orange); }
.forever-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; font-style: italic;
  color: var(--navy); margin-bottom: 16px;
  letter-spacing: 0.01em; text-transform: uppercase;
}
.forever-headline span {
  background: linear-gradient(135deg, var(--orange) 0%, #F5B73A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.forever-word {
  background: none !important;
  -webkit-background-clip: unset !important; background-clip: unset !important;
  -webkit-text-fill-color: var(--navy) !important;
  color: var(--navy);
}
.recurring-plans-intro p {
  font-size: 1.05rem; color: var(--gray);
  max-width: 560px; margin: 0 auto; line-height: 1.75;
}
.recurring-plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; align-items: stretch;
}
/* ---- Plan Cards — comparison layout ---- */
.rplan-card {
  border-radius: 18px;
  padding: 36px 32px 32px;
  position: relative;
  transition: var(--transition);
  display: flex; flex-direction: column;
  border: 1.5px solid rgba(10,46,74,0.1);
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,46,74,0.06);
}
.rplan-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(10,46,74,0.14); }
.rplan-card.featured {
  background: var(--navy);
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 12px 48px rgba(10,46,74,0.32), 0 32px 72px rgba(0,0,0,0.18);
}
.rplan-card.featured:hover { transform: scale(1.04) translateY(-5px); }
.rplan-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: var(--white);
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 20px; align-self: flex-start;
}
.rplan-freq {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 6px;
}
.rplan-card.featured .rplan-freq { color: var(--sky); }
.rplan-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem; font-weight: 800; font-style: italic;
  color: var(--navy); line-height: 1; margin-bottom: 8px;
}
.rplan-card.featured .rplan-name { color: var(--white); }
.rplan-tagline {
  font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
}
.rplan-card.featured .rplan-tagline { color: rgba(255,255,255,0.55); }

/* Discount display */
.rplan-discount {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  margin: 16px 0 24px;
}
.rplan-discount .disc-amount {
  display: block;
  font-size: 4rem;
  color: var(--blue);
  line-height: 1;
}
.rplan-card.featured .rplan-discount .disc-amount { color: var(--orange); }
.rplan-discount .disc-label {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-top: 2px;
}
.rplan-card.featured .rplan-discount .disc-label { color: rgba(255,255,255,0.7); }

/* Savings badge */
.rplan-savings {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(26,159,212,0.1);
  border: 1.5px solid rgba(26,159,212,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 20px 0;
}
.rplan-card.featured .rplan-savings {
  background: rgba(245,120,10,0.15);
  border-color: rgba(245,120,10,0.35);
}
.rplan-savings-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 800; font-style: italic;
  color: var(--blue); line-height: 1;
}
.rplan-card.featured .rplan-savings-amount { color: var(--orange); }
.rplan-savings-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  color: var(--navy); line-height: 1.3;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.rplan-card.featured .rplan-savings-label { color: rgba(255,255,255,0.8); }

/* Divider */
.rplan-divider {
  height: 1px; background: rgba(10,46,74,0.08);
  margin: 20px 0;
}
.rplan-card.featured .rplan-divider { background: rgba(255,255,255,0.1); }

/* Feature rows */
.rplan-features {
  display: flex; flex-direction: column; gap: 11px;
  flex: 1; margin-bottom: 28px;
}
.rplan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; line-height: 1.4;
}
.rplan-features li .feat-icon { flex-shrink: 0; margin-top: 1px; }
.rplan-features li .feat-icon svg { width: 15px; height: 15px; stroke-width: 2.5; }
.rplan-features li.included .feat-icon { color: #22C55E; }
.rplan-features li.included .feat-text { color: var(--black); }
.rplan-card.featured .rplan-features li.included .feat-icon { color: #4ADE80; }
.rplan-card.featured .rplan-features li.included .feat-text { color: rgba(255,255,255,0.85); }
.rplan-features li.excluded .feat-icon { color: #E03535; }
.rplan-features li.excluded .feat-text { color: rgba(10,46,74,0.3); }

.rplan-cta { margin-top: auto; }

/* ---- Nav Phone Button ---- */
.nav-phone-btn {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  padding: 10px 18px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: var(--transition);
}
.nav-phone-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.28);
}
.nav-phone-btn svg { width: 14px; height: 14px; }

/* Truck photo section */
.truck-feature {
  position: relative; height: 380px; overflow: hidden;
}
.truck-feature img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
}
.truck-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,46,74,0.85) 0%, rgba(10,46,74,0.3) 60%, transparent 100%);
  display: flex; align-items: center; padding: 0 64px;
}
.truck-feature-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; font-style: italic; text-transform: uppercase;
  color: var(--white); margin-bottom: 12px; letter-spacing: 0.02em;
  line-height: 1.05;
}
.truck-feature-text h2 span { color: var(--pb-warm); }
.truck-feature-text p {
  font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 380px; line-height: 1.6;
}

/* ============================================================
   DECORATIVE — SHINE DOTS
   ============================================================ */
.shine-deco {
  position: absolute; border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(58,155,213,0.18) 0%, transparent 70%);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .plan-card.featured { transform: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .photo-strip-item { height: 200px; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { height: 320px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-grid.reverse { direction: ltr; }
  .service-detail-visual { height: 260px; }
  .estimate-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 999; padding: 100px 32px 32px; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 24px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--white); }
  .nav-links a::after { display: none; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; border-radius: 0; padding: 0 0 0 20px; }
  .nav-toggle { display: flex; z-index: 1000; position: relative; }
  .nav-cta { display: none; }
  .nav-phone-btn span { display: none; }
  .nav-phone-btn { padding: 10px 14px; }
  .hero { min-height: 560px; padding: 88px 0 40px; }
  .hero-title { font-size: clamp(2.6rem, 10vw, 3.8rem); line-height: 1.05; }
  .hero-sub { font-size: 0.85rem; line-height: 1.6; margin-bottom: 28px; }
  .hero-review-pill { font-size: 0.65rem; padding: 5px 10px; gap: 5px; margin-bottom: 14px; }
  .hero-stars { font-size: 0.6rem; letter-spacing: 1px; }
  .hero-badge { font-size: 9px; padding: 5px 12px; margin-bottom: 16px; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-navy { padding: 72px 0; }
  .impact-band { padding: 72px 0; }
  .cta-banner { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-cta { bottom: 16px; }
  .float-cta a { font-size: 12px; padding: 12px 24px; }
  .back-to-top { display: none; }
  .grev-card { width: calc(100vw - 48px); }
  .grev-card.pos-prev { transform: translateX(-90vw) scale(0.85); }
  .grev-card.pos-next { transform: translateX(90vw) scale(0.85); }
  .grev-card.pos-far-prev, .grev-card.pos-far-next { opacity: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .estimate-form-wrap { padding: 28px 20px; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 120px 0 60px; }
  .hero-photo-bg::after {
    background:
      linear-gradient(rgba(6,18,30,0.72), rgba(10,46,74,0.65)),
      url('../images/truck-side.jpeg') center 40% / cover no-repeat;
  }
}

@media (max-width: 900px) {
  .dirty-windows-inner { grid-template-columns: 1fr; }
  .dirty-windows-visual { height: 280px; }
  .recurring-plans-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .rplan-card.featured { transform: none; }
  .truck-feature { height: 300px; }
  .truck-feature-overlay { padding: 0 32px; }
}

@media (max-width: 480px) {
  .google-reviews-header { flex-direction: column; }
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .truck-feature-overlay { padding: 0 20px; }
}

/* ============================================================
   HERO REVIEW PILL
   ============================================================ */
.hero-review-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-stars { color: #F5B700; letter-spacing: 2px; font-size: 0.75rem; }

/* ============================================================
   SERVICE CARD LINK LINE
   ============================================================ */
.service-card-link {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
}

/* ============================================================
   THE PACIFIC BREEZE METHOD
   ============================================================ */
.pb-method-section {
  background: var(--sand);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.pb-method-header { margin-bottom: 64px; }
.pb-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: rgba(10,46,74,0.08);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(10,46,74,0.08);
}
.pb-method-step {
  background: var(--white);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 0.25s;
}
.pb-method-step:hover { background: #F5FBFF; }
.method-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: rgba(26,159,212,0.12);
  position: absolute;
  top: 24px; right: 28px;
}
.method-step-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: white;
  flex-shrink: 0;
}
.method-step-icon svg { width: 22px; height: 22px; }
.pb-method-step h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.pb-method-step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   BUILT FOR O'AHU
   ============================================================ */
.oahu-built-section {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.oahu-built-section::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(26,159,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.oahu-built-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.oahu-built-text .section-label { color: var(--orange); }
.oahu-built-text .section-label::before { background: var(--orange); }
.oahu-built-text h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  margin-top: 16px;
}
.oahu-built-text > p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: 'DM Sans', sans-serif;
}
.oahu-challenge-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.oahu-challenge {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.challenge-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(26,159,212,0.12);
  border: 1px solid rgba(26,159,212,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 2px;
}
.challenge-icon svg { width: 18px; height: 18px; }
.challenge-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 5px;
}
.challenge-text span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
}
.oahu-built-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.oahu-built-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.oahu-built-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(5,14,26,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.oahu-badge-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  color: #F5B700;
  line-height: 1;
  white-space: nowrap;
}
.oahu-badge-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  font-family: 'DM Sans', sans-serif;
}
.oahu-badge-text strong { color: var(--white); }

/* ============================================================
   PROOF QUOTE BAND
   ============================================================ */
.proof-band {
  background: #040D18;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.proof-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,159,212,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.proof-band-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.proof-quote-mark {
  font-size: 7rem;
  line-height: 0.5;
  color: var(--blue);
  opacity: 0.25;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  margin-bottom: 20px;
  display: block;
}
.proof-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin: 0 0 20px;
}
.proof-attribution {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-bottom: 52px;
  letter-spacing: 0.04em;
}
.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.proof-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  line-height: 1;
}
.proof-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.proof-stat-div {
  width: 1px; height: 52px;
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1024px) {
  .oahu-built-inner { grid-template-columns: 1fr; gap: 56px; }
  .oahu-built-visual { aspect-ratio: 16/9; max-height: 400px; }
}
@media (max-width: 900px) {
  .pb-method-grid { grid-template-columns: 1fr; }
  .method-step-num { font-size: 3rem; }
  .proof-stats { gap: 28px; }
  .proof-stat-num { font-size: 2rem; }
}
@media (max-width: 600px) {
  .proof-stats { flex-direction: column; gap: 20px; }
  .proof-stat-div { width: 60px; height: 1px; }
  .pb-method-step { padding: 32px 28px; }
  .oahu-built-badge { bottom: 16px; left: 16px; padding: 12px 16px; }
}

/* ---- Location / City Pages ---- */
.loc-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.loc-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--sand);
  border-radius: 8px;
}
.loc-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  color: var(--navy);
}
.loc-stat-label {
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 600;
  margin-top: 4px;
}
.loc-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.loc-services-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--black);
}
.loc-cta-btns {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 640px) {
  .loc-stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .loc-services-list { grid-template-columns: 1fr; }
  .loc-cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
}
