/* ========================================
   CLEAR WASTE SOLUTIONS - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
  /* Brand Colors */
  --navy: #0f172a;
  --navy-light: #1e293b;
  --navy-dark: #020617;
  --yellow: #facc15;
  --yellow-hover: #eab308;
  --yellow-light: #fef3c7;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Primary */
  --brand-green: #22c55e;
  --brand-green-dark: #16a34a;

  /* Secondary/Accent - YELLOW */
  --brand-yellow: #fbbf24;
  --brand-yellow-dark: #f59e0b;
  --brand-yellow-light: #fef3c7;

  /* Status */
  --status-red: #ef4444;
  
  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  box-shadow:
    0 2px 4px rgba(34, 197, 94, 0.2),
    0 4px 12px rgba(34, 197, 94, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  transform: translateY(-1px);
  box-shadow:
    0 4px 8px rgba(34, 197, 94, 0.25),
    0 8px 20px rgba(34, 197, 94, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f172a;
  border: none;
  box-shadow:
    0 2px 4px rgba(251, 191, 36, 0.2),
    0 4px 12px rgba(251, 191, 36, 0.15);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  transform: translateY(-1px);
  box-shadow:
    0 4px 8px rgba(251, 191, 36, 0.25),
    0 8px 20px rgba(251, 191, 36, 0.2);
}

.btn-outline {
  background: #ffffff;
  color: #0f172a;
  border: 2px solid #e2e8f0;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: #fbbf24;
  background: #fffbeb;
}

.btn-navy {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.15);
}

.btn-navy:hover {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0.25rem 0;
  position: relative;
}

@media (max-width: 1023px) {
  .header-inner .mobile-phone {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-inner .header-cta {
    order: -1;
  }
  .header-inner .logo {
    order: 1;
  }
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 90px;
  width: auto;
  display: block;
}

.footer .logo-img {
  height: 120px;
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link.active {
  color: var(--yellow) !important;
  font-weight: 700;
}

.mobile-phone {
  display: none;
}

@media (max-width: 1023px) {
  .mobile-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.4), 0 0 20px rgba(250, 204, 21, 0.2);
    animation: phone-glow 2s ease-in-out infinite;
  }

  .mobile-phone:hover,
  .mobile-phone:active {
    color: var(--white);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  }

  @keyframes phone-glow {
    0%, 100% {
      text-shadow: 0 0 10px rgba(250, 204, 21, 0.4), 0 0 20px rgba(250, 204, 21, 0.2);
    }
    50% {
      text-shadow: 0 0 16px rgba(250, 204, 21, 0.6), 0 0 30px rgba(250, 204, 21, 0.3);
    }
  }
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.header-cta .btn {
  white-space: nowrap;
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-cta .btn-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(251, 191, 36, 0.2);
  text-shadow: 0 0 8px rgba(255,255,255,0.8), 0 0 16px rgba(255,255,255,0.4);
  animation: electric-glitch 3s infinite;
  position: relative;
}

.header-cta .btn-primary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  letter-spacing: 0.04em;
}

/* Electric glitch for all CTA buttons */
@keyframes electric-glitch {
  0%, 100% {
    text-shadow: 0 0 8px rgba(255,255,255,0.8), 0 0 16px rgba(255,255,255,0.4);
    color: #ffffff;
  }
  7% {
    text-shadow: -2px 0 rgba(255,255,255,0.9), 2px 0 rgba(250,204,21,0.6), 0 0 20px rgba(255,255,255,0.8);
    color: #ffffff;
  }
  8% {
    text-shadow: 0 0 4px rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
  }
  9% {
    text-shadow: 1px 0 rgba(255,255,255,1), -1px 0 rgba(250,204,21,0.8), 0 0 24px rgba(255,255,255,0.9);
    color: #ffffff;
  }
  10% {
    text-shadow: 0 0 8px rgba(255,255,255,0.8), 0 0 16px rgba(255,255,255,0.4);
  }
  45% {
    text-shadow: 0 0 8px rgba(255,255,255,0.8), 0 0 16px rgba(255,255,255,0.4);
    color: #ffffff;
  }
  46% {
    text-shadow: 3px 0 rgba(255,255,255,0.8), -1px 0 rgba(59,130,246,0.5);
    color: rgba(255,255,255,0.6);
  }
  47% {
    text-shadow: -2px 0 rgba(250,204,21,0.9), 0 0 30px rgba(255,255,255,1);
    color: #ffffff;
  }
  48% {
    text-shadow: 0 0 2px rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.8);
  }
  49% {
    text-shadow: 1px 0 rgba(255,255,255,1), 0 0 20px rgba(255,255,255,0.6);
    color: #ffffff;
  }
  50% {
    text-shadow: 0 0 8px rgba(255,255,255,0.8), 0 0 16px rgba(255,255,255,0.4);
  }
  78% {
    text-shadow: 0 0 8px rgba(255,255,255,0.8), 0 0 16px rgba(255,255,255,0.4);
  }
  79% { color: rgba(255,255,255,0.5); text-shadow: -1px 0 rgba(255,255,255,0.6); }
  80% { color: #ffffff; text-shadow: 2px 0 rgba(250,204,21,0.7), 0 0 25px rgba(255,255,255,0.9); }
  81% { text-shadow: 0 0 8px rgba(255,255,255,0.8), 0 0 16px rgba(255,255,255,0.4); }
}

@media (max-width: 479px) {
  .header-cta .btn {
    display: none;
  }
}

.header-quote-label {
  display: none;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.header-cta .header-quote-label {
  display: none;
}

@media (min-width: 768px) {
  .header-cta .header-quote-label {
    display: block;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    font-size: 0.5rem;
    text-transform: none;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.02em;
  }
}

.header-phone {
  display: none;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
  .header-quote-label {
    display: block;
  }
}

.header-cta .mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.header-phone-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-phone-number {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--navy);
  padding: var(--space-xl);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mobile-menu-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-nav a.active {
  color: var(--yellow) !important;
  font-weight: 700;
}

.mobile-menu-phone {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
}

.mobile-menu-phone a {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: var(--space-md);
}

.mobile-menu-phone .btn {
  color: var(--navy);
  font-size: 1.125rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding-top: 130px;
  padding-bottom: var(--space-4xl);
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--yellow-light) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Homepage hero with background image */
.hero-bg {
  background: var(--white) url('/images/dumpster-truck-fleet-south-florida.jpg') center right / cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-bg::before {
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  inset: 0;
  border-radius: 0;
  opacity: 1;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 70%, transparent 85%),
    linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 20%);
  z-index: 1;
}

@media (max-width: 768px) {
  .header-inner {
    height: 60px;
  }
  .logo-img {
    height: 48px;
  }
  .footer .logo-img {
    height: 90px;
  }
  .mobile-menu {
    top: 60px;
  }
  .hero {
    padding-top: 90px;
  }
  .breadcrumb-wrapper {
    padding-top: 60px;
  }
  .breadcrumb-wrapper + .page-hero {
    padding-top: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-bg {
    min-height: 500px;
    background-position: center center;
    background-size: cover;
  }

  .hero-bg::before {
    background:
      linear-gradient(to bottom, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.5) 100%);
  }

  .hero-bg .hero-title,
  .hero-bg .hero-description {
    color: var(--white);
  }

  .hero-bg .hero-title-highlight {
    color: var(--yellow);
  }

  .hero-bg .hero-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9) 0%, rgba(22, 163, 74, 0.9) 100%);
    color: var(--white);
  }

  .hero-bg .hero-trust-item {
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-bg .hero-trust-icon {
    color: #facc15;
  }

  .hero-bg .hero-inner {
    max-width: 100%;
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

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

  .hero-trust {
    justify-content: center;
  }
}

.hero-bg > .container {
  position: relative;
  z-index: 2;
}

.hero-bg .hero-inner {
  display: block;
  max-width: 600px;
  background: radial-gradient(ellipse at center, rgba(15,23,42,0.55) 0%, rgba(15,23,42,0.35) 50%, transparent 80%);
  padding: 2rem;
  margin: -2rem;
  border-radius: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 8px rgba(74, 222, 128, 0.6), 0 0 20px rgba(74, 222, 128, 0.3);
  box-shadow:
    0 0 8px rgba(34, 197, 94, 0.2),
    0 0 20px rgba(34, 197, 94, 0.1),
    inset 0 0 12px rgba(34, 197, 94, 0.1);
  animation: neon-flicker 4s infinite;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.8), 0 0 12px rgba(74, 222, 128, 0.4);
  animation: neon-dot-pulse 4s infinite;
}

