/* ==========================================================================
   Restore Pressure Washing & Soft Washing — 2026 Design System
   Modern, High-Converting, Clean Aesthetic for Exterior Cleaning
   ========================================================================== */

:root {
  /* Brand Core Colors */
  --navy-950: #081245;
  --navy-900: #0c1a5e;
  --navy-850: #10206f;
  --navy-800: #14278a;
  --navy-700: #1d33a8;
  
  --blue-600: #0a1493;
  --blue-500: #0e1fd8;
  --blue-400: #4a5cf2;
  --blue-100: #dfe4ff;
  --blue-50: #f1f4ff;
  
  --green-500: #00a832;
  --green-400: #0fce4a;
  --green-accent: #00e23f;
  --green-glow: rgba(0, 226, 63, 0.25);
  
  --amber-400: #fbbf24;
  
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  
  --paper: #ffffff;
  --paper-subtle: #f8fafc;
  --paper-dim: #f1f5f9;
  --border-light: #e2e8f0;
  --border-subtle: rgba(226, 232, 240, 0.8);
  
  /* Typography */
  --font-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  
  /* Elevation & Shadows */
  --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(10, 21, 38, 0.25);
  --shadow-glow: 0 0 30px rgba(14, 31, 216, 0.25);
  
  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Animation Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s var(--ease-smooth);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background-color: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
}

ul, ol {
  list-style: none;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 4.5vw + 1rem, 4.2rem); }
h2 { font-size: clamp(2rem, 3vw + 0.8rem, 3rem); }
h3 { font-size: clamp(1.35rem, 1.5vw + 0.8rem, 1.85rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
}

p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-500);
}

.text-accent {
  color: var(--blue-500);
}

.text-green {
  color: var(--green-500);
}

/* Containers & Layout Grid */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 900px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-sm {
  padding: 50px 0;
}

.section-dark {
  background: var(--navy-950);
  color: #f8fafc;
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: #ffffff;
}

.section-dark p {
  color: var(--ink-400);
}

.section-subtle {
  background: var(--paper-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-navy-tint {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: #ffffff;
}

.section-navy-tint h2, .section-navy-tint h3 {
  color: #ffffff;
}

.section-navy-tint p {
  color: #cbd5e1;
}

/* Eyebrows / Section Badges */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: var(--blue-50);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--blue-100);
  margin-bottom: 16px;
}

.eyebrow.green {
  color: var(--green-500);
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
}

.eyebrow.white {
  color: var(--green-400);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 54px;
}

.section-header.text-left {
  text-align: left;
  margin: 0 0 40px;
}

.section-header h2 {
  margin-bottom: 14px;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(14, 31, 216, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 31, 216, 0.42);
  color: #ffffff;
}

