/* ==========================================================================
   Saluda Exterior Cleaning & Softwash - Real Map Styling Enhancements
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Core Palette */
  --primary-dark: #041a1e;       /* Deepest Navy Teal */
  --surface-dark: #07252b;       /* Dark Section Surface */
  --card-dark: #0a3139;          /* Dark Card */
  --border-dark: rgba(78, 224, 39, 0.2);

  --electric-lime: #4ee027;      /* Neon Lime Accent */
  --electric-hover: #5cf234;     /* Bright Hover */
  --lime-glow: rgba(78, 224, 39, 0.45);

  --brand-green: #15803d;        /* Deep Forest Green */
  --light-bg: #f0f8f4;           /* Soft Pale Mint BG */
  --light-surface: #ffffff;
  
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #ffffff;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Geometry & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --shadow-card: 0 10px 30px rgba(4, 26, 30, 0.1);
  --shadow-hover: 0 20px 45px rgba(4, 26, 30, 0.2);
  --shadow-glow: 0 0 25px rgba(78, 224, 39, 0.5);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #5cf234 0%, #4ee027 100%);
  color: var(--primary-dark);
  box-shadow: 0 6px 22px rgba(78, 224, 39, 0.45);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: rotate(30deg);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: rotate(30deg) translate(50%, 50%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-icon-circle {
  width: 26px;
  height: 26px;
  background: rgba(4, 26, 30, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1;
}

/* HEADER STYLING */
.top-bar {
  background: #020d0f;
  color: #a0aec0;
  padding: 0.55rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--electric-lime);
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 8px var(--electric-lime);
  animation: pulseGlow 2s infinite;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 26, 30, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(78, 224, 39, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 88px;
  gap: 1.5rem;
}

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

.logo-badge {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #15803d 0%, var(--electric-lime) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  box-shadow: 0 0 18px rgba(78, 224, 39, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

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

.logo-main-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-sub-text {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--electric-lime);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-menu a {
  color: #e2e8f0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.48rem 0.95rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
  display: inline-block;
  line-height: 1.2;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary-dark);
  background: var(--electric-lime);
  box-shadow: 0 2px 10px rgba(78, 224, 39, 0.35);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.98rem;
  white-space: nowrap;
}

.phone-badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(78, 224, 39, 0.15);
  border: 1px solid rgba(78, 224, 39, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-lime);
  flex-shrink: 0;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, rgba(4, 26, 30, 0.88) 0%, rgba(7, 37, 43, 0.92) 100%),
              url('stock-images/brick-house-pressure-washing.jpeg') center/cover no-repeat;
  padding: 4.5rem 0 6.5rem;
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-headline {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.hero-subhead {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.bullet-check {
  width: 24px;
  height: 24px;
  background: var(--electric-lime);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(78, 224, 39, 0.5);
}

/* HERO ESTIMATE FORM CARD */
.hero-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  color: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-card-title {
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.hero-card-sub {
  font-size: 0.88rem;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-control-group {
  margin-bottom: 1rem;
}

.form-control-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.35rem;
}

.form-input-field, .form-select-field {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-input-field:focus, .form-select-field:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
}

.hero-form-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1.1rem;
}

/* WAVY SEPARATOR SVG */
.section-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.section-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

@media (min-width: 768px) {
  .section-wave svg { height: 100px; }
}

.wave-to-light path { fill: var(--light-bg); }
.wave-to-dark path { fill: var(--primary-dark); }

/* SERVICE TICKER BAR */
.ticker-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
  margin-bottom: 3rem;
}

.ticker-card-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid #e2e8f0;
}

.ticker-items-flex {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.ticker-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.ticker-tab-btn:hover, .ticker-tab-btn.active {
  background: #f0fdf4;
  transform: translateY(-3px);
}

.ticker-tab-icon {
  width: 52px;
  height: 52px;
  background: #dcfce7;
  color: var(--brand-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(21, 128, 61, 0.08);
}

.ticker-tab-btn:hover .ticker-tab-icon, .ticker-tab-btn.active .ticker-tab-icon {
  background: var(--electric-lime);
  color: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(78, 224, 39, 0.45);
}

.ticker-tab-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.ticker-dark-strip {
  background: var(--primary-dark);
  color: var(--electric-lime);
  text-align: center;
  padding: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

/* ABOUT SECTION */
.about-section {
  padding: 3.5rem 0 5rem;
  background: var(--light-bg);
}

.about-grid-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.sub-tag {
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sub-tag::before {
  content: '';
  width: 24px;
  height: 3px;
  background: var(--electric-lime);
  border-radius: 2px;
}

.main-headline {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.main-headline-dark { color: #ffffff; }

.body-paragraph {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.google-review-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
}

.video-showcase-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  background: url('stock-images/residential-siding-soft-washing.jpeg') center/cover no-repeat;
  border: 5px solid #ffffff;
}

.showcase-overlay-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 26, 30, 0.2) 0%, rgba(4, 26, 30, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
}

.showcase-title-tag {
  align-self: flex-start;
  background: var(--primary-dark);
  color: var(--electric-lime);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  border: 1px solid var(--electric-lime);
}

.play-icon-glow {
  width: 72px;
  height: 72px;
  background: var(--electric-lime);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: auto;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.play-icon-glow:hover {
  transform: scale(1.1);
  background: var(--electric-hover);
}

/* SERVICE CARDS SECTION */
.services-section {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 5rem 0 6rem;
}

.services-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-white-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.service-white-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #15803d 0%, #5cf234 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-white-card:hover::before {
  opacity: 1;
}

.service-white-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45), 0 0 30px rgba(78, 224, 39, 0.3);
  border-color: rgba(92, 242, 52, 0.5);
}

.service-photo-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.service-photo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  background: rgba(4, 26, 30, 0.85);
  backdrop-filter: blur(8px);
  color: var(--electric-lime);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(78, 224, 39, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.service-white-card:hover .service-photo {
  transform: scale(1.08);
  filter: brightness(1.06);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #041a1e;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.service-white-card:hover .service-card-title {
  color: var(--brand-green);
}

.service-card-text {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  text-align: center;
}

.service-card-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  border-radius: 9999px;
  border: 1.5px solid #041a1e;
  background: transparent;
  color: #041a1e;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-card-pill-btn:hover, .service-white-card:hover .service-card-pill-btn {
  background: #041a1e;
  color: #ffffff;
  border-color: #041a1e;
  box-shadow: 0 4px 15px rgba(4, 26, 30, 0.3);
}

.service-pill-arrow-circle {
  width: 32px;
  height: 32px;
  background: #5cf234;
  color: #041a1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 0 10px rgba(92, 242, 52, 0.5);
  transition: all 0.3s ease;
}

.service-card-pill-btn:hover .service-pill-arrow-circle, .service-white-card:hover .service-pill-arrow-circle {
  background: #5cf234;
  transform: translateX(4px) scale(1.05);
  box-shadow: 0 0 16px rgba(92, 242, 52, 0.85);
}

/* WHY CHOOSE US SECTION */
.why-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.why-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-dark-pill-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}

.why-dark-pill {
  background: var(--surface-dark);
  color: #ffffff;
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  border: 1.5px solid var(--border-dark);
  transition: var(--transition);
  cursor: pointer;
}

.why-dark-pill:hover {
  background: var(--card-dark);
  border-color: var(--electric-lime);
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(4, 26, 30, 0.2);
}

.pill-check-icon {
  color: var(--electric-lime);
  font-size: 1.25rem;
  margin-right: 0.85rem;
}

/* SATISFACTION BANNER */
.guarantee-cta-banner {
  background: linear-gradient(180deg, rgba(4, 26, 30, 0.92) 0%, rgba(7, 37, 43, 0.88) 100%),
              url('stock-images/commercial-building-soft-washing.jpeg') center/cover no-repeat;
  padding: 5rem 0;
  text-align: center;
  color: #ffffff;
}

/* 1-2-3 PROCESS SECTION */
.process-section {
  padding: 5rem 0 6rem;
  background: var(--light-surface);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  margin-top: 3.5rem;
}

.process-steps-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 15%;
  right: 15%;
  height: 2px;
  border-top: 3px dashed #cbd5e1;
  z-index: 1;
}

.process-step-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-green);
}