@keyframes neon-flicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(74,222,128,0.6), 0 0 20px rgba(74,222,128,0.3);
    box-shadow: 0 0 8px rgba(34,197,94,0.2), 0 0 20px rgba(34,197,94,0.1), inset 0 0 12px rgba(34,197,94,0.1);
  }
  5% { opacity: 0.85; }
  6% { opacity: 1; }
  41% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(74,222,128,0.6), 0 0 20px rgba(74,222,128,0.3);
  }
  42% { opacity: 0.7; text-shadow: 0 0 4px rgba(74,222,128,0.3); }
  43% { opacity: 1; text-shadow: 0 0 12px rgba(74,222,128,0.8), 0 0 30px rgba(74,222,128,0.4); }
  44% { opacity: 0.9; }
  45% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(74,222,128,0.6), 0 0 20px rgba(74,222,128,0.3);
  }
  76% { opacity: 1; }
  77% { opacity: 0.6; text-shadow: 0 0 2px rgba(74,222,128,0.2); }
  78% { opacity: 1; text-shadow: 0 0 14px rgba(74,222,128,0.9), 0 0 35px rgba(74,222,128,0.5); }
  79% { opacity: 0.85; }
  80% { opacity: 1; }
}

@keyframes neon-dot-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(74,222,128,0.8), 0 0 12px rgba(74,222,128,0.4); }
  42% { box-shadow: 0 0 2px rgba(74,222,128,0.3), 0 0 4px rgba(74,222,128,0.1); }
  43% { box-shadow: 0 0 10px rgba(74,222,128,1), 0 0 20px rgba(74,222,128,0.6); }
  77% { box-shadow: 0 0 2px rgba(74,222,128,0.2), 0 0 4px rgba(74,222,128,0.1); }
  78% { box-shadow: 0 0 10px rgba(74,222,128,1), 0 0 20px rgba(74,222,128,0.6); }
}

.hero-title {
  margin-bottom: var(--space-lg);
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title-highlight {
  color: var(--yellow-hover);
}

.hero-description {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: var(--space-xl);
  max-width: 540px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-cta .btn {
  white-space: nowrap;
}

.hero-cta .btn-secondary {
  color: #ffffff;
  font-weight: 700;
}

@media (min-width: 480px) {
  .hero-cta {
    flex-wrap: nowrap;
  }
}

@media (max-width: 479px) {
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-trust-icon {
  width: 20px;
  height: 20px;
  color: #facc15;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-image-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background-color: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.hero-image-badge-number {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.hero-image-badge-label {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: var(--space-4xl) 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--yellow-hover);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-description {
  color: var(--gray-600);
  font-size: 1.125rem;
}

.services-grid {
  display: grid;
  gap: var(--space-xl);
}

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Service Card: mobile-first (horizontal icon-left) --- */
/* --- FUTURISTIC INDUSTRIAL CARD BASE --- */
.service-card {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 60%, #0f0f23 100%);
  border: 1px solid rgba(251,191,36,0.15);
  border-radius: 12px;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.2),
    0 8px 24px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0 0.75rem;
  text-align: left;
}

/* brushed metal texture */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.01) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* gloss reflection sweep */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 55%, transparent 60%);
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.service-card:hover::after { left: 120%; }

.service-icon {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: none;
  border-radius: 0;
  position: relative;
  z-index: 2;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: #fbbf24;
  filter: drop-shadow(0 0 4px rgba(251,191,36,0.3));
  transition: filter 0.3s;
}
.service-card:hover .service-icon svg {
  filter: drop-shadow(0 0 8px rgba(251,191,36,0.6));
}

.service-card h3 {
  grid-column: 2;
  margin-bottom: var(--space-sm);
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.service-card p {
  grid-column: 2;
  color: #94a3b8;
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.service-features {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.service-feature svg {
  width: 16px;
  height: 16px;
  color: #fbbf24;
  flex-shrink: 0;
}

.service-link {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #fbbf24;
  font-size: 0.9375rem;
  position: relative;
  z-index: 2;
}

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

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* --- Service Card: desktop stacked layout --- */
@media (min-width: 768px) {
  .service-card {
    display: block;
    padding: var(--space-xl);
    border-radius: 16px;
    transform-style: preserve-3d;
    perspective: 800px;
  }

  .service-card:hover {
    border-color: rgba(251,191,36,0.4);
    transform: translateY(-6px) rotateX(2deg);
    box-shadow:
      0 4px 8px rgba(0,0,0,0.3),
      0 16px 40px rgba(0,0,0,0.25),
      0 0 20px rgba(251,191,36,0.08);
  }

  .service-card::before {
    background:
      repeating-linear-gradient(90deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 4px),
      linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 40%);
  }

  .service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(251,191,36,0.15), rgba(251,191,36,0.05));
    border: 1px solid rgba(251,191,36,0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    align-self: auto;
  }

  .service-icon svg {
    width: 28px;
    height: 28px;
    color: #fbbf24;
  }
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-us {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us .section-label {
  color: var(--yellow);
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-description {
  color: var(--gray-300);
}

.why-us-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Why Us Card: mobile-first (horizontal icon-left) --- */
.why-us-card {
  padding: 1rem;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 60%, #0f0f23 100%);
  border-radius: 12px;
  border: 1px solid rgba(251,191,36,0.12);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0 0.75rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.2),
    0 8px 24px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* brushed metal texture */
.why-us-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.01) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
}

/* glint sweep */
.why-us-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 55%, transparent 60%);
  transition: left 0.5s ease;
  pointer-events: none;
}
.why-us-card:hover::after { left: 120%; }

.why-us-icon {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: none;
  border-radius: 0;
  position: relative;
  z-index: 2;
}

.why-us-icon svg {
  width: 24px;
  height: 24px;
  color: #fbbf24;
  filter: drop-shadow(0 0 4px rgba(251,191,36,0.3));
  transition: filter 0.3s;
}
.why-us-card:hover .why-us-icon svg {
  filter: drop-shadow(0 0 8px rgba(251,191,36,0.6));
}

.why-us-card h3 {
  grid-column: 2;
  color: #ffffff;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 2;
}

.why-us-card p {
  grid-column: 2;
  color: #94a3b8;
  font-size: 0.9375rem;
  position: relative;
  z-index: 2;
}

/* --- Why Us Card: desktop stacked layout --- */
@media (min-width: 768px) {
  .why-us-card {
    display: block;
    padding: var(--space-xl);
    border-radius: 16px;
    transform-style: preserve-3d;
    perspective: 800px;
  }

  .why-us-card:hover {
    border-color: rgba(251,191,36,0.35);
    transform: translateY(-6px) rotateX(2deg);
    box-shadow:
      0 4px 8px rgba(0,0,0,0.3),
      0 16px 40px rgba(0,0,0,0.25),
      0 0 20px rgba(251,191,36,0.08);
  }

  .why-us-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(251,191,36,0.15), rgba(251,191,36,0.05));
    border: 1px solid rgba(251,191,36,0.25);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    align-self: auto;
  }

  .why-us-icon svg {
    width: 24px;
    height: 24px;
    color: #fbbf24;
  }
}

/* ========================================
   SERVICE AREAS
   ======================================== */
.areas {
  padding: var(--space-4xl) 0;
  background: #ffffff;
}

.areas-inner {
  display: grid;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .areas-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.areas-content {
  order: 2;
}

@media (min-width: 1024px) {
  .areas-content {
    order: 1;
  }
}

.areas-map {
  order: 1;
}

@media (min-width: 1024px) {
  .areas-map {
    order: 2;
  }
}

.areas-counties {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.county-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: var(--gray-50);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--navy);
}

.county-badge svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
}