.btn-green {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-green:hover {
  background: linear-gradient(135deg, #34d399, #10b981);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
  background: var(--paper-dim);
  border-color: var(--ink-400);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-sms {
  background: rgba(37, 211, 102, 0.12);
  color: #15803d;
  border: 1.5px solid rgba(37, 211, 102, 0.4);
}

.btn-sms:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-lg {
  padding: 18px 34px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.86rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* ==========================================================================
   Top Utility Bar
   ========================================================================== */
.top-bar {
  background: var(--navy-950);
  color: #94a3b8;
  font-size: 0.84rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
}

.top-bar-item svg {
  width: 15px;
  height: 15px;
  color: var(--green-400);
}

.top-bar-item a:hover {
  color: #ffffff;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ==========================================================================
   Header & Sticky Navigation (Festive Christmas Theme with Blinking Lights)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(14, 31, 216, 0.22);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(14, 31, 216, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

/* Hanging Blinking Christmas Lights Strand */
.header-lights-strand {
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  z-index: 1002;
  overflow: hidden;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .header-lights-strand {
    display: none;
  }
}

.c9-bulb {
  position: relative;
  width: 10px;
  height: 16px;
  border-radius: 50% 50% 35% 35%;
  flex-shrink: 0;
}

.c9-bulb::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 4px;
  background: #1e293b;
  border-radius: 2px 2px 0 0;
}

/* Warm-white bulbs with a slow, gentle twinkle (single accent) */
.c9-bulb.red, .c9-bulb.green, .c9-bulb.gold, .c9-bulb.blue, .c9-bulb.warm-white {
  background: #ffd9a0;
  box-shadow: 0 0 12px rgba(255, 200, 140, 0.9), 0 0 22px rgba(255, 180, 110, 0.55);
  animation: twinkle-warm 2.8s infinite alternate ease-in-out;
}

.c9-bulb.green { animation-delay: 0.4s; }
.c9-bulb.gold { animation-delay: 0.8s; }
.c9-bulb.blue { animation-delay: 1.2s; }
.c9-bulb.warm-white { animation-delay: 1.6s; }

@keyframes twinkle-warm {
  0% { opacity: 0.45; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1.08); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0, 226, 63, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  color: #fde68a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav Links & Dropdowns in Festive Mode */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  color: #1b2a63;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #0e1fd8;
  background: rgba(14, 31, 216, 0.08);
}

.nav-link.holiday-nav-pill {
  color: #052c12;
  background: #00e23f;
  border: 1px solid #3bee7d;
  font-weight: 800;
  box-shadow: 0 0 14px rgba(0, 226, 63, 0.5);
}

.nav-link.holiday-nav-pill:hover {
  background: #00c73c;
  color: #052c12;
}

.nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Nav Dropdown Menu in Festive Dark Theme */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #0b1528;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #86efac;
}

.dropdown-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(22, 163, 74, 0.2);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.phone-quick {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 4px 10px 4px 6px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: rgba(22, 163, 74, 0.12);
  transition: all var(--transition-fast);
}

.phone-quick:hover {
  border-color: #22c55e;
  background: rgba(22, 163, 74, 0.22);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.3);
}

.phone-quick-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.phone-quick:hover .phone-quick-icon {
  background: #22c55e;
  transform: scale(1.05);
}

.phone-quick-text {
  display: flex;
  flex-direction: column;
}

.phone-quick-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

.phone-quick-number {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0e1fd8;
  line-height: 1.2;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
  color: var(--ink-900);
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   Seasonal Holiday Announcement Bar (Christmas Red & Pine Green Theme)
   ========================================================================== */
.holiday-urgent-bar {
  background: var(--navy-950);
  color: #ffffff;
  padding: 10px 0;
  border-bottom: 2px solid #00c73c;
  font-family: var(--font-display);
  font-size: 0.88rem;
  position: relative;
  z-index: 1001;
}

.holiday-urgent-bar .urgent-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.holiday-urgent-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #00e23f;
  border: 1px solid #3bee7d;
  color: #052c12;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 0 10px rgba(0, 226, 63, 0.45);
}

.holiday-urgent-text {
  font-weight: 600;
  color: #f1f5f9;
}

.holiday-urgent-text strong {
  color: #ffffff;
  font-weight: 800;
}

.holiday-urgent-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #00e23f;
  color: #052c12 !important;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 12px rgba(0, 226, 63, 0.5);
  border: 1px solid #3bee7d;
}

.holiday-urgent-btn:hover {
  background: #00c73c;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 226, 63, 0.7);
}

.brand-gradient {
  background: linear-gradient(120deg, #00e23f 0%, #00a832 58%, #007a26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-seasonal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 214, 160, 0.35);
  color: #ffe9c7;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.3);
}

.hero-2026 {
  background: linear-gradient(165deg, #eef5ff 0%, #e8f8ee 55%, #ffffff 100%);
  color: #0a1440;
  position: relative;
  padding: 75px 0 95px;
  overflow: hidden;
}

/* Background Cinematic Crew Reel Layer */
.hero-bg-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-crew-reel {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}

.crew-reel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.6s var(--ease-smooth), transform 6.5s ease-out;
  filter: saturate(1.3) contrast(1.15) brightness(0.88);
}

.crew-reel-slide.active {
  opacity: 0.45;
  transform: scale(1.08) translate(-1%, -0.5%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(240, 247, 255, 0.94) 0%, 
    rgba(240, 247, 255, 0.85) 42%, 
    rgba(240, 247, 255, 0.30) 72%, 
    rgba(240, 247, 255, 0.55) 100%),
    radial-gradient(circle at 72% 22%, rgba(0, 226, 63, 0.08) 0%, transparent 55%);
  z-index: 1;
}

/* Hero Video Watermark & Crew On-Site Badge */
.hero-video-watermark {
  position: absolute;
  top: 24px;
  right: 32px;
  background: rgba(6, 11, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  padding: 8px 18px 8px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.watermark-logo-wrap {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.watermark-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.watermark-text {
  display: flex;
  flex-direction: column;
}

.watermark-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fbbf24;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.watermark-status .status-dot {
  width: 7px;
  height: 7px;
  background: #fbbf24;
  border-radius: 50%;
  box-shadow: 0 0 8px #fbbf24;
  animation: pulse-warm 2.4s infinite;
}

@keyframes pulse-warm {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.watermark-brand {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .hero-video-watermark {
    display: none;
  }
}

/* Water Particle & Mist Canvas Layer */
.hero-spray-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.9;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 4;
}

.hero-pressure-link {
  grid-column: 1 / -1;
  justify-self: center;
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), border-color var(--transition-fast);
  margin-top: -16px;
}

.hero-pressure-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 214, 160, 0.4);
}

.hero-title {
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.08;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 40%, var(--green-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.22rem;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 660px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
}

.hero-trust-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
}

.trust-chip-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: var(--green-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-chip-icon svg {
  width: 14px;
  height: 14px;
}

/* Hero Showcase Visual Card (Holiday Luxury Styling) */
.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(11, 21, 40, 0.6);
  border: 2px solid rgba(14, 31, 216, 0.35);
  box-shadow: 0 20px 50px rgba(14, 31, 216, 0.28), 0 0 30px rgba(0, 226, 63, 0.18);
  backdrop-filter: blur(16px);
}

/* Warm light bloom behind the roofline photo */
.hero-visual-card::before {
  content: "";
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(0, 226, 63, 0.22) 0%, rgba(0, 226, 63, 0.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-visual-image-wrap {
  position: relative;
  height: 450px;
  overflow: hidden;
  z-index: 1;
}

.hero-visual-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.hero-visual-card:hover .hero-visual-image-wrap img {
  transform: scale(1.04);
}

.hero-floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 3;
  background: rgba(8, 18, 70, 0.92);
  border: 1px solid rgba(0, 226, 63, 0.30);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.floating-card-info h4 {
  font-size: 0.98rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.floating-card-info p {
  font-size: 0.82rem;
  color: #94a3b8;
  margin: 0;
}

.floating-card-badge {
  background: var(--green-500);
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

/* ==========================================================================
   Trust Bar 3-Pillars
   ========================================================================== */
.trust-bar-section {
  background: #ffffff;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-pillar-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
}

.pillar-text h4 {
  font-size: 0.98rem;
  color: var(--navy-950);
  margin-bottom: 2px;
}

.pillar-text p {
  font-size: 0.82rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.35;
}

/* ==========================================================================
   Interactive Instant Quote Estimator (2026 High-Converting Feature)
   ========================================================================== */
.quote-estimator-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f8 100%);
  position: relative;
}

.estimator-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
}

.estimator-form-pane {
  padding: 44px;
}

.estimator-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.step-count {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-500);
}

.calc-group-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 12px;
}

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.service-calc-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.service-calc-card:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
}

.service-calc-card.selected {
  border-color: var(--blue-500);
  background: var(--blue-50);
  box-shadow: 0 0 0 1px var(--blue-500);
}

.service-calc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.service-calc-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-950);
}

