/* ==========================================================================
   WARRNAMBOOL PRESSURE WASHING - MASTER STYLESHEET
   Ultra-modern, high-converting design focused 100% on Phone Call Conversions
   ========================================================================== */

:root {
  /* Brand Colors */
  --navy-dark: #071322;
  --navy-card: #0d1f35;
  --navy-surface: #132a48;
  --blue-primary: #0284c7;
  --blue-hover: #0369a1;
  --blue-light: #e0f2fe;
  --blue-accent: #38bdf8;
  
  --orange-cta: #ea580c;
  --orange-hover: #c2410c;
  --orange-light: #ffedd5;
  --orange-glow: rgba(234, 88, 12, 0.4);

  --emerald-green: #10b981;
  --emerald-light: #d1fae5;
  --gold-star: #f59e0b;

  /* Neutrals */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --bg-main: #ffffff;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --border-subtle: #e2e8f0;
  --border-strong: #cbd5e1;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Radii & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 8px 24px var(--orange-glow);

  --container-max: 1240px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-main);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 74px; /* Room for mobile sticky call bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--blue-hover);
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-dark {
  background-color: var(--navy-dark);
  color: var(--text-white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--text-white);
}

.section-dark p {
  color: var(--text-light);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Section Header */
.section-header {
  max-width: 820px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

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

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy-dark);
  margin-top: 0.6rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--blue-light);
  color: var(--blue-primary);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--blue-accent);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--emerald-green);
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-smooth);
  line-height: 1.3;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-cta) 0%, #d9480f 100%);
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f97316 0%, var(--orange-cta) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.5);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--navy-dark) !important;
  border: 2px solid var(--border-strong);
}

.btn-secondary:hover {
  background-color: var(--bg-alt);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--navy-dark) !important;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-call-large {
  font-size: 1.15rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
}

.btn-pulse {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(234, 88, 12, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #071322 0%, #0c233f 100%);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--text-light);
}

.announcement-left strong {
  color: #ffffff;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.announcement-link {
  color: var(--blue-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.announcement-link:hover {
  color: #ffffff;
}

@media (max-width: 860px) {
  .announcement-left { display: none; }
  .announcement-container { justify-content: center; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--navy-dark);
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--blue-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
  flex-shrink: 0;
}

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

.logo-title {
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.5rem 0.2rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--blue-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: var(--blue-primary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--orange-cta);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.header-phone-btn:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy-dark);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background-color: var(--blue-light);
  color: var(--blue-primary);
}

@media (max-width: 992px) {
  nav[aria-label="Main Navigation"] { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumb-nav {
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-item a {
  color: var(--text-muted);
}

.breadcrumb-item a:hover {
  color: var(--blue-primary);
}

.breadcrumb-item[aria-current="page"] {
  color: var(--navy-dark);
  font-weight: 600;
}

.breadcrumb-separator {
  color: var(--text-light);
}

/* ==========================================================================
   Hero Section - Clean, High Impact Image & Call Focus
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #071322 0%, #0a203a 60%, #0d284a 100%);
  color: var(--text-white);
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, rgba(2, 132, 199, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
}

.hero-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-stars {
  color: var(--gold-star);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.lead {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
}

.hero-feature-item svg {
  color: var(--emerald-green);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-subtext {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-floating-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(7, 19, 34, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-floating-text {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.hero-floating-phone {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-accent);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-content {
    max-width: 100%;
  }
}

/* ==========================================================================
   Trust / Stats Matrix
   ========================================================================== */
.trust-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.75rem 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--blue-light);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-dark);
  line-height: 1.25;
}

.trust-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 540px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.4);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(7, 19, 34, 0.85);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

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

.service-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
  flex-grow: 1;
}

.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-body);
}

.service-card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-list li svg {
  color: var(--emerald-green);
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.service-learn-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-learn-link:hover {
  gap: 0.6rem;
}

.service-btn-sm {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  background-color: var(--navy-dark);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.service-btn-sm:hover {
  background-color: var(--orange-cta);
}

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

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

/* ==========================================================================
   Before & After Comparison Slider
   ========================================================================== */
.comparison-section {
  background-color: #ffffff;
}

.comparison-wrapper {
  max-width: 940px;
  margin: 0 auto 2.5rem;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
  user-select: none;
  background-color: #0f172a;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-image-after {
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 3px solid #ffffff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.4);
}

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

.ba-label {
  position: absolute;
  bottom: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  z-index: 3;
}

.ba-label-before {
  right: 1.25rem;
  background-color: rgba(15, 23, 42, 0.85);
  color: #ffffff;
}

.ba-label-after {
  left: 1.25rem;
  background-color: rgba(2, 132, 199, 0.9);
  color: #ffffff;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 3px solid var(--blue-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-weight: 900;
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 4;
}

.ba-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

/* ==========================================================================
   How It Works (4-Step Process)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
  transition: transform var(--transition-fast);
}

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

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--blue-primary) 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.65rem;
}

.step-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

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

/* ==========================================================================
   Two-Column Content Grid
   ========================================================================== */
.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.content-block-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.content-block-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.feature-check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.75rem 0;
}

.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--text-body);
}

.feature-check-list li svg {
  color: var(--emerald-green);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .content-grid, .content-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   Comparison Table (Us vs DIY Washers)
   ========================================================================== */
.comparison-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th, .comp-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.comp-table th {
  background-color: var(--bg-alt);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy-dark);
}

.comp-table th.highlight-col {
  background-color: var(--blue-light);
  color: var(--blue-primary);
}

.comp-table td.highlight-col {
  background-color: rgba(224, 242, 254, 0.35);
  font-weight: 600;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   Customer Reviews & Testimonials
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast);
}

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

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-stars {
  color: var(--gold-star);
  font-size: 1.1rem;
}

.review-source {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background-color: var(--bg-alt);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--blue-light);
  color: var(--blue-primary);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-dark);
}

.author-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

/* ==========================================================================
   Service Areas Grid
   ========================================================================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.area-badge-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background-color: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.area-badge-card:hover {
  background-color: var(--blue-light);
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  transform: translateY(-2px);
}

.area-icon {
  color: var(--orange-cta);
  font-size: 1.1rem;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item.is-open {
  border-color: var(--blue-primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-dark);
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy-dark);
  flex-shrink: 0;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background-color: var(--blue-light);
  color: var(--blue-primary);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

/* ==========================================================================
   High-Impact CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #071322 0%, #0d284a 100%);
  color: #ffffff;
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.15) 0%, rgba(234, 88, 12, 0) 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #040c17;
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-col p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  transition: color var(--transition-fast);
}

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

.footer-phone-cta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-phone-cta .phone-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.825rem;
}

.footer-holding {
  color: #64748b;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

/* ==========================================================================
   Sticky Mobile Call-Only Bar
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(7, 19, 34, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1rem;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  width: 100%;
  background: linear-gradient(135deg, var(--orange-cta) 0%, #d9480f 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
}

/* ==========================================================================
   Page Hero (For Subpages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #071322 0%, #0c233f 100%);
  color: #ffffff;
  padding: 4rem 0 5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.page-hero p.lead {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