.county-seal {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.areas-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

.city-tag {
  padding: 0.375rem 0.75rem;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.city-tag:hover {
  border-color: var(--yellow);
  background-color: var(--yellow-light);
  color: var(--navy);
}

.areas-map-container {
  background-color: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
}

#service-area-map {
  background: var(--gray-100);
}

#service-area-map .leaflet-popup-content-wrapper {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.areas-map-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background-color: var(--white);
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 500;
}

.areas-map-badge-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.areas-map-badge-text {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.areas-map-badge-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #16a34a;
}

.areas-map-badge-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #16a34a;
  border-radius: 50%;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Subtle grid pattern */
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Green glow center */
.cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta h2 {
  margin-bottom: var(--space-md);
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 1.125rem;
  color: #94a3b8;
  opacity: 1;
  margin-bottom: var(--space-xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta p a {
  color: #22c55e;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.cta .btn-secondary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f172a;
  border: none;
}

.cta .btn-secondary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
}

.cta .btn-primary {
  position: relative;
  z-index: 1;
}

.cta .cta-buttons {
  position: relative;
  z-index: 1;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  padding: var(--space-4xl) 0;
  background: #f8fafc;
}

.faq-grid {
  display: grid;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item.active {
  border-color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-lg) 3rem;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.faq-question:hover {
  background-color: var(--gray-50);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: #94a3b8;
  transition: all 0.3s ease;
  position: absolute;
  right: var(--space-lg);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #22c55e;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--gray-600);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--navy);
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--gray-400);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

p.footer-tagline {
  color: var(--gray-400);
  font-size: 0.9375rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto var(--space-lg) !important;
  line-height: 1.6;
  order: -2;
}

.footer-logo-center {
  display: block;
  text-align: center;
  margin: 0 auto var(--space-lg);
  order: -1;
}

.footer-contact {
  order: 0;
  text-align: center;
  margin-bottom: var(--space-lg);
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  order: 1;
}

.footer-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.footer-badge svg {
  width: 48px;
  height: 48px;
}

.footer-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-badge-bbb svg {
  color: #fbbf24;
}
.footer-badge-bbb span {
  color: #fbbf24;
}

.footer-badge-platinum svg {
  color: #c0c0c0;
  filter: drop-shadow(0 0 4px rgba(192,192,192,0.3));
}
.footer-badge-platinum span {
  color: #c0c0c0;
  background: linear-gradient(135deg, #e8e8e8, #a0a0a0, #e8e8e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

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

.footer-links a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: var(--gray-500);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--yellow);
}

/* ========================================
   UTILITIES
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ========================================
   PRICING TABLES
   ======================================== */
/* ── Futuristic Dark Tables ── */
.table-wrap {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 420px;
  margin: 2rem auto;
  max-width: 900px;
  border: 1px solid rgba(250,204,21,0.15);
  border-radius: 1rem;
  background: linear-gradient(145deg, #0f1629 0%, #1a1f3a 50%, #0f1629 100%);
  box-shadow:
    0 0 0 1px rgba(250,204,21,0.08),
    0 8px 32px rgba(0,0,0,0.5),
    0 2px 8px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}

.table-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: radial-gradient(ellipse 300px 150px at 50% 0%, rgba(250,204,21,0.06), transparent);
  pointer-events: none;
  z-index: 1;
}

.table-wrap::-webkit-scrollbar {
  width: 6px;
}

.table-wrap::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
}

.table-wrap::-webkit-scrollbar-thumb {
  background: rgba(250,204,21,0.25);
  border-radius: 4px;
}

.table-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(250,204,21,0.4);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
  position: relative;
  z-index: 2;
}

.table-wrap thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

.table-wrap th,
.table-wrap td {
  padding: 14px 28px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
}

.table-wrap th {
  background: linear-gradient(135deg, #1a1040 0%, #0f172a 50%, #1a1040 100%);
  color: #facc15;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(250,204,21,0.2);
  text-shadow: 0 0 10px rgba(250,204,21,0.3);
}

.table-wrap th:first-child {
  border-left: 3px solid #facc15;
}

.table-wrap thead tr:first-child th:first-child {
  border-top-left-radius: 1rem;
}

.table-wrap thead tr:first-child th:last-child {
  border-top-right-radius: 1rem;
}

.table-wrap td {
  color: #e2e8f0;
  transition: all 0.25s ease;
}

.table-wrap td strong {
  color: #facc15;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(250,204,21,0.2);
}

.table-wrap tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

.table-wrap tr:hover td {
  background: rgba(250,204,21,0.06);
  color: #ffffff;
}

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

.table-wrap tr:last-child td:first-child {
  border-bottom-left-radius: 1rem;
}

.table-wrap tr:last-child td:last-child {
  border-bottom-right-radius: 1rem;
}

/* Highlight row */
.table-wrap tr.highlight td,
.table-wrap .highlight td {
  background: linear-gradient(90deg, rgba(250,204,21,0.1), rgba(250,204,21,0.03));
  font-weight: 600;
  border-left: 3px solid #facc15;
  color: #facc15;
}

/* ========================================
   FAQ DETAILS/SUMMARY
   ======================================== */
.faqs {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* Center FAQ section titles & subtitles */
.content-section:has(.faqs) > .container {
  text-align: center;
}

.content-section:has(.faqs) > .container > h2,
.content-section:has(.faqs) > .container > p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.faq .container {
  text-align: center;
}

.faqs details {
  margin-bottom: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faqs summary {
  padding: 1rem 2.5rem 1rem 1rem;
  cursor: pointer;
  font-weight: 600;
  background: var(--gray-50);
  color: var(--navy);
  font-size: 1rem;
  list-style: none;
  text-align: center;
  position: relative;
}

.faqs summary::-webkit-details-marker {
  display: none;
}

.faqs summary::after {
  content: '+';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gray-400);
  transition: transform var(--transition-fast);
}

.faqs details[open] summary::after {
  content: '−';
}

.faqs details[open] summary {
  border-bottom: 1px solid var(--gray-200);
}

.faqs details p {
  padding: 1rem;
  margin: 0;
  color: var(--gray-600);
}

/* FAQs inside page-content: clean card style */
.page-content .faqs {
  max-width: 800px;
  margin: var(--space-xl) auto;
  padding: 0;
  border-radius: 0;
  background: none;
}

.page-content .faqs details {
  max-width: 800px;
  margin-bottom: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.page-content .faqs details:hover {
  border-color: #cbd5e1;
}

.page-content .faqs details[open] {
  border-color: #22c55e;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.08);
}

.page-content .faqs summary {
  background: #ffffff;
  color: #0f172a;
  padding: 1.25rem;
  font-size: 1rem;
}

.page-content .faqs summary:hover {
  background: #f8fafc;
}

.page-content .faqs details[open] summary {
  border-bottom: 1px solid #e2e8f0;
}

.page-content .faqs summary::after {
  color: #94a3b8;
  font-size: 1.5rem;
}

.page-content .faqs details[open] summary::after {
  color: #22c55e;
}

.page-content .faqs details p {
  color: #475569;
  padding: 1.25rem;
  background: #ffffff;
}

/* ========================================
   PAGE CONTENT (money pages)
   ======================================== */
.page-content {
  padding: var(--space-3xl) 0;
  overflow-x: hidden;
  background: #f8fafc;
}

.page-content h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
  display: block;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  color: var(--navy);
}

.page-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #facc15, transparent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  text-align: center;
  color: var(--navy);
}

.page-content ul,
.page-content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
  max-width: 700px;
  margin-inline: auto;
}

.page-content ul { list-style: none; }
.page-content ol { list-style: decimal; }

.page-content li {
  margin-bottom: var(--space-sm);
  color: var(--gray-600);
  position: relative;
  padding-left: 1.5rem;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background: #facc15;
  border-radius: 50%;
}