.service-calc-info span {
  font-size: 0.76rem;
  color: var(--ink-500);
}

.property-size-selector {
  margin-bottom: 28px;
}

.size-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.size-pill {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
}

.size-pill:hover {
  border-color: var(--blue-400);
}

.size-pill.selected {
  border-color: var(--blue-500);
  background: var(--blue-500);
  color: #ffffff;
}

/* Estimator Live Summary Pane */
.estimator-summary-pane {
  background: var(--navy-950);
  color: #ffffff;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.estimator-summary-pane::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 90% 10%, rgba(14, 31, 216, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.summary-content {
  position: relative;
  z-index: 2;
}

.summary-title {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.summary-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 24px;
}

.estimate-price-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.price-box-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-400);
  margin-bottom: 6px;
}

.price-box-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.price-box-note {
  font-size: 0.78rem;
  color: #94a3b8;
}

.estimator-lead-form {
  position: relative;
  z-index: 2;
}

.estimator-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.estimator-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #ffffff;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.estimator-input::placeholder {
  color: #94a3b8;
}

.estimator-input:focus {
  outline: none;
  border-color: var(--green-400);
  background: rgba(255, 255, 255, 0.15);
}

.form-honeypot {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.form-status {
  min-height: 1.25em;
  margin: 10px 0 0;
  font-size: 0.82rem;
  text-align: center;
}

.form-status.success { color: #bbf7d0; }
.form-status.error { color: #fecaca; }

#contact-page-form .form-status.success { color: #047857; }
#contact-page-form .form-status.error { color: #b91c1c; }

/* ==========================================================================
   Residential vs. Commercial Split Hub
   ========================================================================== */
.split-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.hub-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.hub-card-image {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.hub-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.hub-card:hover .hub-card-image img {
  transform: scale(1.06);
}

.hub-card-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(6, 11, 20, 0.85);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hub-card-tag.blue {
  background: var(--blue-500);
}

.hub-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hub-card-body h3 {
  margin-bottom: 12px;
}

.hub-card-body p {
  color: var(--ink-500);
  margin-bottom: 20px;
}

.hub-checklist {
  margin-bottom: 28px;
}

.hub-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 10px;
}

.hub-checklist svg {
  width: 18px;
  height: 18px;
  color: var(--green-500);
  flex-shrink: 0;
}

.hub-card-actions {
  margin-top: auto;
}

/* ==========================================================================
   Full Service Grid Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-400);
}

.service-card-photo {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.service-card:hover .service-card-photo img {
  transform: scale(1.08);
}

.service-card-number {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(6, 11, 20, 0.8);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.service-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy-950);
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--ink-500);
  margin-bottom: 16px;
  line-height: 1.5;
}

.service-card-cta {
  margin-top: auto;
  font-size: 0.84rem;
  align-self: flex-start;
}

.service-card-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(14, 31, 216, 0.4);
}

/* ==========================================================================
   Multi-Surface Interactive Before / After Comparison Hub
   ========================================================================== */
.before-after-section {
  background: var(--navy-950);
  color: #ffffff;
}

.compare-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.compare-tab-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.compare-tab-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.compare-tab-btn.active {
  background: var(--blue-500);
  color: #ffffff;
  border-color: var(--blue-500);
  box-shadow: 0 0 20px rgba(14, 31, 216, 0.4);
}

.compare-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255, 255, 255, 0.15);
  height: 520px;
  user-select: none;
}

.compare-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.compare-slide.active {
  opacity: 1;
  visibility: visible;
}

.compare-slider-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.compare-img-before, .compare-img-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-after-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 3px solid #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.compare-after-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 960px;
  max-width: none;
  object-fit: cover;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  cursor: ew-resize;
  z-index: 10;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  border: 2px solid rgba(5, 10, 18, 0.12);
}

.compare-handle:hover {
  background: #f8fafc;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.35);
}

.compare-handle span {
  pointer-events: none;
}

.compare-badge {
  position: absolute;
  top: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 5;
}

.compare-badge.before {
  right: 20px;
  background: rgba(220, 38, 38, 0.85);
  color: #ffffff;
}

.compare-badge.after {
  left: 20px;
  background: rgba(16, 185, 129, 0.9);
  color: #ffffff;
}

