:root {
  --brand-primary: #33CC00;
  --brand-primary-hover: #2BAA00;
  --brand-ink: #0B0F0A;
  --brand-text: #1F2937;
  --brand-muted-bg: #F6F8F6;
  --brand-muted-border: #E5E7EB;
}

/* Typography */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--brand-text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: var(--brand-ink);
}

/* Sitewide: no underlines on links */
a,
a:hover,
a:focus {
  text-decoration: none;
}

/* Brand Colors */
.bg-brand {
  background-color: var(--brand-primary) !important;
}

.text-brand {
  color: var(--brand-primary) !important;
}

.btn-brand {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
  font-weight: 600;
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  color: white;
}

.btn-outline-brand {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  font-weight: 600;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
}

/* Utility Classes */
.section-pad {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}

@media (max-width: 767.98px) {
  .section-pad {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Background Decorations */
.bg-white {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfa 100%);
}

.bg-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(51, 204, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(51, 204, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.bg-white > * {
  position: relative;
  z-index: 1;
}

.bg-muted {
  position: relative;
  background: linear-gradient(135deg, var(--brand-muted-bg) 0%, #f0f2f0 100%);
}

.bg-muted::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(51, 204, 0, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(51, 204, 0, 0.03) 0%, transparent 40%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.bg-muted > * {
  position: relative;
  z-index: 1;
}

/* Decorative Background Pattern */
.bg-pattern {
  position: relative;
  overflow: hidden;
}

.bg-pattern::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51, 204, 0, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Subtle Icon Background Pattern */
.icon-pattern {
  position: absolute;
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}

.icon-pattern svg {
  width: 100%;
  height: 100%;
  fill: var(--brand-primary);
}

/* Service Cards Enhancement */
.service-card {
  background: linear-gradient(to bottom, #ffffff, #fafbfa);
  transition: all 0.3s ease;
}

.service-card:hover {
  background: linear-gradient(to bottom, #ffffff, #f6f8f6);
  box-shadow: 0 8px 24px rgba(51, 204, 0, 0.1) !important;
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* Mobile carousel (used by Services and Real Results) */
.carousel-dots {
  display: none;
}

@media (max-width: 767.98px) {
  .mobile-carousel {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }

  .mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  .mobile-carousel > .carousel-slide {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .carousel-dots .carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--brand-muted-border);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .carousel-dots .carousel-dot.active {
    background: var(--brand-primary);
    transform: scale(1.25);
  }
}

/* Auto-playing looped carousel (all breakpoints) */
.auto-carousel {
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.auto-carousel::-webkit-scrollbar {
  display: none;
}

.auto-carousel > .carousel-slide {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  scroll-snap-align: start;
}

@media (max-width: 991.98px) {
  .auto-carousel > .carousel-slide {
    flex-basis: 60%;
    max-width: 60%;
  }
}

@media (max-width: 575.98px) {
  .auto-carousel > .carousel-slide {
    flex-basis: 85%;
    max-width: 85%;
  }
}

.carousel-dots.carousel-dots-always {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.carousel-dots.carousel-dots-always .carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--brand-muted-border);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dots.carousel-dots-always .carousel-dot.active {
  background: var(--brand-primary);
  transform: scale(1.25);
}

/* CTA Section Enhancement */
.bg-brand {
  position: relative;
  overflow: hidden;
}

.bg-brand::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.bg-brand::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.bg-brand > * {
  position: relative;
  z-index: 1;
}

/* Before/After Slider */
.before-after-slider {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.before-after-slider:active {
  cursor: grabbing;
}

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

.slider-before,
.slider-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.slider-after {
  z-index: 0;
}

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

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 100%;
  z-index: 2;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease;
  z-index: 1;
}

.slider-handle:active {
  cursor: grabbing;
}

.slider-handle:active::after {
  transform: translate(-50%, -50%) scale(1.1);
}

.slider-handle svg {
  width: 20px;
  height: 20px;
  color: var(--brand-primary);
  position: relative;
  z-index: 2;
}

.slider-handle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--brand-primary);
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 0 4px rgba(51, 204, 0, 0.3);
}

.slider-label {
  position: absolute;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  z-index: 3;
}

.slider-before .slider-label {
  top: 1rem;
  left: 1rem;
}

.slider-after .slider-label {
  top: 1rem;
  right: 1rem;
}

@media (max-width: 767.98px) {
  .before-after-slider {
    height: 200px;
  }
  
  .slider-handle {
    width: 40px;
  }
  
  .slider-handle::after {
    width: 40px;
    height: 40px;
  }
  
  .slider-handle svg {
    width: 16px;
    height: 16px;
  }
}

.shadow-soft {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.rounded-xl {
  border-radius: 16px !important;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(to bottom, var(--brand-muted-bg), rgba(51, 204, 0, 0.05), #ffffff);
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/home-hero.jpeg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-services::before {
  background-image: url('../img/services-hero-photo.webp');
}

.hero-areas::before {
  background-image: url('../img/suburbs-street.webp');
}

.hero-northbrook::before {
  background-image: url('../img/northbrook-hero-bg.webp');
}

/* Hero pill badges (location pages) */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero-badge-solid {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

/* Local note callout */
.local-note {
  background: var(--brand-muted-bg);
  border-left: 5px solid var(--brand-primary);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}

.local-note strong {
  color: var(--brand-ink);
}

/* Promise card (satisfaction guarantee) */
.promise-card {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-muted-bg) 100%);
  border: 1px solid rgba(51, 204, 0, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 18px 44px rgba(51, 204, 0, 0.10);
  position: relative;
  overflow: hidden;
}

.promise-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--brand-primary);
}

.promise-seal {
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(51, 204, 0, 0.35);
}

.promise-seal span {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 3px;
}

.promise-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
}

.promise-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--brand-ink);
}

.promise-points li svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .promise-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .promise-points {
    justify-content: center;
  }
}

/* Office info card */
.office-info-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.office-info-head {
  background: var(--brand-primary);
  color: #ffffff;
  padding: 1.1rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.office-info-list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1.5rem;
}

.office-info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.office-info-list li:last-child {
  border-bottom: 0;
}

.office-info-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-muted-bg);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.office-info-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a8f98;
  font-weight: 700;
  margin-bottom: 3px;
}

.office-info-val {
  display: block;
  color: var(--brand-ink);
  font-weight: 600;
  line-height: 1.5;
}

.office-info-val a {
  text-decoration: none;
  font-weight: 700;
}

.office-info-actions {
  margin-top: auto;
  padding: 0 1.5rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.office-map-directions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  background: var(--brand-ink);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.office-map-directions:hover {
  background: var(--brand-primary);
  color: #ffffff;
}

.hero .breadcrumb {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero .breadcrumb-item a {
  color: var(--brand-primary);
  text-decoration: none;
  opacity: 1;
}

.hero .breadcrumb-item a:hover {
  color: var(--brand-primary);
  text-decoration: underline;
}

.hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.85);
}

.hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.65);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(11, 15, 10, 0.75), rgba(11, 15, 10, 0.5));
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-text {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Google Rating Display */
.google-rating {
  display: inline-flex;
  align-items: center;
}

.google-rating-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.google-rating-link:hover {
  opacity: 0.85;
}

/* About Section */
.letter-spacing-1 {
  letter-spacing: 0.08em;
}

.about-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Trust Bar */
.trust-bar {
  background: var(--brand-muted-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.5rem 0;
}

.trust-bar-item {
  padding: 0.5rem;
}

.trust-bar-item svg {
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.trust-bar-title {
  font-weight: 700;
  color: var(--brand-ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.trust-bar-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* Dark variant */
.trust-bar-dark {
  background: #0f1512;
  border-top: none;
  border-bottom: none;
}

.trust-bar-dark .trust-bar-title {
  color: #ffffff;
}

.trust-bar-dark .trust-bar-sub {
  color: rgba(255, 255, 255, 0.7);
}

/* Step Cards & Bundle Cards (Get a Quote) */
.step-card,
.bundle-card {
  height: 100%;
  padding: 1.75rem;
  background: #ffffff;
  border: 1px solid var(--brand-muted-border);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover,
.bundle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #ffffff;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.step-card h3,
.bundle-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.bundle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(51, 204, 0, 0.1);
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

/* Quote page hero (distinct light style, no photo) */
.quote-hero {
  background: radial-gradient(circle at 50% 0%, rgba(51, 204, 0, 0.08), transparent 60%), linear-gradient(180deg, #ffffff 0%, var(--brand-muted-bg) 100%);
  border-bottom: 1px solid var(--brand-muted-border);
  padding: 4.5rem 0;
}

.quote-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(51, 204, 0, 0.12);
  color: var(--brand-primary-hover);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.quote-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-text);
  font-weight: 600;
}

.quote-hero-rating .rating-stars-inline {
  color: #fbbc05;
  letter-spacing: 2px;
}

/* Quote form section: dark info panel + form card */
#quote-form {
  scroll-margin-top: 90px;
}

.quote-info-panel {
  background: var(--brand-ink);
  color: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
}

.quote-info-panel h2 {
  color: #ffffff;
}

.quote-info-panel a {
  color: #ffffff;
}

.quote-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quote-info-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.quote-info-list svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.quote-form-card {
  background: #ffffff;
  border: 1px solid var(--brand-muted-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767.98px) {
  .quote-hero {
    padding: 3rem 0;
  }
  .quote-info-panel {
    padding: 1.75rem;
  }
  .quote-form-card {
    padding: 1.5rem;
  }
}

/* Trust chips (service hero) */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid var(--brand-muted-border);
  color: var(--brand-text);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.trust-chip svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* Pricing cards (service pages) */
.price-card {
  position: relative;
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--brand-muted-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.price-card-featured {
  border-color: var(--brand-primary);
  border-width: 2px;
  box-shadow: 0 12px 32px rgba(51, 204, 0, 0.15);
}

.price-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card .price {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--brand-ink);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.price-includes li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
}

.price-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.15rem;
  height: 1.15rem;
  background-color: var(--brand-primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / 0.8rem;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / 0.8rem;
  border-radius: 50%;
  opacity: 0.85;
}

/* Intro image collage (service page) */
.intro-collage {
  position: relative;
  padding: 1rem 1.25rem 2.5rem 0.5rem;
}

.intro-collage::before {
  content: '';
  position: absolute;
  top: 0;
  left: -0.5rem;
  width: 62%;
  height: 60%;
  background: rgba(51, 204, 0, 0.12);
  border-radius: 22px;
  z-index: 0;
}

.intro-collage-main {
  position: relative;
  z-index: 1;
  display: block;
  width: 82%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.intro-collage-sub {
  position: absolute;
  right: 0.5rem;
  bottom: 0;
  z-index: 2;
  width: 48%;
  height: auto;
  border-radius: 14px;
  border: 5px solid #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.intro-collage-badge {
  position: absolute;
  top: 4%;
  right: 3%;
  z-index: 3;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transform: rotate(-8deg);
}

.intro-collage-badge .n {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
}

.intro-collage-badge .t {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 3px;
  padding: 0 0.35rem;
}

@media (max-width: 575.98px) {
  .intro-collage {
    max-width: 420px;
    margin: 0 auto;
  }
  .intro-collage-badge {
    width: 78px;
    height: 78px;
  }
  .intro-collage-badge .n {
    font-size: 1.25rem;
  }
}

/* Process timeline (service page) */
.process-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  display: block;
}

.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-timeline li {
  position: relative;
  display: flex;
  gap: 1rem;
  padding-bottom: 1.75rem;
}

.process-timeline li:last-child {
  padding-bottom: 0;
}

.process-timeline li::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.1);
}

.process-timeline li:last-child::before {
  display: none;
}

.process-step-num {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #ffffff;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.process-step-body {
  padding-top: 0.25rem;
}

.process-step-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.process-step-body p {
  margin: 0;
  color: #5b6660;
}

@media (max-width: 991.98px) {
  .process-image {
    margin-bottom: 1.5rem;
  }
}

/* Radon result tiers (radon testing page) */
.radon-level {
  background: #ffffff;
  border: 1px solid var(--brand-muted-border);
  border-top: 5px solid var(--brand-muted-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.radon-level-value {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--brand-ink);
}

.radon-level-unit {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5b6660;
  margin-top: 0.15rem;
}

.radon-level-low {
  border-top-color: #33cc00;
}

.radon-level-moderate {
  border-top-color: #f2b705;
}

.radon-level-high {
  border-top-color: #e03131;
}

/* Trust Signals */
.trust-signals {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.trust-signals li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.trust-signals li svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

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

.rating-stars {
  display: inline-flex;
  gap: 1px;
  font-size: 0.875rem;
  line-height: 1;
  color: #fbbc05;
}

.rating-stars .star {
  color: #fbbc05;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
  margin-left: 4px;
}

.rating-reviews {
  font-size: 0.8125rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
  margin-left: 6px;
  opacity: 0.9;
}

@media (max-width: 767.98px) {
  .rating-stars {
    font-size: 0.8125rem;
  }
  
  .rating-text {
    font-size: 0.8125rem;
  }
  
  .rating-reviews {
    font-size: 0.75rem;
  }
  
  .google-logo {
    width: 14px;
    height: 14px;
  }
}

.hero-content-overlay {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  color: var(--brand-text);
}

/* Compact hero form variant */
.hero-content-overlay-sm {
  padding: 1.5rem;
  max-width: 470px;
  margin-left: auto;
}

.hero-content-overlay-sm .form-label {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.hero-content-overlay-sm .form-control,
.hero-content-overlay-sm .form-select {
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
}

.hero-content-overlay-sm .mb-3 {
  margin-bottom: 0.75rem !important;
}

@media (max-width: 767.98px) {
  .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .hero-content-overlay {
    padding: 1.5rem;
  }
}

/* Navigation */
.navbar-brand {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-ink) !important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
  border: 1px solid var(--brand-muted-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  color: var(--brand-text);
  transition: background-color 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--brand-muted-bg);
  color: var(--brand-primary);
}

.dropdown-item:active {
  background-color: var(--brand-primary);
  color: white;
}

.dropdown-toggle::after {
  margin-left: 0.5rem;
}

.navbar {
  border-bottom: 1px solid var(--brand-muted-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: #ffffff !important;
}

.navbar.sticky-top.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-link {
  color: var(--brand-text) !important;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--brand-primary) !important;
}

/* Footer */
footer {
  background-color: var(--brand-ink);
  color: #ffffff;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--brand-primary);
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid var(--brand-muted-border);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1030;
  padding: 0.75rem;
}

.mobile-bottom-bar .btn {
  min-height: 48px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Reserve space so the fixed bar never covers page content */
@media (max-width: 991.98px) {
  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}

/* Accessibility */
.btn:focus,
.nav-link:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Links */
a {
  color: var(--brand-primary);
  transition: color 0.2s;
}

a:hover {
  color: var(--brand-primary-hover);
}

/* Muted Background Sections */
.bg-muted {
  background-color: var(--brand-muted-bg) !important;
}

.border-muted {
  border-color: var(--brand-muted-border) !important;
}

/* Interactive Service Cards */
.service-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
  border-color: var(--brand-primary) !important;
}

.service-card:hover .text-brand {
  color: var(--brand-primary-hover) !important;
}

.service-card:active {
  transform: translateY(-4px);
}

/* Video Section */
.video-wrapper {
  background: #000;
  position: relative;
}

.video-wrapper iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.video-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(51, 204, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  border-radius: 16px;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-play-btn svg {
  width: 40px;
  height: 40px;
  margin-left: 4px;
}

.video-play-btn:hover,
.video-play-btn:focus-visible {
  background: rgba(0, 0, 0, 0.75);
  transform: translate(-50%, -50%) scale(1.06);
  outline: none;
}

.video-play-btn.is-hidden {
  display: none;
}

/* Map Section */
.map-wrapper {
  background: #f8f9fa;
  position: relative;
}

.map-wrapper iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(51, 204, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  border-radius: 16px;
}

/* Office cards (Service Areas) */
.office-map-wrap {
  position: relative;
}

.office-map-wrap iframe {
  border: none;
  width: 100%;
  height: 100%;
}

/* Location label stripe band */
.office-strip {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Candy-stripe texture overlay */
.office-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.14) 0,
    rgba(255, 255, 255, 0.14) 8px,
    transparent 8px,
    transparent 18px
  );
  pointer-events: none;
}

.office-strip svg,
.office-strip span {
  position: relative;
  z-index: 1;
}

.office-strip svg {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.office-strip-main {
  background: linear-gradient(120deg, var(--brand-primary) 0%, var(--brand-primary-hover, #2ba800) 100%);
}

.office-strip-new {
  background: linear-gradient(120deg, #ff9a2e 0%, #f97316 100%);
}

.office-details svg {
  margin-top: 3px;
}

.office-card-main {
  border: 2px solid var(--brand-primary) !important;
}

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  letter-spacing: 0.08em;
}

/* Small area link card */
.area-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid var(--brand-muted-border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.area-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-primary);
}

.area-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--brand-muted-bg);
  color: var(--brand-primary);
}

.area-link-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.area-link-title {
  font-weight: 700;
  color: var(--brand-ink);
}

.area-link-sub {
  font-size: 0.85rem;
  color: var(--brand-text-muted, #6b7280);
}

.area-link-arrow {
  margin-left: auto;
  color: var(--brand-primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.area-link-card:hover .area-link-arrow {
  transform: translateX(4px);
}

/* FAQ Tiles */
.faq-tile {
  position: relative;
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-tile:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 8px 24px rgba(51, 204, 0, 0.15);
  transform: translateY(-4px);
}

.faq-tile.active {
  border-color: var(--brand-primary);
  box-shadow: 0 8px 24px rgba(51, 204, 0, 0.2);
  background: linear-gradient(to bottom, #ffffff 0%, rgba(51, 204, 0, 0.02) 100%);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 30;
}

.faq-tile-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0;
}

.faq-tile-header h3 {
  color: var(--text-dark);
  font-weight: 600;
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  color: var(--brand-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-top: 2px;
}

.faq-tile.active .faq-icon {
  transform: rotate(180deg);
}

.faq-tile-content {
  position: absolute;
  top: 100%;
  left: -2px;
  right: -2px;
  background: #ffffff;
  border: 2px solid var(--brand-primary);
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: 30;
  transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
}

.faq-tile.active .faq-tile-content {
  max-height: 600px;
  opacity: 1;
  padding: 0.25rem 1.5rem 1.5rem;
}

.faq-tile-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer Logo */
.footer-logo {
  max-width: 200px;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.8;
}

/* Footer Copyright Text */
.footer-copyright {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Blog Styles */
.blog-post-card {
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  border: 2px solid transparent;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
  border-color: var(--brand-primary) !important;
}

.blog-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.blog-post-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.blog-post-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(51, 204, 0, 0.1);
  color: var(--brand-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-post-excerpt {
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-read-more {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-read-more:hover {
  color: var(--brand-primary-hover);
}

.blog-post-header-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.blog-post-content {
  line-height: 1.8;
  color: var(--brand-text);
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-ink);
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--brand-primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.blog-post-content img.blog-post-header-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin: 2rem 0;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.blog-cta-box {
  background: var(--brand-muted-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 2rem 1.5rem;
}

.blog-cta-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.blog-sidebar-card {
  background: var(--brand-muted-bg);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.blog-sidebar-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--brand-ink);
}

.blog-tag {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #ffffff;
  color: var(--brand-text);
  border: 1px solid var(--brand-muted-border);
  border-radius: 20px;
  font-size: 0.875rem;
  margin: 0.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-tag:hover {
  background-color: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
}

@media (max-width: 991.98px) {
  .blog-post-header-image,
  .blog-post-content img.blog-post-header-image {
    height: 250px;
  }
  
  .blog-sidebar {
    position: static;
    margin-top: 3rem;
  }
}

/* Compare panels (signs vs. benefits) */
.compare-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--brand-muted-border);
  box-shadow: 0 10px 30px rgba(11, 15, 10, 0.05);
}

.compare-panel-bad {
  border-top: 4px solid #E4483B;
}

.compare-panel-good {
  border-top: 4px solid var(--brand-primary);
}

.compare-panel-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.compare-panel-head h3 {
  margin: 0;
  font-size: 1.25rem;
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.compare-badge-bad {
  background: rgba(228, 72, 59, 0.12);
  color: #E4483B;
}

.compare-badge-good {
  background: rgba(51, 204, 0, 0.12);
  color: var(--brand-primary);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--brand-muted-border);
}

.compare-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.compare-ico {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 2px;
}

.compare-ico-bad {
  color: #E4483B;
}

.compare-ico-good {
  color: var(--brand-primary);
}

.compare-list .compare-title {
  display: block;
  font-weight: 600;
  color: var(--brand-ink);
  line-height: 1.3;
}

.compare-list .compare-desc {
  display: block;
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.15rem;
}

/* ---------------------------------------------------------------------------
   Anti-spam honeypot fields
   Visually hidden from real users but still present in the DOM and focusable
   by naive bots. Intentionally NOT display:none (some bots skip those).
   --------------------------------------------------------------------------- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