.page-content p {
  color: var(--gray-600);
  font-size: 1.0625rem;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.page-content a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Light-section table override */
.page-content .table-wrap {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
}

.page-content .table-wrap td {
  color: var(--gray-700);
}

.page-content .table-wrap td strong {
  color: var(--navy);
  text-shadow: none;
}

.page-content .table-wrap tr:nth-child(even) td {
  background: #f8fafc;
}

.page-content .table-wrap tr:hover td {
  background: #fefce8;
}

.page-content a:hover {
  color: var(--yellow-hover);
}

.page-content .callout {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-left: 4px solid #22c55e;
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: var(--space-xl) auto;
  max-width: 800px;
}

.page-content .callout h3 {
  color: #166534;
  text-align: left;
}

.page-content .callout p {
  margin: 0;
  font-weight: 500;
  color: #15803d;
  text-align: center;
}

/* ========================================
   CALCULATOR SECTION
   ======================================== */
.calculator-section {
  padding: var(--space-3xl) 0;
  background: #f8fafc;
}
.calculator-section h2 {
  margin-bottom: var(--space-sm);
}
.calculator-section > .container > p {
  color: var(--gray-600);
  font-size: 1.0625rem;
  margin-bottom: var(--space-xl);
}
.calculator-disclaimer {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: var(--space-xl);
  line-height: 1.6;
}
.calculator-disclaimer a {
  color: var(--navy);
  font-weight: 600;
}

/* ========================================
   GOLDEN TICKET COUPON
   ======================================== */
.golden-coupon {
  margin: 2rem auto;
  max-width: 420px;
  padding: 4px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 25%, #d97706 50%, #f59e0b 75%, #fbbf24 100%);
  box-shadow:
    0 4px 12px rgba(217,119,6,0.3),
    0 12px 36px rgba(15,23,42,0.15),
    inset 0 1px 0 rgba(255,255,255,0.4);
  position: relative;
}

.golden-coupon-inner {
  background: linear-gradient(160deg, #b91c1c 0%, #dc2626 30%, #991b1b 70%, #7f1d1d 100%);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle noise/texture overlay */
.golden-coupon-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 8px,
      rgba(255,255,255,0.02) 8px,
      rgba(255,255,255,0.02) 9px
    );
  pointer-events: none;
}

/* perforated edge dots (left) */
.golden-coupon::before,
.golden-coupon::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  z-index: 2;
}
.golden-coupon::before { left: -10px; }
.golden-coupon::after { right: -10px; }

.golden-coupon-stamp {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 56px;
  height: 56px;
  color: #fbbf24;
  opacity: 0.5;
  transform: rotate(15deg);
}

.golden-coupon-discount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fbbf24;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.3),
    0 0 20px rgba(251,191,36,0.3);
  margin-bottom: 0.25rem;
}

.golden-coupon-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.golden-coupon-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
  font-style: italic;
}

.golden-coupon-btn {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #7f1d1d;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 0.625rem;
  text-decoration: none;
  box-shadow:
    0 3px 0 #b45309,
    0 6px 16px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.01em;
}

.golden-coupon-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 5px 0 #b45309,
    0 10px 24px rgba(0,0,0,0.3);
}

.golden-coupon-btn:active {
  transform: translateY(1px);
  box-shadow:
    0 1px 0 #b45309,
    0 3px 8px rgba(0,0,0,0.2);
}

.golden-coupon-fine {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

/* ========================================
   COUPON POPUP
   ======================================== */
.coupon-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.coupon-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.coupon-popup {
  position: relative;
  max-width: 460px;
  width: 90%;
  animation: couponSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.coupon-popup-overlay.active .coupon-popup {
  animation: couponSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes couponSlideIn {
  from { transform: scale(0.8) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.coupon-popup .golden-coupon {
  margin: 0;
  max-width: 100%;
}

.coupon-popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}

.coupon-popup-close:hover {
  background: #ef4444;
  transform: scale(1.1);
}

/* Email form inside coupon */
.coupon-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.coupon-email-input {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  text-align: center;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.coupon-email-input::placeholder {
  color: rgba(255,255,255,0.55);
}

.coupon-email-input:focus {
  border-color: #facc15;
  background: rgba(255,255,255,0.18);
}

.coupon-form .golden-coupon-btn {
  width: 100%;
  text-align: center;
}

/* Success state */
.coupon-success {
  text-align: center;
  padding: 0.5rem 0;
}

.coupon-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
}

.coupon-success-text {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

@media (max-width: 480px) {
  .coupon-popup {
    width: 95%;
    max-width: 100%;
    padding: 2rem 1.25rem;
  }
  .coupon-popup-close {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    top: -10px;
    right: -10px;
  }
  .coupon-email-input {
    padding: 1rem 0.75rem;
    font-size: 16px;
  }
}

/* ========================================
   PRICING SERVICE MENU
   ======================================== */
.pricing-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 40%, #fef9ee 100%);
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 1px 2px rgba(15,23,42,0.06),
    0 4px 12px rgba(15,23,42,0.08),
    0 12px 28px rgba(15,23,42,0.06);
  text-decoration: none !important;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* holographic shimmer overlay */
.pricing-menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(251,191,36,0.1) 0%,
    rgba(59,130,246,0.08) 30%,
    rgba(168,85,247,0.06) 60%,
    rgba(251,191,36,0.08) 100%
  );
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

/* top-edge highlight for 3D depth */
.pricing-menu-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  pointer-events: none;
}

.pricing-menu-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 2px 4px rgba(15,23,42,0.06),
    0 8px 20px rgba(15,23,42,0.1),
    0 20px 40px rgba(15,23,42,0.08);
}

.pricing-menu-card:hover::before {
  opacity: 1;
}

.pricing-menu-icon {
  width: 30px;
  height: 30px;
  color: var(--navy);
  opacity: 0.65;
}

.pricing-menu-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  text-decoration: none !important;
  border-bottom: none !important;
}

.pricing-menu-price {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  padding: 0.2rem 0.65rem;
  border-radius: 1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  border: none;
}

@media (min-width: 640px) {
  .pricing-menu {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb-wrapper {
  padding-top: 100px;
  background: #ffffff;
}

.breadcrumb {
  padding: 0.4rem 0;
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* When breadcrumb sits before hero, hero doesn't need the header offset */
.breadcrumb-wrapper + .page-hero {
  padding-top: 2.5rem;
}

.breadcrumb a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--navy);
}

.breadcrumb .breadcrumb-sep {
  margin: 0 0.35rem;
  opacity: 0.4;
}

.breadcrumb .breadcrumb-current {
  color: var(--navy);
  font-weight: 600;
}

/* ============================================
   INTERIOR PAGE HERO (Base Style)
   Used on all service/city pages
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #111318 0%, #1a1d24 50%, #111318 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  display: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.page-hero h1 strong,
.page-hero h1 span {
  color: #f97316;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p strong {
  color: #ffffff;
}

/* Trust Badges in Hero */
.page-hero .trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  list-style: none;
  padding: 0;
}

.page-hero .trust-badges li {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-hero .trust-badges li::before {
  content: '\2713';
  color: #22c55e;
  font-weight: bold;
}

/* CTA Buttons in Hero */
.page-hero .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.page-hero .btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.page-hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
}

.page-hero .btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s, background 0.2s;
}