.compare-caption-bar {
  text-align: center;
  margin-top: 20px;
}

.compare-caption-bar p {
  font-size: 0.95rem;
  color: #cbd5e1;
}

/* ==========================================================================
   Why Choose Restore / Soft Wash Process Section
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: #ffffff;
  transition: all var(--transition-normal);
}

.process-step-item:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.process-step-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-500);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.process-step-content p {
  font-size: 0.88rem;
  color: var(--ink-500);
  margin: 0;
}

.process-feature-box {
  background: var(--navy-950);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.process-feature-box h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.process-feature-box p {
  color: #cbd5e1;
  margin-bottom: 24px;
}

/* ==========================================================================
   Google Reviews & Social Proof Section
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-stars {
  color: var(--amber-400);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #15803d;
  background: #f0fdf4;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.review-text {
  font-size: 0.94rem;
  color: var(--ink-700);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-500);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.reviewer-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-950);
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--ink-500);
}

/* ==========================================================================
   Service Area & ZIP Checker
   ========================================================================== */
.service-area-box {
  background: var(--paper-subtle);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 44px;
  text-align: center;
}

.zip-checker-wrap {
  max-width: 520px;
  margin: 0 auto 36px;
}

.zip-form {
  display: flex;
  gap: 10px;
}

.zip-input {
  flex-grow: 1;
  padding: 14px 18px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-light);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.zip-input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(14, 31, 216, 0.15);
}

.zip-result-message {
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 24px;
}

.zip-result-message.success {
  color: #15803d;
}

.zip-result-message.notice {
  color: var(--blue-500);
}

.city-chips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.city-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-700);
  transition: all var(--transition-fast);
}

.city-chip-btn:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
  color: var(--blue-500);
  transform: translateY(-2px);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--navy-950);
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper-dim);
  color: var(--ink-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--blue-50);
  color: var(--blue-500);
}

.faq-answer {
  padding: 0 24px 20px;
  display: none;
  color: var(--ink-500);
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   Final Conversion Banner
   ========================================================================== */
.final-cta-banner {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-850) 50%, var(--blue-600) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.final-cta-banner h2 {
  color: #ffffff;
  margin-bottom: 14px;
}

.final-cta-banner p {
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-950);
  color: #94a3b8;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #ffffff;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  color: var(--green-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   Mobile Floating Sticky Action Dock
   ========================================================================== */
.mobile-action-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 18, 70, 0.97);
  backdrop-filter: blur(16px);
  padding: 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 999;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
}

.dock-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
}

.dock-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.1;
  text-align: center;
}

.dock-btn svg {
  width: 18px;
  height: 18px;
}

.dock-btn.call {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.dock-btn.sms {
  background: rgba(0, 226, 63, 0.16);
  color: #00e23f;
}

.dock-btn.quote {
  background: var(--blue-500);
  color: #ffffff;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
/* ==========================================================================
   Project Gallery Filter Tabs & Lightbox 2026
   ========================================================================== */
.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  background: var(--paper-subtle);
  color: var(--ink-700);
  border: 1.5px solid var(--border-light);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
  color: var(--blue-500);
}

.gallery-filter-btn.active {
  background: var(--blue-500);
  color: #ffffff;
  border-color: var(--blue-500);
  box-shadow: 0 4px 14px rgba(14, 31, 216, 0.35);
}

/* Homepage results strip directly below the hero */
.hero-results-strip {
  padding: 54px 0 60px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.hero-results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.hero-results-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.hero-results-link {
  color: var(--blue-500);
  font-weight: 750;
  white-space: nowrap;
}

.hero-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hero-result-card {
  position: relative;
  display: block;
  height: 275px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--navy-950);
  box-shadow: var(--shadow-sm);
}

.hero-result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-smooth);
}

.hero-result-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(6, 11, 20, 0.88));
}

.hero-result-card span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 15px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 750;
}

.hero-result-card:hover img {
  transform: scale(1.035);
}

@media (max-width: 760px) {
  .hero-results-strip { padding: 38px 0 44px; }
  .hero-results-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero-results-link { white-space: normal; }
  .hero-results-grid { grid-template-columns: 1fr; gap: 14px; }
  .hero-result-card { height: min(76vw, 310px); }
}

.gallery-grid-2026 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.gallery-item.hidden {
  display: none !important;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-400);
}

.gallery-item-photo {
  height: 240px;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery-item[data-category="house"] .gallery-item-photo img,
.gallery-item[data-category="roof"] .gallery-item-photo img,
.gallery-item[data-category="deck"] .gallery-item-photo img,
.gallery-item[data-category="concrete"] .gallery-item-photo img {
  object-position: center;
}

.gallery-item:hover .gallery-item-photo img {
  transform: scale(1.08);
}

.gallery-category-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(6, 11, 20, 0.82);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gallery-category-pill.green {
  background: var(--green-500);
  color: var(--navy-950);
}

.gallery-category-pill.blue {
  background: var(--blue-500);
}

.gallery-item-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-item-body h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--navy-950);
}

.gallery-item-body p {
  font-size: 0.86rem;
  color: var(--ink-500);
  margin-bottom: 12px;
  line-height: 1.5;
}

.gallery-item-loc {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-500);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   Dedicated Christmas Light Installation Showcase Section 2026
   ========================================================================== */