.step-circle-num {
  width: 72px;
  height: 72px;
  background: #dcfce7;
  color: var(--brand-green);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px #dcfce7;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 5.5rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.review-card {
  background: var(--card-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.review-top-bar {
  background: linear-gradient(90deg, #16a34a 0%, #15803d 100%);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.review-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.98rem;
  color: #ffffff;
}

.review-loc {
  font-size: 0.78rem;
  color: #dcfce7;
}

.review-body {
  padding: 1.5rem;
}

/* BEFORE & AFTER RESULTS SECTION */
.results-section {
  padding: 5rem 0 6rem;
  background: var(--light-bg);
}

.ba-slider-box {
  max-width: 920px;
  margin: 3rem auto 2rem;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/3;
  user-select: none;
  border: 5px solid #ffffff;
}

.ba-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-photo-before { z-index: 1; }

.ba-photo-after {
  z-index: 2;
  width: 50%;
  overflow: hidden;
}

.ba-photo-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.ba-drag-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--electric-lime);
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.ba-drag-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--primary-dark);
  color: var(--electric-lime);
  border: 3px solid var(--electric-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* SERVICE AREA REAL MAP SECTION */
.map-section {
  padding: 5.5rem 0;
  background: var(--light-surface);
}

.map-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.map-container-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(4, 26, 30, 0.2);
  border: 4px solid #ffffff;
  height: 500px;
  background: #041a1e;
}

.map-dispatch-bar {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1000;
  background: rgba(4, 26, 30, 0.92);
  backdrop-filter: blur(10px);
  color: var(--electric-lime);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(78, 224, 39, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  pointer-events: none;
}

/* Custom Leaflet Marker Styling */
.custom-real-map-pin {
  background: transparent !important;
  border: none !important;
}

.map-pin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #15803d;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid #5cf234;
  box-shadow: 0 4px 15px rgba(4, 26, 30, 0.4), 0 0 12px rgba(92, 242, 52, 0.5);
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.map-pin-badge:hover {
  transform: scale(1.1);
  background: #041a1e;
  border-color: #5cf234;
}

.map-pin-dot {
  color: #5cf234;
  font-size: 0.85rem;
}

.map-card-dark {
  background: linear-gradient(135deg, #041a1e 0%, #07252b 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #ffffff;
  border: 1.5px solid rgba(78, 224, 39, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.map-card-photo-box {
  position: relative;
  margin-top: 1.75rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(78, 224, 39, 0.3);
  height: 180px;
}

.map-photo-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  background: rgba(4, 26, 30, 0.85);
  backdrop-filter: blur(6px);
  color: var(--electric-lime);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.65rem;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(78, 224, 39, 0.3);
}

.map-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.map-card-photo-box:hover .map-card-photo {
  transform: scale(1.06);
}

/* FAQ SECTION */
.faq-section {
  padding: 5rem 0 6rem;
  background: var(--light-bg);
}

.faq-list-container {
  max-width: 860px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-pill-card {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  border-radius: var(--radius-pill);
  border: none;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.25);
}

.faq-pill-card.active {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

.faq-pill-trigger {
  width: 100%;
  padding: 1.1rem 1.8rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.faq-trigger-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ffffff;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-pill-card.active .faq-trigger-icon {
  background: var(--electric-lime);
  color: var(--primary-dark);
  transform: rotate(180deg);
}

.faq-pill-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.8rem;
  color: #f0fdf4;
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-pill-card.active .faq-pill-body {
  max-height: 250px;
  padding: 0 1.8rem 1.5rem;
}

/* BOTTOM CTA BANNER */
.bottom-cta-banner {
  background: linear-gradient(180deg, rgba(4, 26, 30, 0.92) 0%, rgba(7, 37, 43, 0.88) 100%),
              url('stock-images/residential-driveway-pressure-washing-01.jpeg') center/cover no-repeat;
  padding: 6rem 0;
  text-align: center;
  color: #ffffff;
}

/* FOOTER */
.footer {
  background: #021114;
  color: #94a3b8;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}

.footer-grid-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

/* MODAL BACKDROP */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 26, 30, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1366px) {
  .header-content { gap: 0.85rem; }
  .logo-main-text { font-size: 1.3rem; }
  .logo-sub-text { font-size: 0.58rem; }
  .logo-badge { width: 42px; height: 42px; }
  .nav-menu { gap: 0.2rem; padding: 0.3rem 0.45rem; }
  .nav-menu a { font-size: 0.85rem; padding: 0.45rem 0.8rem; }
  .phone-badge { font-size: 0.95rem; }
  .btn-primary { padding: 0.8rem 1.4rem; font-size: 0.85rem; }
}

@media (max-width: 1180px) {
  .header-content { gap: 0.5rem; }
  .logo-main-text { font-size: 1.2rem; }
  .logo-sub-text { font-size: 0.55rem; letter-spacing: 0.06em; }
  .logo-badge { width: 38px; height: 38px; }
  .nav-menu a { font-size: 0.8rem; padding: 0.4rem 0.65rem; }
  .phone-badge span { font-size: 0.88rem; }
  .btn-primary { padding: 0.75rem 1.15rem; font-size: 0.8rem; }
}

@media (max-width: 1024px) {
  .hero-grid, .about-grid-container, .why-grid-layout, .map-grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .services-grid-wrapper { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid-layout { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .phone-badge span { display: none; }
  .nav-menu a { font-size: 0.78rem; padding: 0.35rem 0.5rem; }
}

@media (max-width: 768px) {
  .nav-menu, .phone-badge { display: none; }
  .ticker-items-flex { grid-template-columns: repeat(2, 1fr); }
  .process-steps-grid { grid-template-columns: 1fr; }
  .process-steps-grid::before { display: none; }
  .services-grid-wrapper { grid-template-columns: 1fr; }
  .footer-grid-layout { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ==========================================================================
   AUTOBIDDER HEADLESS ESTIMATE API STYLES & FLOATING CHAT WIDGET
   ========================================================================== */

.ab-range-estimator-card {
  margin-top: 1.75rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid #5cf234;
}

.ab-calculator-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f0f8f4 0%, #ffffff 100%);
}

.ab-calculator-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 25px 60px rgba(4, 26, 30, 0.25);
  border: 2px solid rgba(78, 224, 39, 0.4);
}

.ab-card-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.ab-badge {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.68rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(21, 128, 61, 0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ab-service-tabs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.35rem 0.25rem 0.65rem;
  margin-bottom: 1.25rem;
  scrollbar-width: thin;
}

.ab-service-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.ab-service-tab-btn:hover {
  border-color: #15803d;
  transform: translateY(-2px);
}

.ab-service-tab-btn.active {
  background: linear-gradient(135deg, #041a1e 0%, #07252b 100%);
  color: #ffffff;
  border-color: #5cf234;
  box-shadow: 0 6px 20px rgba(4, 26, 30, 0.35), 0 0 15px rgba(92, 242, 52, 0.3);
}

.ab-tab-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.ab-active-service-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1.5px solid #86efac;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.08);
}

.ab-active-banner-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: #ffffff;
  padding: 5px;
  border-radius: 50%;
  border: 1.5px solid #86efac;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.ab-field-card-step {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.ab-field-card-step:hover {
  border-color: var(--brand-green);
  box-shadow: 0 8px 20px rgba(21, 128, 61, 0.12);
}

.ab-field-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.ab-field-step-icon {
  width: 32px;
  height: 32px;
  background: #f0fdf4;
  color: #15803d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  border: 1px solid #bbf7d0;
  flex-shrink: 0;
}

.ab-field-num-pill {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.68rem;
  background: #f1f5f9;
  color: #475569;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ab-enhanced-select, .ab-enhanced-number {
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #041a1e;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: var(--transition);
}

.ab-enhanced-select:focus, .ab-enhanced-number:focus {
  background: #ffffff;
  border-color: #15803d;
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
}

.ab-number-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.ab-number-input-wrap input {
  width: 100%;
}

.ab-input-unit-tag {
  position: absolute;
  right: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  color: #15803d;
  background: #dcfce7;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  pointer-events: none;
}

.btn-secondary-sm {
  background: #ffffff;
  color: #15803d;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid #86efac;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary-sm:hover {
  background: #15803d;
  color: #ffffff;
}

.ab-divider {
  border: 0;
  height: 1px;
  background: #e2e8f0;
  margin: 1.25rem 0;
}

.ab-section-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.ab-result-box {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 2px solid #5cf234;
}

.ab-price-display {
  background: linear-gradient(135deg, #041a1e 0%, #07252b 100%);
  color: #ffffff;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1.5px solid #5cf234;
  margin-bottom: 1rem;
}

.ab-price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #5cf234;
  line-height: 1;
}

.ab-price-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

.ab-discount-tag {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ab-upsell-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ab-upsell-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.ab-upsell-item:hover {
  border-color: #15803d;
}

.ab-lead-badge {
  background: #dcfce7;
  color: #15803d;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  margin: 1rem 0;
}

.ab-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.ab-slot-btn {
  background: #ffffff;
  border: 1.5px solid #15803d;
  color: #15803d;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.ab-slot-btn:hover {
  background: #15803d;
  color: #ffffff;
}

/* FLOATING CHAT WIDGET STYLING */
.ab-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
}

.ab-chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #041a1e 0%, #07252b 100%);
  color: #5cf234;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.9rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 2px solid #5cf234;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(92, 242, 52, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.ab-chat-toggle:hover {
  transform: translateY(-3px) scale(1.03);
}

.ab-chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 360px;
  height: 480px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid #041a1e;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: chatFadeUp 0.3s ease;
}

@keyframes chatFadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.ab-chat-header {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(78, 224, 39, 0.3);
}

.ab-chat-avatar {
  width: 34px;
  height: 34px;
  background: var(--electric-lime);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ab-chat-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
}

.ab-chat-messages {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: #f8fafc;
}

.ab-chat-bubble {
  max-width: 82%;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.ab-chat-bubble.assistant {
  background: #ffffff;
  color: var(--primary-dark);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  align-self: flex-start;
}

.ab-chat-bubble.user {
  background: var(--primary-dark);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.ab-chat-input-form {
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 0.5rem;
}

.ab-chat-input-form input {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid #cbd5e1;
  font-size: 0.88rem;
}

.ab-chat-input-form input:focus {
  outline: none;
  border-color: var(--brand-green);
}

.ab-chat-send-btn {
  width: 38px;
  height: 38px;
  background: var(--brand-green);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* SERVICE DETAIL POPUP MODAL STYLES */
.ab-detail-modal-card {
  max-width: 580px;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}

.ab-modal-header-banner {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.ab-modal-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.ab-modal-header-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
}

.ab-modal-inclusions-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.ab-modal-inc-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #041a1e;
  font-weight: 600;
  background: #f8fafc;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.ab-modal-range-tool {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

/* MULTI-SELECT OPTION PILLS */
.ab-multi-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.ab-multi-pill {
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid #cbd5e1;
  background: #f8fafc;
  color: #041a1e;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.ab-multi-pill:hover {
  border-color: #15803d;
  background: #f0fdf4;
}

.ab-multi-pill.active {
  background: linear-gradient(135deg, #041a1e 0%, #07252b 100%);
  color: #5cf234;
  border-color: #5cf234;
  box-shadow: 0 4px 12px rgba(4, 26, 30, 0.25);
}

/* STEPPER INPUT CONTROL STYLES */
.ab-stepper-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  width: 100%;
}

.ab-stepper-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: #041a1e;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  user-select: none;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.ab-stepper-btn:hover {
  background: #041a1e;
  color: #5cf234;
  border-color: #041a1e;
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(4, 26, 30, 0.2);
}

.ab-stepper-btn:active {
  transform: scale(0.94);
}

.ab-stepper-input-container {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.ab-stepper-input {
  width: 100%;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: #041a1e;
  padding: 0.75rem 0.5rem;
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS & RESPONSIVE DRAWER STYLES
   ========================================================================== */

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  z-index: 1001;
}

.mobile-nav-toggle span {
  width: 24px;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-sticky-action-bar {
  display: none;
}

@media (max-width: 880px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: flex !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(4, 26, 30, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 0.8rem;
    transform: translateY(-150%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 2px solid var(--electric-lime);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    z-index: 999;
  }

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

  .nav-menu a {
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
    padding: 0.75rem 1rem;
    color: #ffffff;
  }
}

@media (max-width: 768px) {
  .header-calc-btn {
    display: none !important;
  }

  .mobile-sticky-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #041a1e;
    border-top: 1.5px solid rgba(92, 242, 52, 0.4);
    z-index: 990;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  }

  .mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.82rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 0 0.5rem;
  }

  .mobile-action-btn.phone {
    background: #072b31;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-action-btn.quote {
    background: var(--brand-green);
    color: #ffffff;
  }

  .ab-chat-widget {
    bottom: 70px !important;
    right: 14px !important;
  }

  body {
    padding-bottom: 56px;
  }
}

@media (max-width: 600px) {
  .ab-calculator-card {
    padding: 1.1rem !important;
    border-radius: 16px;
  }

  .ab-card-header h3 {
    font-size: 1.25rem !important;
  }

  .ab-service-tabs {
    gap: 0.4rem;
    padding-bottom: 0.5rem;
  }

  .ab-tab-btn {
    padding: 0.55rem 0.85rem !important;
    font-size: 0.78rem !important;
  }

  .ab-field-card-step {
    padding: 0.85rem !important;
  }

  .ab-field-num-pill {
    display: none !important;
  }

  .form-input-field,
  .form-select-field,
  .ab-stepper-input {
    font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
  }

  .ab-stepper-btn {
    width: 44px;
    height: 44px;
  }

  .ab-chat-window {
    width: calc(100vw - 28px) !important;
    right: 0 !important;
    left: 0 !important;
    margin: 0 auto !important;
    bottom: 72px !important;
    max-height: 72vh !important;
  }

  .ab-detail-modal-card {
    width: 94vw !important;
    margin: 1rem auto !important;
  }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE ANTI-CLIPPING & FLUID RESPONSIVE STYLES
   ========================================================================== */

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

html, body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

img, video, iframe, canvas, svg {
  max-width: 100%;
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center !important;
    text-align: center;
  }
  .top-bar-content > div:nth-child(2) {
    display: none !important;
  }
  .ba-slider-box {
    height: 300px !important;
  }
}

@media (max-width: 640px) {
  .btn {
    white-space: normal !important;
    max-width: 100% !important;
    word-break: break-word !important;
    text-align: center;
    padding: 0.85rem 1.1rem !important;
    font-size: 0.82rem !important;
    line-height: 1.35;
  }

  .btn-icon-circle {
    flex-shrink: 0;
  }

  .hero-card-title, .main-headline {
    word-break: break-word;
  }
}

@media (max-width: 600px) {
  .ab-calculator-card {
    padding: 1rem 0.85rem !important;
    border-radius: 16px;
    width: 100% !important;
  }

  .ab-card-header h3 {
    font-size: 1.2rem !important;
  }

  .ab-service-tabs {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0.4rem !important;
    padding-bottom: 0.6rem !important;
  }

  .ab-service-tab-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    scroll-snap-align: start;
    padding: 0.55rem 0.85rem !important;
    font-size: 0.78rem !important;
  }

  .ab-field-card-step {
    padding: 0.85rem 0.75rem !important;
    margin-bottom: 0.85rem !important;
  }

  .ab-field-header-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .ab-field-header-row label {
    font-size: 0.86rem !important;
    line-height: 1.3;
    word-break: break-word;
  }

  .ab-field-num-pill {
    display: none !important;
  }

  .form-input-field,
  .form-select-field,
  .ab-stepper-input {
    font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
  }

  .ab-stepper-btn {
    width: 44px;
    height: 44px;
  }

  .ab-multi-pills-grid {
    gap: 0.4rem !important;
  }

  .ab-multi-pill {
    padding: 0.45rem 0.75rem !important;
    font-size: 0.76rem !important;
  }

  /* Modal Dialog Anti-Cutoff */
  .modal-backdrop {
    padding: 0.75rem !important;
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .modal-content-card, .ab-detail-modal-card {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 88vh !important;
    overflow-y: auto !important;
    margin: 0 !important;
    border-radius: 16px !important;
  }

  .ab-modal-header-banner {
    height: 135px !important;
  }

  .ab-modal-range-tool {
    padding: 0.85rem !important;
  }

  /* AI Chat Window Fixed Viewport Alignment on Mobile */
  .ab-chat-widget {
    position: fixed !important;
    bottom: 68px !important;
    right: 12px !important;
    z-index: 3000 !important;
  }

  .ab-chat-toggle {
    padding: 0.7rem 1.1rem !important;
    font-size: 0.82rem !important;
  }

  .ab-chat-window {
    position: fixed !important;
    top: auto !important;
    bottom: 72px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    height: 70vh !important;
    max-height: 500px !important;
    margin: 0 !important;
    border-radius: 18px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5) !important;
    z-index: 3001 !important;
  }

  .ab-chat-messages {
    flex: 1 !important;
    max-height: none !important;
  }
}

@media (max-width: 480px) {
  .header-content {
    height: 64px !important;
    gap: 0.35rem !important;
    padding: 0 0.75rem !important;
  }

  .logo {
    gap: 0.4rem !important;
    max-width: calc(100% - 50px);
  }

  .logo-badge {
    width: 34px !important;
    height: 34px !important;
    flex-shrink: 0 !important;
  }

  .logo-badge svg {
    width: 18px !important;
    height: 18px !important;
  }

  .logo-main-text {
    font-size: 0.98rem !important;
    line-height: 1 !important;
  }

  .logo-sub-text {
    font-size: 0.42rem !important;
    letter-spacing: 0.01em !important;
    white-space: normal !important;
    line-height: 1.1 !important;
    max-width: 125px !important;
  }

  .ba-slider-box {
    height: 220px !important;
  }

  .ticker-items-flex {
    grid-template-columns: 1fr !important;
  }

  .sub-tag, .ab-badge {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
  }

  .map-card-photo-box {
    height: 180px !important;
  }
}

/* STRUCTURED CHAT WIDGET STYLES */
.ab-chat-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
  width: 100%;
}

.ab-chat-opt-btn {
  background: #f0fdf4;
  color: #15803d;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.85rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.ab-chat-opt-btn:hover {
  background: #041a1e;
  color: #5cf234;
  border-color: #5cf234;
}

.ab-chat-opt-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ab-chat-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 0.85rem;
  margin-top: 0.5rem;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ab-chat-lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ab-chat-lead-form input {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.82rem;
}

.ab-chat-owner-badge {
  display: inline-block;
  background: #f59e0b;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