.page-hero .btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.page-hero .hero-badge {
  margin-bottom: var(--space-md);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.page-hero .hero-cta {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.page-hero .hero-trust {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.page-hero .hero-trust-item {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero .hero-trust-icon {
  color: #22c55e;
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    padding: 100px 0 60px;
    background-size: cover !important;
    background-position: center !important;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .page-hero .trust-badges {
    gap: 0.5rem;
  }

  .page-hero .trust-badges li {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .page-hero .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero .btn-primary,
  .page-hero .btn-secondary {
    justify-content: center;
    width: 100%;
  }
}

/* ============================================
   DUMPSTER HERO VARIANT (With Fleet Image)
   ============================================ */

.dumpster-hero {
  background:
    linear-gradient(135deg,
      rgba(15, 23, 42, 0.92) 0%,
      rgba(30, 41, 59, 0.88) 50%,
      rgba(15, 23, 42, 0.95) 100%
    ),
    url('/images/dumpster-fleet-hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* iOS/mobile doesn't support background-attachment: fixed well */
@supports (-webkit-touch-callout: none) {
  .dumpster-hero {
    background-attachment: scroll;
  }
}

.dumpster-hero::before {
  opacity: 0.5;
}

/* Yellow accent line at bottom */
.dumpster-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #facc15, #f97316);
}

/* ========================================
   LOCATION PAGES
   ======================================== */

/* Service Areas Hub Grid */
.areas-hub-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.county-section {
  margin-bottom: var(--space-2xl);
}

.county-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid var(--yellow);
  display: block;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}

.city-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .city-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.city-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  font-weight: 600;
  color: var(--navy);
}

.city-card:hover {
  border-color: var(--yellow);
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.city-card svg {
  width: 20px;
  height: 20px;
  color: var(--yellow-hover);
  flex-shrink: 0;
}

/* Nearby Cities */
.nearby-cities {
  padding: var(--space-3xl) 0;
  background: #f8fafc;
}

.nearby-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .nearby-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .nearby-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nearby-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  color: var(--navy);
  font-weight: 500;
}

.nearby-card:hover {
  border-color: var(--yellow);
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nearby-card svg {
  width: 18px;
  height: 18px;
  color: var(--yellow-hover);
  flex-shrink: 0;
}

/* ZIP Code Grid */
.zip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.zip-tag {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition-fast);
  font-variant-numeric: tabular-nums;
}

.zip-tag:hover {
  background-color: var(--yellow-light);
  border-color: var(--yellow);
  color: var(--navy);
}

/* Location Intro */
.location-intro {
  padding: var(--space-3xl) 0;
  background: #ffffff;
}

.location-intro-inner {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .location-intro-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.location-intro-text h2 {
  margin-bottom: var(--space-md);
}

.location-intro-text p {
  color: var(--gray-600);
  font-size: 1.0625rem;
}

.location-intro-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.location-intro-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

/* ========================================
   MOBILE AUDIT FIXES
   ======================================== */

/* Fix 1: Footer column headings on money pages (h4 without .footer-title class)
   Global h4 sets color: var(--navy) which is invisible on navy footer.
   This ensures ALL footer h4 headings are white regardless of class. */
.footer .footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

/* Fix 2: Footer ul/li links on money pages (without .footer-links class)
   Money pages use <ul><li><a> instead of <nav class="footer-links"><a>.
   Match the same flex layout, spacing, and hover colors. */
.footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.footer .footer-col li a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer .footer-col li a:hover {
  color: var(--yellow);
}

/* Fix 3: CTA buttons full-width stack on narrow mobile */
@media (max-width: 479px) {
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Fix 4: Areas counties single column on very narrow screens */
@media (max-width: 400px) {
  .areas-counties {
    grid-template-columns: 1fr;
  }
}

/* Fix 5: Mobile menu CTA button (class used in HTML but not defined) */
.mobile-menu-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: var(--space-md);
}

/* Fix 6: Footer grid 2-column on tablet instead of cramped 4 columns */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Fix 7: Smooth touch scrolling for tables */
.table-wrap {
  -webkit-overflow-scrolling: touch;
}

/* Fix 8: Prevent long URLs/emails from overflowing on narrow screens */
.footer a {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Fix 9: Ensure page-hero CTA buttons stack on narrow screens */
@media (max-width: 479px) {
  .page-hero .hero-cta {
    flex-direction: column;
  }
  .page-hero .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .page-hero .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Fix 10: Nearby cards and city cards - smaller padding on very narrow screens */
@media (max-width: 374px) {
  .nearby-card,
  .city-card {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }
}

/* ========================================
   SECTION BANDS (visual breaks for pages)
   ======================================== */

/* Navy stats band - for mid-page highlight sections */
/* Orange service area band */
.service-area-band {
  background: linear-gradient(135deg, #f97316, #ea580c);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.service-area-band h2 {
  color: #ffffff;
  margin-bottom: var(--space-sm);
  display: block;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}

.service-area-band h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  margin: 10px auto 0;
  border-radius: 2px;
}

.service-area-band p {
  color: rgba(255,255,255,0.9);
  font-size: 1.0625rem;
  max-width: 700px;
  margin-inline: auto;
}

.service-area-band a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-area-band .zip-search-wrap {
  max-width: 420px;
  margin-inline: auto;
  position: relative;
}

.service-area-band .zip-search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #ffffff;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-area-band .zip-search-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.service-area-band .zip-search-input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.2);
}

.service-area-band .zip-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 50;
  display: none;
  overflow: hidden;
}

.service-area-band .zip-dropdown.active {
  display: block;
}

.service-area-band .zip-dropdown-item {
  display: block;
  padding: 0.875rem 1.5rem;
  text-decoration: none;
  font-size: 0.9375rem;
  color: var(--navy);
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
  text-align: left;
}

.service-area-band .zip-dropdown-item:hover {
  background: rgba(249,115,22,0.08);
}

.service-area-band .zip-dropdown-item .zip-code {
  font-weight: 700;
  color: var(--navy);
}

.service-area-band .zip-dropdown-item .zip-city {
  color: #64748b;
  margin-left: 0.5rem;
}

.service-area-band .zip-dropdown-none {
  padding: 1rem 1.5rem;
  color: #64748b;
  font-size: 0.9375rem;
  text-align: left;
}

.section-navy-band {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.section-navy-band h2 {
  color: var(--white);
}

.section-navy-band h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-navy-band p {
  color: var(--gray-300);
}

.section-navy-band a {
  color: var(--yellow);
}

.section-navy-band a:hover {
  color: var(--white);
}

/* Stats grid inside navy band */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.section-navy-band .stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border-top: 4px solid #fbbf24;
}

.stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Gray/alternating band — dark futuristic */
.section-gray-band {
  background: linear-gradient(180deg, #111827 0%, #0d1117 50%, #111827 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  border-top: 1px solid rgba(250,204,21,0.08);
  border-bottom: 1px solid rgba(250,204,21,0.08);
}

.section-gray-band h2 {
  color: #ffffff;
  margin-bottom: var(--space-md);
  display: block;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}

.section-gray-band h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #facc15, transparent);
  margin: 12px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(250,204,21,0.4);
}

.section-gray-band p {
  color: #94a3b8;
  font-size: 1.0625rem;
  margin-bottom: 1rem;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.section-gray-band .table-wrap {
  background: linear-gradient(145deg, #0f1629 0%, #1a1f3a 50%, #0f1629 100%);
}

.section-gray-band h2 + p + .table-wrap {
  margin-top: 0.5rem;
}

/* Highlight band — dark futuristic */
.section-highlight-band {
  background: linear-gradient(135deg, #0a1628 0%, #0f1f3a 50%, #0a1628 100%);
  padding: var(--space-3xl) 0;
  border-top: 1px solid rgba(34,197,94,0.15);
  border-bottom: 1px solid rgba(34,197,94,0.15);
  position: relative;
}

.section-highlight-band h2 {
  color: #ffffff;
}

.section-highlight-band h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  margin: 12px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(34,197,94,0.4);
}

.section-highlight-band p {
  color: #94a3b8;
}

.section-highlight-band li {
  color: #cbd5e1;
}

/* Navy band tables — inherits dark futuristic base */
.section-navy-band .table-wrap {
  border-color: rgba(250,204,21,0.1);
}

.section-navy-band .table-wrap td {
  color: #e2e8f0;
}

/* FAQs inside navy band */
.section-navy-band .faqs {
  max-width: 800px;
  margin: var(--space-xl) auto 0;
}

.section-navy-band .faqs details {
  border-color: rgba(255, 255, 255, 0.1);
}

.section-navy-band .faqs summary {
  background: var(--navy-light);
  color: var(--white);
}

.section-navy-band .faqs details[open] summary {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-navy-band .faqs summary::after {
  color: var(--yellow);
}

.section-navy-band .faqs details p {
  color: var(--gray-300);
}

.section-navy-band .faqs details p a {
  color: var(--yellow);
}

.section-navy-band .faqs details p a:hover {
  color: var(--white);
}

/* ========================================
   BATCH 5 PAGE COMPONENTS
   (garage-cleanout, basement-cleanout,
    attic-cleanout, storage-unit-cleanout,
    yard-waste-removal, piano-removal)
   ======================================== */

/* Content Section */
.content-section {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  background: #ffffff;
}

.content-section + .content-section {
  border-top: 1px solid #e2e8f0;
}

.content-section:nth-child(even) {
  background: #f8fafc;
}

.content-section--gray,
.steps-section.content-section--gray,
.services.content-section--gray,
.why-us.content-section--gray,
.faq.content-section--gray,
.cant-take-section.content-section--gray {
  background: #f8fafc !important;
}

/* ============================================
   WHAT WE REMOVE – ORANGE CARD GRID
   ============================================ */
.remove-section {
  background: linear-gradient(to bottom, #e07a30 0%, #e07a30 55%, #ffffff 100%);
  padding: 5rem 0;
  position: relative;
}

.remove-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.remove-section .section-label {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.remove-section .section-title {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.remove-section .section-description {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.remove-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.remove-card {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  color: #fff;
  text-decoration: none;
  display: block;
  position: relative;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.3),
    0 2px 4px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  cursor: pointer;
}

.remove-card:hover,
.remove-card:active {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.4),
    0 8px 16px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.remove-card-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--yellow), #f59e0b);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

.remove-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy);
  stroke: var(--navy);
  fill: none;
}

.remove-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.remove-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.remove-card .remove-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap 0.3s ease;
}

.remove-card:hover .remove-card-arrow {
  gap: 0.6rem;
}

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

@media (max-width: 600px) {
  .remove-section {
    padding: 3.5rem 0;
  }
  .remove-section .section-title {
    font-size: 1.75rem;
  }
  .remove-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .remove-card {
    padding: 1.5rem 1.25rem;
  }
}

/* ============================================
   HOW IT WORKS – HORIZONTAL STEPS
   ============================================ */
.steps-section {
  padding: 5rem 0;
  background: #fff;
}

.steps-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.steps-section .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.steps-section .section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.steps-section .section-description {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.step-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-500);
  margin: 0;
  max-width: 240px;
}

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

@media (max-width: 480px) {
  .steps-section {
    padding: 3.5rem 0;
  }
  .steps-section .section-title {
    font-size: 1.75rem;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* ============================================
   CAN'T TAKE – INTERACTIVE WARNING CARDS
   ============================================ */
.cant-take-section {
  padding: 5rem 0;
  background: #fff;
}

.cant-take-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cant-take-section .section-label {
  display: inline-block;
  background: #fef2f2;
  color: #dc2626;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.cant-take-section .section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.cant-take-section .section-description {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.cant-take-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.cant-take-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  cursor: default;
}

.cant-take-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: #fca5a5;
}

.cant-take-card-icon {
  width: 3rem;
  height: 3rem;
  background: #fef2f2;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.cant-take-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #dc2626;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cant-take-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.cant-take-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray-500);
  margin: 0;
}

.cant-take-card .cant-take-tip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}

.cant-take-card .cant-take-tip svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: #16a34a;
}

.county-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.county-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(15,23,42,0.2);
}

.county-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,23,42,0.3);
}

.county-link svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

@media (max-width: 600px) {
  .cant-take-section {
    padding: 3.5rem 0;
  }
  .cant-take-section .section-title {
    font-size: 1.75rem;
  }
  .cant-take-grid {
    grid-template-columns: 1fr;
  }
  .county-links {
    flex-direction: column;
    align-items: stretch;
  }
  .county-link {
    justify-content: center;
  }
}

/* ============================================
   INFO CARDS – GENERIC LIST REPLACEMENT
   ============================================ */
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-card-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.info-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--yellow);
}