.christmas-showcase-section {
  background: radial-gradient(circle at 50% 0%, #14247a 0%, #0a1440 70%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  border-top: 1px solid rgba(0, 226, 63, 0.15);
  border-bottom: 1px solid rgba(0, 226, 63, 0.15);
}

.christmas-showcase-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(0, 226, 63, 0.15), rgba(0, 226, 63, 0.85), rgba(0, 226, 63, 0.15));
  background-size: 300% 100%;
  animation: holiday-lights-glow 8s linear infinite;
}

@keyframes holiday-lights-glow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.holiday-glow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 226, 63, 0.12);
  border: 1px solid rgba(0, 226, 63, 0.40);
  color: #7cf0a5;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 0 16px rgba(0, 226, 63, 0.15);
}

.holiday-glow-badge .sparkle {
  font-size: 1rem;
}

.christmas-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.holiday-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.holiday-feat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 18px;
  backdrop-filter: blur(8px);
}

.holiday-feat-item h4 {
  font-size: 1.02rem;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.holiday-feat-item p {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.45;
  margin: 0;
}

.holiday-all-inclusive-bar {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.holiday-steps-pill-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.holiday-step-pill {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-400);
  background: rgba(16, 185, 129, 0.18);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.holiday-slider-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.holiday-slider-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#holiday-slider {
  cursor: default;
}

#holiday-slider .holiday-after-wrap {
  width: 100%;
  border-right: 0;
  box-shadow: none;
}

.holiday-slider-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 'Before' side reads as lights-off (dark house) vs the lit after side */
.holiday-img-before {
  filter: brightness(0.34) contrast(1.12) saturate(0.55);
}

.holiday-after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 3px solid #00c73c;
  box-shadow: 0 0 15px rgba(0, 226, 63, 0.55);
}