.info-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #fef9e7;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.info-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #d97706;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.info-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray-500);
  margin: 0;
}

.info-card .info-card-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  margin-top: 0.5rem;
}

.info-card a {
  color: #d97706;
  font-weight: 600;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

/* On gray sections, cards stay white */
.content-section--gray .info-card-grid .info-card {
  background: #fff;
}

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

@media (max-width: 600px) {
  .info-card-grid,
  .info-card-grid--2col {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DUMPSTER CTA – PHOTO BACKGROUND BANNER
   ============================================ */
.dumpster-cta-section {
  background-image:
    linear-gradient(rgba(15,23,42,0.82), rgba(15,23,42,0.86)),
    url('/images/dumpster-rental-home-renovation-florida.jpg');
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}

.dumpster-cta-section .section-label {
  display: inline-block;
  background: rgba(250,204,21,0.15);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.dumpster-cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 30px rgba(250,204,21,0.4), 0 0 60px rgba(250,204,21,0.15), 0 2px 4px rgba(0,0,0,0.5);
}

.dumpster-cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.dumpster-cta-section .dumpster-sizes {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.dumpster-cta-section .dumpster-size-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.dumpster-cta-section .btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--yellow);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(250,204,21,0.3);
}

.dumpster-cta-section .btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250,204,21,0.4);
}

@media (max-width: 600px) {
  .dumpster-cta-section {
    padding: 3.5rem 0;
  }
  .dumpster-cta-section h2 {
    font-size: 1.75rem;
  }
}

/* ============================================
   SPECIALIZED SERVICES – LINK GRID
   ============================================ */
.services-grid-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.services-grid-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid-section .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.services-grid-section .section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.services-grid-section .section-description {
  color: var(--gray-500);
  font-size: 1.05rem;
}

.services-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.service-link-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}

.service-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--yellow);
}

.service-link-card .service-link-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: #fef9e7;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-link-card .service-link-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: #d97706;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-link-card span {
  flex: 1;
}

.service-link-card .service-link-arrow {
  color: var(--gray-400);
  font-size: 1.1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.service-link-card:hover .service-link-arrow {
  color: var(--navy);
  transform: translateX(3px);
}

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

@media (max-width: 600px) {
  .services-grid-section {
    padding: 3.5rem 0;
  }
  .services-grid-section .section-title {
    font-size: 1.75rem;
  }
  .services-link-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FLEET IMAGE BACKGROUND SECTION
   Dark overlay + fixed fleet photo background
   ============================================ */
.content-section--fleet-bg {
  background:
    linear-gradient(135deg,
      rgba(15, 23, 42, 0.88) 0%,
      rgba(30, 41, 59, 0.85) 50%,
      rgba(15, 23, 42, 0.90) 100%
    ),
    url('/images/dumpster-fleet-4-panel.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: none;
}

@supports (-webkit-touch-callout: none) {
  .content-section--fleet-bg {
    background-attachment: scroll;
  }
}

.content-section--fleet-bg h2,
.content-section--fleet-bg h3 {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.25rem;
}

.content-section--fleet-bg .container > h2::after {
  background: linear-gradient(90deg, #f97316, #facc15);
}

.content-section--fleet-bg .container > p,
.content-section--fleet-bg p,
.content-section--fleet-bg .container p {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.9;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

.content-section--fleet-bg p strong {
  color: #ffffff !important;
  font-weight: 700;
}

.content-section--fleet-bg .check-list {
  gap: 0.25rem;
}

.content-section--fleet-bg .check-list li {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.content-section--fleet-bg .check-list li:hover {
  background: rgba(255, 255, 255, 0.1);
}

.content-section--fleet-bg .check-list li strong {
  color: #ffffff !important;
  font-weight: 700;
}

.content-section--fleet-bg .check-list li::before {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.6);
}

.content-section--fleet-bg ul li {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.content-section--fleet-bg ul li:hover {
  background: rgba(255, 255, 255, 0.1);
}

.content-section--fleet-bg ul li strong {
  color: #ffffff !important;
  font-weight: 700;
}

.content-section--fleet-bg + .content-section {
  border-top: none;
}

.content-section .container > h2 {
  margin-bottom: var(--space-md);
  padding-bottom: 0;
  border-bottom: none;
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.content-section .container > h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  margin: 16px auto 0;
  border-radius: 2px;
}

.content-section .container > p {
  color: var(--gray-600);
  font-size: 1.0625rem;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

/* Features Grid — horizontal scroll */
.features-grid {
  display: flex;
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 1rem 1.5rem;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.features-grid::-webkit-scrollbar {
  display: none;
}

.features-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.feature-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #e2e8f0;
  border-top: 4px solid #fbbf24;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  min-width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.feature-item:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.06);
}

.feature-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.feature-item p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  margin: 0;
}

/* Feature icon (emoji or SVG at top of card) */
.feature-item .feature-icon,
.feature-item > span:first-child {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Check List */
.check-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: #1e293b;
  font-size: 1rem;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li:hover {
  background: #f8fafc;
}

.check-list li::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 2px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* --- Process Steps: mobile-first (vertical stack, icon-left per card) --- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.process-steps::-webkit-scrollbar {
  display: none;
}

.process-steps {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.process-step {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 60%, #0f0f23 100%);
  border: 1px solid rgba(251,191,36,0.12);
  border-radius: 12px;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.2),
    0 8px 24px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 0.75rem;
  padding: 1rem;
  text-align: left;
}

/* brushed metal texture */
.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.01) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
}

/* glint sweep */
.process-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 55%, transparent 60%);
  transition: left 0.5s ease;
  pointer-events: none;
}
.process-step:hover::after { left: 120%; }

.process-step-number {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  color: #0f172a;
  font-weight: 900;
  font-size: 1rem;
  margin: 0;
  position: relative;
  z-index: 2;
  box-shadow:
    0 2px 8px rgba(251,191,36,0.4),
    0 0 12px rgba(251,191,36,0.15);
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
  transition: box-shadow 0.3s, transform 0.3s;
}
.process-step:hover .process-step-number {
  box-shadow:
    0 2px 8px rgba(251,191,36,0.5),
    0 0 20px rgba(251,191,36,0.25);
  transform: scale(1.08);
}

.process-step h3 {
  grid-column: 2;
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.process-step p {
  grid-column: 2;
  color: #94a3b8;
  font-size: 0.9375rem;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* --- Process Steps: desktop horizontal scroll carousel --- */
@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 1rem 1.5rem;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  }

  .process-step {
    display: block;
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: 16px;
    min-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: center;
    transform-style: preserve-3d;
    perspective: 800px;
  }

  .process-step:hover {
    border-color: rgba(251,191,36,0.35);
    transform: translateY(-6px) rotateX(2deg);
    box-shadow:
      0 4px 8px rgba(0,0,0,0.3),
      0 16px 40px rgba(0,0,0,0.25),
      0 0 20px rgba(251,191,36,0.08);
  }

  .process-step-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem;
    align-self: auto;
  }

  .process-step h3 {
    margin-bottom: 0.5rem;
  }
}

/* Pricing Table (batch 5 pages) */
.pricing-table {
  overflow-x: auto;
  margin: 2rem auto;
  max-width: 900px;
  border: none;
  border-radius: 1rem;
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.12),
    0 2px 8px rgba(15, 23, 42, 0.06);
  background: var(--white);
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-table th {
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pricing-table th:first-child {
  border-left: 4px solid var(--yellow);
}

.pricing-table thead tr:first-child th:first-child {
  border-top-left-radius: 1rem;
}

.pricing-table thead tr:first-child th:last-child {
  border-top-right-radius: 1rem;
}

.pricing-table tr:nth-child(even) td {
  background: var(--gray-50);
}

.pricing-table tr:hover td {
  background: rgba(250, 204, 21, 0.06);
}

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

.pricing-table tr:last-child td:first-child {
  border-bottom-left-radius: 1rem;
}

.pricing-table tr:last-child td:last-child {
  border-bottom-right-radius: 1rem;
}

.pricing-table td {
  transition: background var(--transition-fast);
}

/* Callout (standalone, outside .page-content) */
.content-section .callout,
.callout:not(.page-content .callout) {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-left: 4px solid #22c55e;
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
  max-width: 800px;
  margin: 2rem auto;
  text-align: left;
}

.callout--warning {
  background: linear-gradient(135deg, #fefce8, #fef9c3) !important;
  border-left-color: #eab308 !important;
}

.callout--warning h3 {
  color: #854d0e !important;
}

.callout--warning p {
  color: #a16207 !important;
}

/* ========================================
   PAGE-CONTENT SECTION VISUAL BREAKS
   ======================================== */
.page-content > .container > h2 {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, transparent, #fbbf24, transparent) 1;
}

.page-content > .container > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  border-image: none;
}

/* Every 3rd h2 gets a solid navy band */
.page-content > .container > h2:nth-of-type(3n) {
  margin-top: 0;
  padding: 2rem calc(50vw - 50%);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-top: none;
  border-image: none;
  width: auto;
}

.page-content > .container > h2:nth-of-type(3n)::after {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

/* Even h2s (not 3n) get a solid gray block */
.page-content > .container > h2:nth-of-type(even):not(:nth-of-type(3n)) {
  margin-top: 0;
  padding: 2rem calc(50vw - 50%);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #f1f5f9;
  border-top: 4px solid #fbbf24;
  border-image: none;
  width: auto;
}

/* Section-band headings should also be centered */
.section-navy-band h2 {
  display: block;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}

.section-highlight-band h2 {
  display: block;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
}

/* Center text in section bands too */
.section-highlight-band p {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

/* FAQs in page-content should also center */
.page-content .faqs {
  margin-inline: auto;
}

.page-content .faqs details {
  margin-inline: auto;
}

/* ========================================
   RESPONSIVE: BATCH 5 COMPONENTS
   ======================================== */
@media (max-width: 600px) {
  .features-grid {
    padding: 0.5rem 0.5rem 1.5rem;
  }

  .feature-item {
    min-width: 220px;
    padding: 1.25rem 1rem;
  }

  .check-list li {
    font-size: 0.9375rem;
  }
}

/* ========================================
   YELLOW ACCENT UTILITIES
   ======================================== */

/* Decorative gradient line between sections */
.accent-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fbbf24, transparent);
  margin: 40px 0;
}

/* Yellow accent left border on content sections */
.content-section--accent {
  border-left: 4px solid #fbbf24;
  padding-left: 24px;
}

/* Light yellow background section (alternating) */
.content-section--yellow {
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  position: relative;
}

.content-section--yellow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #fbbf24;
}

/* Yellow highlight box */
.highlight-box {
  background: linear-gradient(135deg, #fef3c7, #fef9c3);
  border-left: 4px solid #fbbf24;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}

/* ========================================
   STAT / PRICING CARDS
   ======================================== */
.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.stat-card .price {
  color: #fbbf24;
  font-size: 48px;
  font-weight: 800;
}


/* ========================================
   PRICING TABLE (standalone class)
   ======================================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.pricing-table th {
  color: #ffffff;
  font-weight: 600;
  padding: 16px 24px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: left;
}

.pricing-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
  font-size: 15px;
}

.pricing-table td:last-child {
  font-weight: 600;
  color: #0f172a;
}

.pricing-table tr:hover td {
  background: #fefce8;
}

.pricing-table tr.highlight td {
  background: linear-gradient(90deg, #fef3c7, #ffffff);
  font-weight: 600;
}

/* ========================================
   TRUST BADGES ROW
   ======================================== */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(34,197,94,0.35);
  font-weight: bold;
}

.trust-badge-text {
  font-weight: 600;
  color: #0f172a;
  font-size: 13px;
}

/* ========================================
   ORANGE STATS BAR
   ======================================== */
.divider-bar {
  background: #ffffff;
  padding: 10px 0;
}

.stats-bar {
  background: linear-gradient(135deg, #f97316, #ea580c);
  padding: 16px 0;
}

.stats-bar .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  color: white;
}

.stat-item .stat-number {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: white;
}

.stat-item .stat-label {
  font-size: 12px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

@media (max-width: 768px) {
  .stats-bar {
    padding: 12px 0;
  }
  .stats-bar .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .stat-item .stat-number {
    font-size: 32px;
  }
}

/* ========================================
   URGENCY BANNER
   ======================================== */
.urgency-banner {
  background: linear-gradient(90deg, #fef3c7, #fef9c3);
  border: 2px dashed #f97316;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px auto;
  max-width: 800px;
}

.urgency-banner-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.urgency-banner-text {
  flex: 1;
}

.urgency-banner-text strong {
  color: #0f172a;
  display: block;
  font-size: 15px;
}

.urgency-banner-text span {
  color: #92400e;
  font-size: 13px;
}

@media (max-width: 640px) {
  .urgency-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .faqs summary {
    text-align: left;
    padding: 0.875rem 2.25rem 0.875rem 0.875rem;
    font-size: 0.9375rem;
  }
  .page-content .faqs summary {
    padding: 1rem 2.25rem 1rem 1rem;
  }
}

/* ========================================
   CAUTION STRIPE DIVIDER
   ======================================== */
.caution-stripe {
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    #fbbf24,
    #fbbf24 10px,
    #0f172a 10px,
    #0f172a 20px
  );
  display: none;
}

.header::after {
  display: none;
}

.footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    #fbbf24,
    #fbbf24 10px,
    #0f172a 10px,
    #0f172a 20px
  );
  z-index: 1;
  top: 0;
}

.footer {
  position: relative;
}


/* ========================================
   MOBILE PRIORITY FIXES (Feb 2026)
   ======================================== */

/* -----------------------------------------
   FIX 1: COLLAPSIBLE FOOTER ON MOBILE
   Footer columns become accordions <768px.
   JS adds .footer-accordion-active on tap.
   ----------------------------------------- */
@media (max-width: 767px) {
  /* Each footer-col becomes an accordion */
  .footer-col {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0;
    padding-bottom: 0;
  }

  /* The h4 becomes the accordion trigger */
  .footer-col h4,
  .footer-col .footer-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1rem 0;
    margin-bottom: 0;
    -webkit-user-select: none;
    user-select: none;
  }

  /* Chevron arrow */
  .footer-col h4::after,
  .footer-col .footer-title::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gray-400);
    border-bottom: 2px solid var(--gray-400);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: auto;
  }

  /* Rotate chevron when open */
  .footer-col.footer-accordion-active h4::after,
  .footer-col.footer-accordion-active .footer-title::after {
    transform: rotate(-135deg);
  }

  /* Hide link lists by default */
  .footer-col .footer-links,
  .footer-col ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-bottom: 0;
  }

  /* Show when accordion is active */
  .footer-col.footer-accordion-active .footer-links,
  .footer-col.footer-accordion-active ul {
    max-height: 500px;
    padding-bottom: 1rem;
  }

  /* Tighten footer grid gap on mobile */
  .footer-grid {
    gap: 0;
  }

  /* Keep footer-brand always visible (no accordion) */
  .footer-brand {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0;
  }
}