.holiday-after-wrap img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.holiday-badge {
  position: absolute;
  top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.holiday-badge.before {
  right: 14px;
  background: rgba(6, 11, 20, 0.85);
  color: #e2e8f0;
}

.holiday-badge.after {
  left: 14px;
  background: #00e23f;
  color: #052c12;
  box-shadow: 0 0 12px rgba(0, 226, 63, 0.5);
}

.holiday-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 9px 18px;
  background: #00e23f;
  color: #052c12;
  border: 2.5px solid #ffffff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(0, 226, 63, 0.7);
  cursor: ew-resize;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.holiday-handle span {
  pointer-events: none;
}

.holiday-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.holiday-thumb {
  height: 80px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.holiday-thumb:hover, .holiday-thumb.active {
  border-color: #00c73c;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(0, 226, 63, 0.45);
}

.holiday-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .christmas-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .holiday-features-list {
    grid-template-columns: 1fr;
  }
  .holiday-all-inclusive-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 18, 0.94);
  backdrop-filter: blur(16px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-content {
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 14px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .gallery-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid-2026 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .holiday-urgent-bar {
    padding: 8px 0;
  }

  .holiday-urgent-bar .urgent-inner {
    gap: 6px 10px;
  }

  .holiday-urgent-tag {
    font-size: 0.66rem;
  }

  .holiday-urgent-text {
    width: 100%;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .holiday-urgent-btn {
    min-height: 40px;
    padding: 8px 18px;
  }

  .top-bar {
    display: none;
  }
  
  .nav-menu, .phone-quick {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }

  .header-actions > .btn {
    display: none;
  }

  .site-header .header-inner {
    min-height: 68px;
  }

  .brand-subtitle {
    font-size: 0.58rem;
  }

  .hero-2026 {
    padding: 46px 0 54px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-title,
  .hero-title[style] {
    font-size: clamp(2rem, 10.5vw, 3rem) !important;
    line-height: 1.06 !important;
    margin-bottom: 16px !important;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-visual-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-floating-card {
    position: static;
    margin: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-pressure-link {
    grid-column: auto;
    margin-top: 0;
    text-align: center;
  }
  
  .split-hub-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .size-pills {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-select-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .compare-container {
    height: 380px;
  }
  
  .mobile-action-dock {
    display: block;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   FIREFLY-STYLE SEASONAL TOP-OF-PAGE
   Seasonal switch: body.season-christmas (default) or body.season-pressure,
   set by assets/js/main.js (DEFAULT_SEASON). Preview: ?season=pressure
   ========================================================================== */

/* Default (no JS / christmas): hide pressure-only blocks */
.seasonal-pressure {
  display: none !important;
}

/* Pressure season: swap which blocks show */
body.season-pressure .seasonal-christmas {
  display: none !important;
}
body.season-pressure .seasonal-pressure {
  display: block !important;
}
body.season-pressure .seasonal-pressure.btn,
body.season-pressure a.seasonal-pressure.btn {
  display: inline-flex !important;
}

/* Light hero base (logo green/blue, bright winter-sky feel) */
.hero-2026.ff-hero {
  background: linear-gradient(165deg, #eef5ff 0%, #e8f8ee 55%, #ffffff 100%);
  color: #0a1440;
}

.hero-2026.ff-hero .crew-reel-slide {
  filter: brightness(1.32) contrast(0.92) saturate(1.05);
}

.ff-hero-grid {
  gap: 56px;
}

.ff-hero-title {
  font-size: clamp(2.4rem, 5.4vw, 3.9rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em;
  max-width: 15ch;
}

.ff-hero-sub {
  max-width: 600px;
}

.hero-2026.ff-hero .hero-title {
  color: #081245;
}

.hero-2026.ff-hero .hero-subtitle {
  color: #3d4a6b;
}

.hero-2026.ff-hero .hero-seasonal-tag {
  background: rgba(0, 226, 63, 0.12);
  border: 1.5px solid #00c73c;
  color: #0a5c24;
}

.hero-2026.ff-hero .hero-pressure-link {
  color: #0e1fd8;
  background: rgba(14, 31, 216, 0.06);
  border: 1px solid rgba(14, 31, 216, 0.25);
}

.hero-2026.ff-hero .hero-pressure-link:hover {
  background: rgba(14, 31, 216, 0.12);
  border-color: #0e1fd8;
}

.ff-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}

/* Logo-blue primary CTA (replaces the old red CTAs) */
.btn-logo {
  background: linear-gradient(135deg, #1230e0, #0a18b0) !important;
  color: #ffffff !important;
  border: 1px solid #1c3af0 !important;
  box-shadow: 0 8px 22px rgba(14, 31, 216, 0.35) !important;
}

.btn-logo:hover {
  box-shadow: 0 10px 28px rgba(14, 31, 216, 0.45) !important;
  transform: translateY(-1px);
}

/* --- FireFly-style image tiles --- */
.ff-tiles {
  padding: 70px 0 74px;
  background: #ffffff;
}

.ff-tiles-head {
  text-align: center;
  margin-bottom: 34px;
}

.ff-tiles-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-950);
  letter-spacing: -0.02em;
  margin: 8px 0 0;
}

.ff-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ff-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  padding: 26px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.ff-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ff-tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0) 30%, rgba(5, 10, 18, 0.82) 100%);
  z-index: 1;
}

.ff-tile-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.ff-tile-link {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: #00e23f;
  font-weight: 700;
  font-size: 0.9rem;
}

.ff-tile:hover .ff-tile-link {
  color: #3bee7d;
}

/* --- FireFly-style consultation CTA band --- */
.ff-cta-band {
  background: radial-gradient(circle at 15% 20%, #14247a 0%, #0a1440 60%, #071040 100%);
  color: #ffffff;
  padding: 74px 0;
  border-top: 1px solid rgba(0, 226, 63, 0.12);
  border-bottom: 1px solid rgba(0, 226, 63, 0.12);
}

.ff-cta-band-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}

.ff-cta-band-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.ff-cta-band-copy p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 26px;
}

.ff-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ff-cta-band-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 226, 63, 0.30);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(0, 226, 63, 0.18);
  display: block;
}

/* --- FireFly-style benefits grid --- */
.ff-benefits {
  padding: 74px 0;
  background: #ffffff;
}

.ff-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.ff-benefit {
  background: var(--navy-50, #f8fafc);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.ff-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ff-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1230e0, #0a18b0);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.ff-benefit h3 {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.ff-benefit p {
  color: var(--ink-500, #64748b);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .ff-tiles-grid,
  .ff-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ff-cta-band-inner {
    grid-template-columns: 1fr;
  }
  .ff-cta-band-img {
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .ff-tiles-grid,
  .ff-benefits-grid {
    grid-template-columns: 1fr;
  }
  .ff-tile {
    min-height: 240px;
  }
}

/* ==========================================================================
   POP POLISH — high-impact visual upgrades (logo palette, light hero)
   ========================================================================== */

/* ---- Stats strip ---- */
.ff-stats {
  background: linear-gradient(120deg, #f1f4ff 0%, #e8f8ee 100%);
  border-bottom: 2px solid rgba(14, 31, 216, 0.12);
  padding: 26px 0;
}

.ff-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ff-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  position: relative;
}

.ff-stat strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(120deg, #0e1fd8 0%, #00a832 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ff-stat span {
  color: var(--ink-500);
  font-size: 0.84rem;
  font-weight: 600;
}

.ff-stat + .ff-stat::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(14, 31, 216, 0.18);
}

@media (max-width: 720px) {
  .ff-stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ff-stat strong { font-size: 1.7rem; }
  .ff-stat + .ff-stat::before { display: none; }
}

/* ---- Hero floating stat chips ---- */
.hero-stat-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(14, 31, 216, 0.25);
  box-shadow: 0 10px 26px rgba(14, 31, 216, 0.18);
  backdrop-filter: blur(8px);
  animation: chip-float 4.5s ease-in-out infinite;
}

.hero-stat-chip strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0e1fd8;
  line-height: 1.1;
}

.hero-stat-chip span {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0a5c24;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-stat-chip-a { top: 18px; left: 18px; }
.hero-stat-chip-b { bottom: 108px; right: 18px; animation-delay: 1.1s; }

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .hero-stat-chip { display: none; }
}

/* ---- Glow-pulse CTAs ---- */
.btn-glow {
  animation: cta-pulse 2.8s ease-in-out infinite;
  position: relative;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(14, 31, 216, 0.35), 0 0 0 0 rgba(0, 226, 63, 0.35); }
  50% { box-shadow: 0 8px 28px rgba(14, 31, 216, 0.5), 0 0 0 12px rgba(0, 226, 63, 0); }
}

/* ---- Hero ambient color blobs (behind photos) ---- */
.hero-2026.ff-hero::before,
.hero-2026.ff-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.hero-2026.ff-hero::before {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(0, 226, 63, 0.22) 0%, transparent 62%);
  animation: blob-drift 10s ease-in-out infinite alternate;
}

.hero-2026.ff-hero::after {
  width: 460px;
  height: 460px;
  bottom: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(14, 31, 216, 0.18) 0%, transparent 62%);
  animation: blob-drift 12s ease-in-out infinite alternate-reverse;
}