/* -----------------------------------------
   FIX 2: REDUCE SECTION PADDING ON MOBILE
   Tighter vertical rhythm = less scrolling
   ----------------------------------------- */
@media (max-width: 767px) {
  .content-section {
    padding: 2rem 1rem;
  }

  .page-hero {
    padding: 90px 1rem 2.5rem;
  }

  .why-us {
    padding: 2.5rem 0;
  }

  .services {
    padding: 2.5rem 0;
  }

  .areas {
    padding: 2.5rem 0;
  }

  .cta {
    padding: 2.5rem 0;
  }

  .faq {
    padding: 2.5rem 0;
  }

  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  /* Batch 5 components tighter on mobile */
  .features-grid {
    gap: 0.75rem;
  }

  .feature-item {
    padding: 1.25rem 1rem;
  }

  .check-list {
    padding: 0 0.5rem;
  }

  /* Table wrap full-width on mobile */
  .table-wrap {
    max-width: 100%;
    overflow-x: auto;
  }

  /* Content section h2 spacing */
  .content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .content-section h3 {
    font-size: 1.125rem;
  }

  .content-section p {
    font-size: 0.9375rem;
    line-height: 1.65;
  }
}

/* FIX 3: ICON ALIGNMENT — now built into base card definitions above */

/* -----------------------------------------
   FIX 4: CITY TAGS — TIGHTER WRAP ON MOBILE
   ----------------------------------------- */
@media (max-width: 767px) {
  .areas-cities {
    gap: 0.375rem;
  }

  .city-tag {
    font-size: 0.8125rem;
    padding: 0.3rem 0.625rem;
  }
}

/* -----------------------------------------
   FIX 5: BUTTON SIZING ON MOBILE
   Tighter padding, slightly smaller font
   ----------------------------------------- */
@media (max-width: 767px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  .btn-sm {
    padding: 0.4rem 0.875rem;
    font-size: 0.8125rem;
  }

  /* Hero CTA buttons — slightly smaller */
  .page-hero .btn-primary,
  .page-hero .btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Trust badges tighter */
  .trust-badges {
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
  }

  .trust-badge {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .trust-badge-icon {
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
  }
}

/* ========================================
   GALLERY CAROUSEL
   ======================================== */

/* Carousel Section */
.gallery-carousel-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.gallery-carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(250,204,21,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(250,204,21,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-carousel-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-carousel-section .section-label {
  color: var(--yellow);
}

.gallery-carousel-section .section-title {
  color: #fff;
}

.gallery-carousel-section .section-description {
  color: #94a3b8;
}

/* Carousel container */
.gallery-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery-carousel.gallery-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Track */
.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* Card */
.gallery-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  will-change: transform;
}

.gallery-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

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

.gallery-slide.active .gallery-card-img img {
  transform: scale(1.02);
}

.gallery-card-content {
  padding: 1.75rem 2rem;
}

.gallery-card-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}

.gallery-card-content h3 {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.gallery-card-content p {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* Navigation arrows */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }

/* Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 0 0.5rem;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.gallery-dot.active {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: scale(1.3);
}

.gallery-dot:hover {
  border-color: var(--yellow);
}

/* Mobile carousel */
@media (max-width: 767px) {
  .gallery-carousel-section {
    padding: 3rem 0;
  }

  .gallery-card-content {
    padding: 1.25rem 1.25rem;
  }

  .gallery-card-content h3 {
    font-size: 1.125rem;
  }

  .gallery-prev,
  .gallery-next {
    width: 36px;
    height: 36px;
  }

  .gallery-prev { left: 0.5rem; }
  .gallery-next { right: 0.5rem; }
}

/* ========================================
   GALLERY PAGE — Grid Layout
   ======================================== */

.gallery-page-section {
  padding: 4rem 0;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.gallery-page-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15,23,42,0.08), 0 1px 4px rgba(15,23,42,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.06);
}

.gallery-page-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.gallery-page-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-page-card:hover .gallery-page-img-wrap img {
  transform: scale(1.05);
}

.gallery-page-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}

.gallery-page-info {
  padding: 1.5rem;
}

.gallery-page-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.gallery-page-info p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.gallery-page-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gallery-page-tag {
  display: inline-block;
  background: var(--gray-50);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 2rem;
  border: 1px solid var(--gray-200);
}

@media (max-width: 767px) {
  .gallery-page-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-page-section {
    padding: 2.5rem 0;
  }

  .gallery-page-info {
    padding: 1.25rem;
  }
}

/* ========================================
   HOMEPAGE GALLERY PREVIEW
   ======================================== */

.gallery-preview {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.gallery-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(250,204,21,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-preview .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-preview .section-label {
  color: var(--yellow);
}

.gallery-preview .section-title {
  color: #fff;
}

.gallery-preview .section-description {
  color: #94a3b8;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-preview-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(15,23,42,0.7), transparent);
  pointer-events: none;
}

.gallery-preview-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  z-index: 2;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
}

.gallery-preview-cta {
  text-align: center;
}

@media (max-width: 767px) {
  .gallery-preview {
    padding: 3rem 0;
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* (Mobile card layout now in base styles — see service-card, why-us-card, process-step sections above) */

/* ========================================
   UTILITY CLASSES — Added 2026-02-09
   ======================================== */

/* Block-level button (full width) */
.btn-block {
  width: 100%;
}

/* Hero subtitle text for ZIP/service-area pages */
.page-hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
}

/* Text link style (calculator links, inline links) */
.text-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

.text-link:hover {
  color: var(--navy-light);
}

/* Two-column responsive grid */
.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Responsive embed wrapper (YouTube, maps) */
.embed-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.responsive-embed {
  border: 0;
  display: block;
  width: 100%;
}

/* Section padding utilities */
.section-pt-only {
  padding-top: var(--space-2xl);
  padding-bottom: 0;
}

.section-pb-only {
  padding-top: 0;
  padding-bottom: var(--space-2xl);
}

/* Text alignment utilities */
.text-center-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Color utilities */
.text-yellow { color: var(--yellow); }
.text-green { color: #22c55e; }
.text-red { color: #ef4444; }

/* Margin utilities */
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* Construction debris hero variant */
.page-hero--construction {
  background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.55), rgba(30, 41, 59, 0.5)),
    url('/images/hero-construction-debris.jpg');
  background-size: cover;
  background-position: center;
}