@keyframes blob-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(24px, 18px) scale(1.12); }
}

/* ---- Tiles: photo zoom + link slide on hover ---- */
.ff-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.ff-tile:hover::after {
  transform: scale(1.09);
}

.ff-tile .ff-tile-link {
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.ff-tile:hover .ff-tile-link {
  transform: translateX(5px);
}

/* ---- CTA band: glowing frame ---- */
.ff-cta-band {
  box-shadow: inset 0 0 60px rgba(0, 226, 63, 0.06), 0 0 40px rgba(14, 31, 216, 0.12);
}

/* ---- Benefits: icon glow ---- */
.ff-benefit-icon {
  box-shadow: 0 0 0 4px rgba(14, 31, 216, 0.10), 0 6px 16px rgba(14, 31, 216, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ff-benefit:hover .ff-benefit-icon {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 0 0 6px rgba(0, 226, 63, 0.16), 0 8px 20px rgba(0, 226, 63, 0.32);
}

/* ---- Reveal-on-scroll (JS adds body.js-reveal) ---- */
body.js-reveal .reveal-el {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

body.js-reveal .reveal-el.revealed {
  opacity: 1;
  transform: none;
}

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 20px;
  z-index: 998;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #1230e0, #0a18b0);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(14, 31, 216, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 31, 216, 0.5), 0 0 16px rgba(0, 226, 63, 0.35);
}

.back-to-top[hidden] {
  display: none;
}

/* ---- Brand details: selection, scrollbar, focus ---- */
::selection {
  background: rgba(0, 226, 63, 0.28);
  color: #052c12;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #eef2ff;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0e1fd8, #00a832);
  border-radius: 8px;
  border: 2px solid #eef2ff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(0, 226, 63, 0.65);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==========================================================================
   CHRISTMAS THEME — crimson red + warm gold + deep evergreen
   Applied ONLY to Christmas content (seasonal-christmas blocks + showcase +
   urgent bar + holiday nav pill). Pressure-washing content keeps the logo
   green/blue palette.
   ========================================================================== */

/* ---- Always-Christmas chrome: urgent bar + holiday nav pill ---- */
.holiday-urgent-bar {
  background: #0c2b1d;
  border-bottom: 2px solid #f5b400;
}

.holiday-urgent-tag {
  background: #e11d2e;
  border-color: #ff5a5a;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(225, 29, 46, 0.55);
}

.holiday-urgent-btn {
  background: linear-gradient(135deg, #f5b400, #e0a100);
  color: #3a2400 !important;
  border-color: #ffd166;
  box-shadow: 0 2px 14px rgba(245, 180, 0, 0.5);
}

.holiday-urgent-btn:hover {
  background: #ffc94d;
  color: #3a2400 !important;
}

.nav-link.holiday-nav-pill {
  background: #e11d2e;
  border-color: #ff5a5a;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(225, 29, 46, 0.5);
}

.nav-link.holiday-nav-pill:hover {
  background: #c81e2e;
  color: #ffffff;
}

/* ---- Christmas CTA (red) ---- */
.btn-xmas {
  background: linear-gradient(135deg, #f43f3f, #c81e2e) !important;
  color: #ffffff !important;
  border: 1px solid #ff5a5a !important;
  box-shadow: 0 8px 22px rgba(225, 29, 46, 0.4) !important;
}

.btn-xmas:hover {
  box-shadow: 0 10px 30px rgba(225, 29, 46, 0.55), 0 0 18px rgba(245, 180, 0, 0.35) !important;
  transform: translateY(-1px);
}

@keyframes cta-pulse-xmas {
  0%, 100% { box-shadow: 0 8px 22px rgba(225, 29, 46, 0.4), 0 0 0 0 rgba(245, 180, 0, 0.4); }
  50% { box-shadow: 0 8px 28px rgba(225, 29, 46, 0.55), 0 0 0 12px rgba(245, 180, 0, 0); }
}

body.season-christmas .btn-glow {
  animation-name: cta-pulse-xmas;
}

/* ---- Christmas hero: warm cream + red/gold ---- */
.hero-2026.ff-hero.seasonal-christmas {
  background: linear-gradient(165deg, #fff4ec 0%, #fdf1e3 55%, #ffffff 100%);
  color: #3a2400;
}

.hero-2026.ff-hero.seasonal-christmas::before {
  background: radial-gradient(circle, rgba(245, 180, 0, 0.26) 0%, transparent 62%);
}

.hero-2026.ff-hero.seasonal-christmas::after {
  background: radial-gradient(circle, rgba(225, 29, 46, 0.16) 0%, transparent 62%);
}

.hero-2026.ff-hero.seasonal-christmas .hero-title {
  color: #2a1500;
}

.hero-2026.ff-hero.seasonal-christmas .hero-subtitle {
  color: #6b4f2a;
}

.hero-2026.ff-hero.seasonal-christmas .hero-seasonal-tag {
  background: rgba(225, 29, 46, 0.10);
  border: 1.5px solid #e11d2e;
  color: #a3121e;
}

.hero-2026.ff-hero.seasonal-christmas .hero-pressure-link {
  color: #b45309;
  background: rgba(245, 180, 0, 0.10);
  border: 1px solid rgba(245, 180, 0, 0.4);
}

.hero-2026.ff-hero.seasonal-christmas .hero-pressure-link:hover {
  background: rgba(245, 180, 0, 0.18);
  border-color: #f5b400;
}

/* headline gradient word: gold -> red (christmas) */
.seasonal-christmas .brand-gradient {
  background: linear-gradient(120deg, #ffb400 0%, #e11d2e 55%, #b3121f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* christmas hero visual card: gold frame + glow */
.hero-2026.ff-hero.seasonal-christmas .hero-visual-card {
  border-color: rgba(245, 180, 0, 0.55);
  box-shadow: 0 20px 50px rgba(60, 20, 0, 0.5), 0 0 34px rgba(245, 180, 0, 0.35);
}

.hero-2026.ff-hero.seasonal-christmas .hero-visual-card::before {
  background: radial-gradient(ellipse at center, rgba(255, 200, 80, 0.38) 0%, rgba(255, 200, 80, 0.08) 45%, transparent 70%);
}

.hero-2026.ff-hero.seasonal-christmas .hero-floating-card {
  background: rgba(24, 12, 2, 0.92);
  border-color: rgba(245, 180, 0, 0.45);
}

.hero-2026.ff-hero.seasonal-christmas .floating-card-badge {
  background: rgba(245, 180, 0, 0.16) !important;
  color: #8a5b00 !important;
  border-color: rgba(245, 180, 0, 0.5) !important;
}

.hero-2026.ff-hero.seasonal-christmas .hero-stat-chip {
  border-color: rgba(245, 180, 0, 0.45);
}

.hero-2026.ff-hero.seasonal-christmas .hero-stat-chip strong {
  color: #e11d2e;
}

.hero-2026.ff-hero.seasonal-christmas .hero-stat-chip span {
  color: #8a5b00;
}

/* ---- Stats strip: christmas numbers red -> gold ---- */
body.season-christmas .ff-stat strong {
  background: linear-gradient(120deg, #e11d2e 0%, #f5b400 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Christmas tiles row: gold links ---- */
.ff-tiles-grid.seasonal-christmas .ff-tile-link {
  color: #f5b400;
}

.ff-tiles-grid.seasonal-christmas .ff-tile:hover .ff-tile-link {
  color: #ffd166;
}

/* ---- CTA band: evergreen for christmas season ---- */
body.season-christmas .ff-cta-band {
  background: radial-gradient(circle at 15% 20%, #14532d 0%, #0c2b1d 60%, #081f14 100%);
  border-top-color: rgba(245, 180, 0, 0.25);
  border-bottom-color: rgba(245, 180, 0, 0.25);
  box-shadow: inset 0 0 60px rgba(245, 180, 0, 0.06), 0 0 40px rgba(225, 29, 46, 0.12);
}

body.season-christmas .ff-cta-band-img img {
  border-color: rgba(245, 180, 0, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(245, 180, 0, 0.25);
}

/* ---- Benefits: christmas items get red icons ---- */
body.season-christmas .ff-benefit.seasonal-christmas .ff-benefit-icon {
  background: linear-gradient(135deg, #f43f3f, #c81e2e);
  box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.12), 0 6px 16px rgba(225, 29, 46, 0.3);
}

body.season-christmas .ff-benefit.seasonal-christmas:hover .ff-benefit-icon {
  box-shadow: 0 0 0 6px rgba(245, 180, 0, 0.22), 0 8px 20px rgba(245, 180, 0, 0.35);
}

/* ---- Christmas showcase: evergreen + red/gold accents ---- */
.christmas-showcase-section {
  background: radial-gradient(circle at 50% 0%, #14532d 0%, #0a2418 70%);
  border-top-color: rgba(245, 180, 0, 0.2);
  border-bottom-color: rgba(245, 180, 0, 0.2);
}

.christmas-showcase-section::before {
  background: linear-gradient(90deg, rgba(225, 29, 46, 0.15), rgba(245, 180, 0, 0.85), rgba(225, 29, 46, 0.15));
}

.holiday-glow-badge {
  background: rgba(245, 180, 0, 0.12);
  border-color: rgba(245, 180, 0, 0.45);
  color: #ffd166;
  box-shadow: 0 0 16px rgba(245, 180, 0, 0.18);
}

.holiday-thumb:hover, .holiday-thumb.active {
  border-color: #f5b400;
  box-shadow: 0 0 12px rgba(245, 180, 0, 0.5);
}

.holiday-badge.after {
  background: #f5b400;
  color: #3a2400;
  box-shadow: 0 0 12px rgba(245, 180, 0, 0.55);
}

.holiday-after-wrap {
  border-right-color: #f5b400;
  box-shadow: 0 0 15px rgba(245, 180, 0, 0.55);
}

.holiday-handle {
  background: #f5b400;
  color: #3a2400;
  box-shadow: 0 0 18px rgba(245, 180, 0, 0.75);
}

/* Seasonal tile rows are 2-up now (Christmas: 2 tiles, Pressure: 2x2) */
.ff-tiles-grid.seasonal-pressure {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .ff-tiles-grid.seasonal-pressure {
    grid-template-columns: 1fr;
  }
}
