/* =============================================
   HOLIDAY BRIGHT LIGHTS — style.css v2
   ============================================= */

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #1a1a2e; overflow-x: hidden; background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* --- TOKENS --- */
:root {
  --red:       #c8102e;
  --red-dark:  #9e0c24;
  --gold:      #f0a500;
  --navy:      #070d1f;
  --navy-2:    #0d1530;
  --navy-3:    #111e3a;
  --green-d:   #0b3d1a;
  --white:     #ffffff;
  --off:       #f5f6fa;
  --gray:      #5f6c7b;
  --lgray:     #e4e7ee;
  --radius:    10px;
  --radius-lg: 16px;
  --t: 0.27s cubic-bezier(.4,0,.2,1);
  --sh: 0 4px 22px rgba(0,0,0,.13);
  --sh-lg: 0 14px 50px rgba(0,0,0,.22);
}

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4 { font-family: 'Oswald', sans-serif; line-height: 1.12; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 600; }

/* --- BUTTONS --- */
.btn, .btn-fast-quote {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 6px; border: 2px solid transparent;
  font-family: 'Montserrat', 'Oswald', sans-serif; font-size: 1rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
  white-space: nowrap; transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Light shimmer sweep flare pseudo element */
.btn::before, .btn-fast-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: all 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

.btn:hover::before, .btn-fast-quote:hover::before {
  left: 150%;
}

.btn:active, .btn-fast-quote:active {
  transform: translateY(1px) scale(0.98) !important;
}

/* Red Solid Button */
.btn-red, .btn-fast-quote {
  background: var(--red);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 18px rgba(229, 9, 20, 0.35);
}

.btn-red:hover, .btn-fast-quote:hover {
  background: #ff121f;
  border-color: #ffffff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.6), 0 0 20px rgba(255, 255, 255, 0.35);
}

/* White Outline Button */
.btn-outline-white {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #0c1938;
  border-color: #ffffff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

.btn-lg { padding: .95rem 2.4rem; font-size: 1.08rem; }
.btn-xl { padding: 1.15rem 3.2rem; font-size: 1.2rem; border-radius: 8px; }

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(229, 9, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

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

/* --- SHARED LAYOUT --- */
.section-wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: .5rem; }
.eyebrow.light { color: var(--gold); }
.section-h2 { color: #111827; margin-bottom: 1rem; }
.section-h2.white { color: #fff; }
.center { text-align: center; }
.center-btn { text-align: center; margin-top: 2.5rem; }

/* --- TOP BAR --- */
.topbar {
  background: var(--navy);
  padding: .4rem 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  position: relative; z-index: 200;
}
.topbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-left { display: flex; align-items: center; gap: .5rem; }
.topbar-star { color: var(--gold); font-size: 1rem; }
.topbar-right { display: flex; align-items: center; gap: 1.2rem; }
.topbar-phone { color: var(--gold); font-weight: 700; font-size: .85rem; }
.topbar-phone:hover { color: #fff; }
.topbar-social { display: flex; gap: .5rem; }
.tsoc-link { color: rgba(255,255,255,.6); width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.tsoc-link:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* --- NAVBAR --- */
.navbar { background: var(--navy-2); position: sticky; top: 0; z-index: 999; box-shadow: 0 3px 16px rgba(0,0,0,.4); transition: background .3s; }
.navbar.scrolled { background: rgba(7,13,31,.96); backdrop-filter: blur(12px); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; padding: .7rem 1.5rem; gap: 1.8rem; }

/* Brand logo */
.nav-logo-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 9px rgba(0, 0, 0, 0.28));
}
.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.bl-red {
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}
.bl-white {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 1.6rem; list-style: none; margin-left: auto; }
.nav-links a { color: rgba(255,255,255,.8); font-size: .83rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; position: relative; transition: color .2s; }
.nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; width:0; height:2px; background:var(--red); transition: width .2s; }
.nav-links a:hover { color:#fff; }
.nav-links a:hover::after { width:100%; }
.nav-phone { color: var(--gold); font-weight: 700; font-size: .88rem; white-space: nowrap; }
.nav-phone:hover { color: #fff; }
.nav-cta { margin-left: .5rem; flex-shrink: 0; }
/* --- MOBILE MENU BUTTON (≡ MENU) --- */
.hamburger, .hamburger-menu-btn {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  outline: none;
  margin-left: auto;
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-lines span, .hamburger span {
  display: block;
  width: 24px;
  height: 2.8px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-label-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-menu { display: none; flex-direction: column; background: var(--navy); overflow: hidden; max-height: 0; transition: max-height .38s ease; }
.mobile-menu.open { max-height: 520px; }
.mobile-menu a { color: rgba(255,255,255,.85); padding: .9rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .9rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.mobile-menu a:hover { color: var(--gold); }
.mob-cta-btn { display: block; margin: 1rem 1.5rem; text-align: center; }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--navy) url('hero_bg.jpg') center top / cover no-repeat;
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* Garland corners */
.garland { position: absolute; top: 0; z-index: 4; width: 180px; opacity: .9; }
.garland-left { left: 0; }
.garland-right { right: 0; }

/* Wire lights */
.hero-light-wire { position: absolute; top: 0; left: 0; right: 0; z-index: 5; height: 40px; }
.wire-line { position: absolute; top: 8px; left: 0; right: 0; height: 2px; background: #555; }
.wire-bulbs { position: absolute; top: 0; left: 0; right: 0; display: flex; justify-content: space-around; padding: 0 10px; }
.wb {
  width: 13px; height: 18px; border-radius: 50% 50% 45% 45%; position: relative; flex-shrink: 0;
  animation: wblink 2.8s ease-in-out infinite;
}
.wb::before {
  content: ''; position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 8px; background: #777; border-radius: 2px 2px 0 0;
}
.wb.red    { background: #ff2222; box-shadow: 0 0 10px 4px rgba(255,34,34,.75); }
.wb.green  { background: #22dd44; box-shadow: 0 0 10px 4px rgba(34,221,68,.75); animation-delay:.7s; }
.wb.gold   { background: #ffcc00; box-shadow: 0 0 10px 4px rgba(255,204,0,.75); animation-delay:1.4s; }
.wb.blue   { background: #33aaff; box-shadow: 0 0 10px 4px rgba(51,170,255,.75); animation-delay:2.1s; }
@keyframes wblink { 0%,100%{opacity:1} 49%{opacity:1} 51%{opacity:.35} 53%{opacity:1} }

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(5,8,28,.93) 40%, rgba(10,25,15,.65) 100%); z-index: 1; }

/* Corner decoration images */
.hero-corner {
  position: absolute;
  bottom: 0;
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  object-fit: cover;
  object-position: top center;
  z-index: 4;
  pointer-events: none;
  /* No CSS transition — JS drives transform+opacity every scroll frame */
  transition: none;
  will-change: transform, opacity;
  transform-origin: bottom center;
  /* Vertical fade: top of image fades to transparent so it bleeds into the dark hero */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 22%, black 58%);
  mask-image:         linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 22%, black 58%);
  filter: drop-shadow(0 -4px 18px rgba(0,0,0,.5));
}
/* Left: also fade the right (inner) edge toward center */
.hero-corner-left {
  left: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 22%, black 58%),
                      linear-gradient(to right, black 55%, transparent 100%);
  mask-image:         linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 22%, black 58%),
                      linear-gradient(to right, black 55%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}
/* Right: also fade the left (inner) edge toward center */
.hero-corner-right {
  right: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 22%, black 58%),
                      linear-gradient(to left, black 55%, transparent 100%);
  mask-image:         linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.35) 22%, black 58%),
                      linear-gradient(to left, black 55%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}

@media (max-width: 860px) {
  .hero-corner { width: clamp(120px, 32vw, 200px); height: clamp(120px, 32vw, 200px); }
}
@media (max-width: 480px) {
  .hero-corner { width: 38vw; height: 38vw; }
}

/* Snowflakes */
.snowflakes { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.snowflakes i {
  position: absolute; top: -30px; color: rgba(255,255,255,.5); font-size: 1.1rem; font-style: normal;
  animation: snowfall linear infinite;
}
.snowflakes i:nth-child(1)  { left:5%;  font-size:.9rem; animation-duration:9s;  animation-delay:0s; }
.snowflakes i:nth-child(2)  { left:15%; font-size:.7rem; animation-duration:12s; animation-delay:2s; }
.snowflakes i:nth-child(3)  { left:25%; font-size:1.2rem;animation-duration:8s;  animation-delay:4s; }
.snowflakes i:nth-child(4)  { left:38%; font-size:.65rem;animation-duration:14s; animation-delay:1s; }
.snowflakes i:nth-child(5)  { left:50%; font-size:1rem;  animation-duration:10s; animation-delay:3s; }
.snowflakes i:nth-child(6)  { left:62%; font-size:.8rem; animation-duration:13s; animation-delay:5s; }
.snowflakes i:nth-child(7)  { left:72%; font-size:1.3rem;animation-duration:7s;  animation-delay:.5s; }
.snowflakes i:nth-child(8)  { left:82%; font-size:.7rem; animation-duration:15s; animation-delay:2.5s; }
.snowflakes i:nth-child(9)  { left:91%; font-size:.95rem;animation-duration:9.5s;animation-delay:1.5s; }
.snowflakes i:nth-child(10) { left:2%;  font-size:1.1rem;animation-duration:11s; animation-delay:6s; }
.snowflakes i:nth-child(11) { left:45%; font-size:.8rem; animation-duration:10s; animation-delay:7s; }
.snowflakes i:nth-child(12) { left:97%; font-size:.9rem; animation-duration:8.5s;animation-delay:4.5s; }
@keyframes snowfall { 0%{transform:translateY(-30px) rotate(0deg);opacity:0} 10%{opacity:.8} 90%{opacity:.6} 100%{transform:translateY(110vh) rotate(360deg);opacity:0} }

.hero-body {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex: 1; padding: 5rem 5% 6rem;
  width: 100%;
}
.hero-content {
  max-width: 900px;
  width: 100%;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 7.5vw, 6.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,0.7);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.85rem, 2.2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; justify-content: center; }
.hero-btns .btn-red {
  background: var(--red);
  border: 2px solid #ffffff;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  padding: 0.95rem 2.5rem;
  text-transform: uppercase;
}

/* --- FAST QUOTE BAR --- */
.fast-quote-wrapper {
  max-width: 1050px;
  margin: -50px auto 30px auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}
.fast-quote-box {
  background: rgba(13, 21, 48, 0.96);
  backdrop-filter: blur(12px);
  border: 2px solid #ffffff;
  border-radius: 12px;
  padding: 1.4rem 2rem 1.6rem;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.fast-quote-title {
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
}
.fast-quote-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
.fast-quote-form input {
  flex: 1;
  min-width: 130px;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ffffff;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  outline: none;
  font-weight: 500;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fast-quote-form input::placeholder {
  color: #6b7280;
}
.fast-quote-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.3);
}
.btn-fast-quote {
  background: var(--red);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid #ffffff;
  border-radius: 6px;
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.btn-fast-quote:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.45);
}

@media (max-width: 960px) {
  .fast-quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .btn-fast-quote {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .fast-quote-form {
    grid-template-columns: 1fr;
  }
  .btn-fast-quote {
    grid-column: span 1;
  }
  .fast-quote-wrapper {
    margin-top: -30px;
    padding: 0 1rem;
  }
  .fast-quote-box {
    padding: 1.2rem 1rem;
  }
}

/* --- BEFORE & AFTER TRANSFORMATION SHOWCASE --- */
.transformation-section {
  padding: 5rem 1.5rem;
  background: #070d1f;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.transformation-header .section-h2 {
  color: #ffffff;
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
}
.transformation-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}
.desktop-hint { display: inline; }
.mobile-hint { display: none; }

@media (max-width: 768px) {
  .desktop-hint { display: none; }
  .mobile-hint { display: inline; }
}

.before-after-wrapper {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.ba-card-box {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(229, 9, 20, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.2);
  user-select: none;
  cursor: e-resize;
  touch-action: pan-y;
}
.ba-img-after {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.ba-overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  transition: clip-path 0.05s ease-out;
  pointer-events: none;
}
.ba-img-before {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #ffffff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.95), 0 0 24px rgba(229, 9, 20, 0.8);
  z-index: 10;
  transform: translateX(-50%);
  transition: left 0.05s ease-out;
  pointer-events: none;
}
.ba-handle-line {
  width: 100%;
  height: 100%;
  background: #ffffff;
}
.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #e50914;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), 0 0 18px rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 900;
  gap: 2px;
}
.ba-arrow-left, .ba-arrow-right {
  line-height: 1;
  font-weight: 900;
}
.ba-badge {
  position: absolute;
  top: 18px;
  padding: 0.45rem 0.95rem;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 12;
  pointer-events: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.badge-before {
  left: 18px;
  background: rgba(12, 25, 56, 0.85);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.badge-after {
  right: 18px;
  background: rgba(229, 9, 20, 0.9);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .ba-badge {
    top: 10px;
    padding: 0.25rem 0.6rem;
    font-size: 0.62rem;
    letter-spacing: 0.03em;
    border-radius: 20px;
  }
  .badge-before {
    left: 10px;
  }
  .badge-after {
    right: 10px;
  }
}

/* --- ABOUT / FEATURE SECTION --- */
.about-feature-section {
  padding: 5rem 1.5rem;
  background: #ffffff;
}
.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-main-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  border: 1px solid #eaeaea;
}
.about-main-img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}
.about-video-card {
  position: absolute;
  bottom: -28px;
  right: -25px;
  width: 270px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0,0,0,0.38);
  border: 3px solid #ffffff;
  background: #000000;
}
.about-video-img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}
.video-overlay-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
}
.video-title-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.vt-red {
  color: var(--red);
  font-size: 1.15rem;
}
.vt-white {
  color: #ffffff;
  font-size: 1rem;
}
.video-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  border: 1.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text-content {
  color: #111827;
}
.about-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #0d172a;
}
.red-text {
  color: var(--red);
}
.about-paragraph {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.about-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
}
.about-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #0d172a;
}
.ab-check {
  font-size: 0.9rem;
}
.about-cta-wrap {
  margin-top: 1rem;
}

/* --- SERVE SECTION --- */
.serve-section {
  padding: 0 0 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #eef1f7 100%);
}
.serve-header-banner {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 7rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(240,165,0,0.10) 0%, transparent 28%),
    radial-gradient(circle at 88% 26%, rgba(200,16,46,0.13) 0%, transparent 30%),
    linear-gradient(165deg, #16294f 0%, #111d38 55%, #0b1631 100%);
}
/* Festive light string hanging from the top edge of the banner */
.serve-lightwire {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}
.serve-lightwire svg {
  display: block;
  width: 100%;
  height: 48px;
}
.serve-header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 1.5rem auto 0 auto;
}
.serve-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.serve-h2 {
  color: rgba(255,255,255,0.82);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.4rem 0;
}
.serve-h2-sub {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
}
.serve-accent {
  display: block;
  width: 64px;
  height: 4px;
  margin: 1.3rem auto 0 auto;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}
.serve-cards-wrap {
  margin-top: -4.5rem;
  position: relative;
  z-index: 5;
}
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
/* --- 3D FLIP SERVICE CARDS --- */
.serve-card-flip-wrap {
  perspective: 1000px;
  height: 400px;
  border-radius: 18px;
  cursor: pointer;
}
.card-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.serve-card-flip-wrap:hover .card-flip-inner,
.serve-card-flip-wrap.flipped .card-flip-inner {
  transform: rotateY(180deg);
}
.card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  overflow: hidden;
}
.card-front {
  background-size: cover;
  background-position: center;
}
.flip-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.card-back {
  background: linear-gradient(145deg, #0d172a 0%, #112040 100%);
  color: #ffffff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 1.4rem;
}
.sc-back-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.sc-back-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.4rem;
}
.sc-back-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
}
.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  margin-top: auto;
}

/* --- MARQUEE SLIDING GALLERY --- */
.marquee-section {
  position: relative;
  background: #091122;
  overflow: hidden;
  padding: 4.5rem 0;
}
.marquee-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 17, 34, 0.65);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
.marquee-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0,0,0,0.85);
  padding: 0 1rem;
}
.marquee-rows-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.marquee-row {
  width: 100%;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
}
.marquee-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.marquee-row-right .marquee-track {
  animation: marqueeRight 35s linear infinite;
}
.marquee-row-left .marquee-track {
  animation: marqueeLeft 35s linear infinite;
}
@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- 3 EASY STEPS SECTION --- */
.steps-section {
  padding: 5rem 1.5rem;
  background: #f8f9fa;
  text-align: center;
}
.steps-eyebrow {
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.steps-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #0d172a;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.steps-cards-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  counter-reset: step;
  position: relative;
  padding-top: 40px;
}
/* dashed connector linking the three steps (desktop) */
.steps-cards-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 16.6%;
  right: 16.6%;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(229,9,20,.55) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.step-white-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 3.4rem 1.8rem 2.6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid #eaeaea;
  text-align: center;
  overflow: visible;
  transition: transform 0.3s cubic-bezier(.22,.61,.36,1), box-shadow 0.3s ease, border-color .3s ease;
}
/* gradient accent strip along the top (revealed on hover) */
.step-white-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: 0;
  transition: opacity .3s ease;
}
/* numbered step badge */
.step-white-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #e50914, #a30f18);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  border: 4px solid #f8f9fa;
  box-shadow: 0 8px 20px rgba(229,9,20,.4);
  z-index: 3;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.step-white-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.14);
  border-color: rgba(229,9,20,.25);
}
.step-white-card:hover::after { opacity: 1; }
.step-white-card:hover::before { transform: translateX(-50%) scale(1.12) rotate(-4deg); }
.step-icon-red {
  margin: 0 auto 1.3rem;
  width: 84px; height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 40%, rgba(229,9,20,.14), rgba(229,9,20,.05));
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s ease;
}
.step-white-card:hover .step-icon-red {
  transform: scale(1.08) translateY(-2px);
  background: radial-gradient(circle at 50% 40%, rgba(229,9,20,.22), rgba(229,9,20,.08));
}
.step-icon-red svg { width: 42px; height: 42px; }
.step-white-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0d172a;
  margin-bottom: 0.8rem;
}
.step-white-card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.86rem;
  line-height: 1.65;
  color: #6b7280;
}
@media (max-width: 900px) {
  .steps-cards-grid::before { display: none; }
  .steps-cards-grid { padding-top: 36px; }
}

@media (max-width: 1024px) {
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-feature-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-video-card { right: 10px; bottom: -20px; width: 230px; }
  .steps-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .serve-grid { grid-template-columns: 1fr; }
  .serve-card { height: 320px; }
}

/* --- TRUST BAR --- */
.trust-bar { background: var(--red); padding: 1rem 2rem; }
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: .8rem;
}
.trust-item { display: flex; align-items: center; gap: .6rem; color: #fff; }
.ti-icon { width: 26px; height: 26px; flex-shrink: 0; opacity: .9; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: .02em; }
.trust-item span { font-size: .72rem; opacity: .85; }
.trust-divider { width: 1px; height: 38px; background: rgba(255,255,255,.25); }

/* --- SERVE SECTION --- */
.serve-section { padding: 5rem 1.5rem; background: var(--off); }
.serve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.4rem; margin-top: 2.8rem; }
.serve-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--sh); border: 2px solid transparent;
  transition: all var(--t); cursor: pointer; display: flex; flex-direction: column;
}
.serve-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: rgba(200,16,46,.2); }
.serve-card.featured { border-color: var(--red); }
.sc-featured-tag {
  background: var(--red); color: #fff; font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .25rem 0; text-align: center;
}
.sc-head {
  background: linear-gradient(145deg, var(--navy-2) 0%, var(--navy-3) 100%);
  padding: 1.8rem; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.sc-head::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--red); }
.serve-card:hover .sc-head { background: linear-gradient(145deg, #1a2555 0%, #1d2d58 100%); }
.sc-emoji { font-size: 3rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,.3)); }
.sc-body { padding: 1.4rem 1.5rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.sc-body h3 { color: #111827; margin-bottom: .65rem; }
.sc-body p { color: var(--gray); font-size: .87rem; line-height: 1.65; flex: 1; margin-bottom: .8rem; }
.sc-link { color: var(--red); font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-top: auto; }

/* --- NEIGHBORHOOD BANNER --- */
.nbhd-banner { position: relative; min-height: 50vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.nbhd-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.nbhd-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,9,22,.55) 0%, rgba(4,9,22,.8) 100%); z-index: 1; }
.nbhd-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 4rem 2rem; max-width: 720px; }
.nbhd-content h2 { font-size: clamp(2rem, 5vw, 3.8rem); text-shadow: 0 3px 18px rgba(0,0,0,.55); margin-bottom: 1rem; }
.nbhd-content p { font-size: 1.05rem; opacity: .82; margin-bottom: 2rem; }
.nbhd-wire { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; }
.nbhd-wire svg { width: 100%; height: 40px; }

/* --- HOW IT WORKS --- */
.hiw-section { padding: 5rem 1.5rem; background: #fff; }
.hiw-section .section-wrap { text-align: center; }
.hiw-grid { display: flex; align-items: center; justify-content: center; gap: 0; margin-top: 3rem; flex-wrap: wrap; }
.hiw-card {
  background: var(--off); border-radius: var(--radius-lg); padding: 2.8rem 2rem;
  flex: 1; min-width: 220px; max-width: 290px; text-align: center;
  border: 2px solid var(--lgray); position: relative; transition: all var(--t);
}
.hiw-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--red); }
.hiw-num {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-family: 'Oswald', sans-serif;
  font-size: .95rem; font-weight: 700; width: 42px; height: 42px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(200,16,46,.45);
}
.hiw-icon { font-size: 2.8rem; margin: .8rem 0 1rem; display: block; }
.hiw-card h3 { color: #111827; margin-bottom: .7rem; }
.hiw-card p { color: var(--gray); font-size: .87rem; line-height: 1.68; }
.hiw-connector { display: flex; flex-direction: column; align-items: center; padding: 0 .8rem; flex-shrink: 0; }
.hiw-line { width: 2px; height: 0; }
.hiw-arrow { font-size: 2.2rem; color: var(--red); font-weight: 700; line-height: 1; margin-top: 1rem; }

/* --- SERVICE AREA & MAP SECTION --- */
.area-map-section {
  padding: 4.5rem 0 0 0;
  background: #ffffff;
  overflow: hidden;
}
.area-header {
  text-align: center;
  padding: 0 1.5rem 2.5rem 1.5rem;
}
.area-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2.3rem);
  font-weight: 900;
  color: #0c1938;
  line-height: 1.25;
}
.van-map-banner-container {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
}
.map-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  background-image: url('austin_map_bg.jpg');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}
.van-map-fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 40%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,0) 100%);
  z-index: 2;
  pointer-events: none;
}
.van-side-photo {
  width: 48%;
  max-width: 580px;
  flex-shrink: 0;
  z-index: 4;
  padding-left: 4%;
  position: relative;
}
.van-img-transparent {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}
.map-interactive-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  z-index: 3;
}
.delaware-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pin-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 900;
  fill: #0c1938;
  text-shadow: 0 0 6px rgba(255,255,255,1), 0 2px 4px rgba(255,255,255,1);
}
.pin-label.text-right {
  text-anchor: end;
}
@keyframes mapPinPulse {
  0% { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}
.pin-pulse {
  animation: mapPinPulse 2.2s ease-out infinite;
  transform-origin: center;
}

@media (max-width: 900px) {
  .van-map-banner-container {
    flex-direction: column;
    min-height: auto;
  }
  .map-bg-image {
    position: relative;
    width: 100%;
    height: 300px;
  }
  .van-side-photo {
    width: 90%;
    padding-left: 0;
    margin: 0 auto;
  }
  .van-map-fade-overlay { display: none; }
  .map-interactive-box {
    position: relative;
    width: 100%;
    height: 300px;
  }
}

/* --- REVIEWS --- */
.reviews-section {
  padding: 5rem 1.5rem;
  background: #f8f9fa;
}
.reviews-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
.rating-callout {
  background: #ffffff;
  border-radius: 14px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 2px solid #eaeaea;
  position: sticky;
  top: 90px;
}
.rc-stars {
  color: #f0a500;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.rc-score {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #0c1938;
  line-height: 1;
}
.rc-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #4b5563;
  margin-bottom: 0.5rem;
}
.rc-count {
  font-size: 0.8rem;
  color: #6b7280;
  border-top: 1px solid #eaeaea;
  padding-top: 0.6rem;
  margin-bottom: 1rem;
}
.rc-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.g-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4285f4;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
}
.rc-logo span {
  font-size: 0.85rem;
  color: #374151;
  font-weight: 700;
}
.reviews-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.rev-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.6rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #eaeaea;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.rev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.rev-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}
.rev-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rev-name-wrap strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0c1938;
  display: block;
}
.rev-stars {
  color: #f0a500;
  font-size: 0.85rem;
}
.rev-g {
  margin-left: auto;
  width: 26px;
  height: 26px;
  background: #4285f4;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}
.rev-card p {
  color: #374151;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0.8rem;
}
.rev-card small {
  color: #6b7280;
  font-size: 0.76rem;
  font-weight: 600;
}

/* --- FAQ --- */
.faq-section {
  padding: 5rem 1.5rem;
  background: #ffffff;
  text-align: center;
}
.faq-title-main {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #0c1938;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.faq-cards-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}
.faq-item-card {
  border: 1px solid #e4e7f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(12, 25, 56, 0.05);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.faq-item-card:hover {
  box-shadow: 0 6px 18px rgba(12, 25, 56, 0.10);
}
/* Active (open) card gets a festive red highlight */
.faq-item-card:has(.faq-card-button[aria-expanded="true"]) {
  border-color: var(--red);
  background: #fdf6f7;
  box-shadow: 0 10px 26px rgba(200, 16, 46, 0.12);
}
.faq-card-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  cursor: pointer;
  text-align: left;
  outline: none;
  min-height: 56px;
}
.faq-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #0c1938;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.faq-card-button[aria-expanded="true"] .faq-icon-box {
  background: var(--red);
}
.faq-plus-icon {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-card-button[aria-expanded="true"] .faq-plus-icon {
  transform: rotate(45deg);
}
.faq-question-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0c1938;
  padding-right: 0.5rem;
  line-height: 1.35;
}
.faq-card-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.1rem 0 1.1rem;
}
.faq-card-answer.open {
  max-height: 400px;
  padding: 0.2rem 1.1rem 1.15rem 1.1rem;
}
.faq-card-answer p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4b5563;
}

/* --- QUOTE / CONTACT FORM SECTION --- */
.quote-section {
  position: relative;
  background: #070d1f url('hero_bg.jpg') center/cover no-repeat;
  padding: 4.5rem 1.5rem 5rem;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 31, 0.92);
}
.quote-inner {
  position: relative;
  z-index: 3;
}
.quote-sub {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.quote-sub strong { color: #ffffff; }
.quote-form {
  background: rgba(12, 25, 56, 0.88);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.qf-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.qf-group label {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.qf-group input, .qf-group select {
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #ffffff;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  min-height: 48px;
  transition: all 0.2s ease;
}
.qf-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.qf-group input:focus, .qf-group select:focus {
  border-color: #e50914;
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.5);
  background: rgba(255, 255, 255, 0.22);
}
.qf-group select {
  color: #ffffff;
  cursor: pointer;
}
.qf-group select option {
  background: #0c1938;
  color: #ffffff;
}
.qf-submit {
  text-align: center;
  margin-top: 1.8rem;
}
.qf-submit .btn-xl {
  width: 100%;
  min-height: 52px;
  font-size: 1.1rem;
  font-weight: 900;
}
.qf-disclaimer {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  margin-top: 0.8rem;
}
.quote-success {
  text-align: center;
  color: #ffffff;
  padding: 3rem;
}
.qs-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.quote-success h3 {
  font-size: 1.8rem;
  color: #f0a500;
  margin-bottom: 0.75rem;
}
.quote-success p {
  color: rgba(255, 255, 255, 0.85);
}

/* --- FOOTER --- */
.site-footer { background: #050810; color: rgba(255,255,255,.6); }
.footer-wire { display: block; background: #0a0f22; line-height: 0; }
.footer-wire svg { width: 100%; height: 36px; display: block; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2.5rem; padding: 3rem 1.5rem 2rem; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-shield { width: 42px; height: 48px; background: linear-gradient(160deg,var(--red),var(--red-dark)); clip-path: polygon(50% 0%,100% 20%,100% 70%,50% 100%,0% 70%,0% 20%); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }
.fl-holiday { color: rgba(255,255,255,.6); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; display: block; }
.fl-bright { color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700; display: block; letter-spacing: .04em; }
.fl-est { color: rgba(255,255,255,.35); font-size: .62rem; letter-spacing: .08em; display: block; }
.footer-brand p { font-size: .83rem; line-height: 1.7; margin-bottom: 1.2rem; }
/* CLIPA Footer Badge */
.footer-clipa-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.2rem 0;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  max-width: 280px;
}
.clipa-badge-img {
  width: 68px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.clipa-badge-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
}
.footer-soc { display: flex; gap: .6rem; flex-wrap: wrap; }
.fsoc-btn { color: rgba(255,255,255,.55); font-size: .75rem; padding: .3rem .75rem; border: 1px solid rgba(255,255,255,.12); border-radius: 4px; transition: all .2s; }
.fsoc-btn:hover { color: #fff; border-color: var(--gold); background: rgba(240,165,0,.1); }
.footer-col h4 { font-family: 'Oswald', sans-serif; font-size: .9rem; color: #fff; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.1rem; padding-bottom: .45rem; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-col ul li { margin-bottom: .5rem; font-size: .83rem; }
.footer-col ul li a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1rem 1.5rem; text-align: center; font-size: .75rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* --- STICKY BAR (mobile) --- */
.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-2); border-top: 2px solid var(--red); z-index: 998; padding: .7rem 1rem; gap: .8rem; box-shadow: 0 -5px 20px rgba(0,0,0,.35); }
.sticky-btn { flex: 1; text-align: center; }

/* --- FADE IN --- */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1050px) {
  .area-grid { grid-template-columns: 1fr; }
  .reviews-layout { grid-template-columns: 1fr; }
  .rating-callout { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem; position: static; }
  .rc-score { font-size: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-body { padding: 4rem 1.5rem 3rem; }
  .hero-photo-wrap { max-width: 100%; width: 100%; }
  .hero-badge-float { width: 70px; height: 70px; top: -10px; right: -10px; }
  .hbf-num { font-size: 1.3rem; }
  .hiw-grid { flex-direction: column; align-items: center; }
  .hiw-arrow { transform: rotate(90deg); }
  .faq-cols { grid-template-columns: 1fr; }
  .reviews-cards { grid-template-columns: 1fr; }
  .garland { width: 120px; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 68px; }
}
@media (max-width: 600px) {
  .qf-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .area-cols { gap: 1rem; }
}

/* --- HIGH VISIBILITY SERVICE CARD TEXT & BUTTONS --- */
.sc-title-visible {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85), 0 0 6px rgba(0, 0, 0, 0.6);
  margin: 0;
  letter-spacing: -0.01em;
}
.sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 28, 0.30) 0%, rgba(5, 9, 28, 0.20) 45%, rgba(5, 9, 28, 0.55) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.2rem;
  transition: background 0.3s ease;
}
/* Reference look: clean image + centered title, no front button */
.card-btn-actions {
  display: none;
}
.btn-card-action {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.22s ease;
}
.btn-card-action:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(229, 9, 20, 0.5);
}
.btn-page-link {
  background: #ffffff;
  color: #0c1938;
  border-color: #ffffff;
}
.btn-page-link:hover {
  background: #f0a500;
  color: #0c1938;
  border-color: #f0a500;
}
.card-back-btns {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

/* --- POPUP MODAL --- */
.service-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 28, 0.82);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.service-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.service-modal-box {
  background: #ffffff;
  border-radius: 14px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-modal-backdrop.active .service-modal-box {
  transform: scale(1) translateY(0);
}
.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border: none;
  font-size: 1.8rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close-btn:hover { background: var(--red); }
.modal-header-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 14px 14px 0 0;
}
.modal-body-content {
  padding: 1.8rem;
}
.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #0c1938;
  margin-bottom: 0.6rem;
}
.modal-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 1.2rem;
}
.modal-checklist {
  list-style: none;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal-checklist li {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  color: #0c1938;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-checklist li::before {
  content: '🔴';
  font-size: 0.8rem;
}
.modal-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.modal-quote-btn {
  background: #0c1938;
  color: #ffffff;
  border-color: #0c1938;
}
.modal-quote-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

/* --- DEDICATED SERVICE PAGES --- */
.service-page-hero {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.service-hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  padding: 4rem 1.5rem;
}
.service-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}
.service-hero-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  max-width: 650px;
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 1.8rem;
}
.service-detail-section {
  padding: 4.5rem 1.5rem;
  background: #f8f9fa;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 3rem;
  align-items: start;
}
.service-lead-p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 2rem;
}
.service-features-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #eaeaea;
  margin-bottom: 2.5rem;
}
.service-features-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0c1938;
  margin-bottom: 1.2rem;
}
.service-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-checklist li {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}
.service-checklist li strong {
  color: #0c1938;
}
.service-cta-banner {
  background: #0c1938;
  color: #ffffff;
  border-radius: 12px;
  padding: 2.2rem;
  text-align: center;
}
.service-cta-banner h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.service-cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}
.fast-quote-form-vert {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.fast-quote-form-vert input {
  width: 100%;
  box-sizing: border-box;
  min-height: 50px;
  padding: 0.8rem 1rem;
  border: 1.5px solid #ffffff;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  color: #1a1a2e;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fast-quote-form-vert input::placeholder {
  color: #6b7280;
}
.fast-quote-form-vert input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.3);
}
.fast-quote-form-vert .btn {
  min-height: 52px;
  margin-top: 0.35rem;
}
.vform-success {
  text-align: center;
  padding: 1rem 0.5rem;
  color: #ffffff;
}
.vform-success-icon {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.vform-success h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.vform-success p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.55;
}
/* =============================================
   MOBILE & TABLET RESPONSIVE OPTIMIZATION
   ============================================= */

@media (max-width: 1024px) {
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .serve-card-flip-wrap {
    height: 350px;
  }
  .about-feature-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  /* Hide topbar on mobile for ultra-clean header */
  .topbar {
    display: none;
  }

  /* Main Navbar Fixed at Top on Mobile */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    background: #070d1f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  }

  .nav-inner {
    padding: 0.7rem 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    gap: 0.5rem;
  }

  .nav-logo-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }

  .nav-logo-brand svg,
  .nav-logo-brand .brand-logo-icon {
    width: 36px;
    height: 36px;
  }

  .bl-red { font-size: 0.95rem; }
  .bl-white { font-size: 0.82rem; }

  .hamburger-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem 0.5rem;
    margin-left: auto;
  }

  .menu-label-text {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.04em;
  }

  .mobile-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    width: 100%;
    background: #070d1f;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--red);
    padding: 1rem 0;
  }
  .mobile-menu a {
    font-size: 1.05rem;
    font-weight: 700;
  }

  /* Body / Hero top padding compensation */
  .hero, .service-page-hero {
    padding-top: 60px;
  }

  /* Subpage (service) hero: prevent the nowrap CTA from forcing
     the flex content box wider than the viewport (horizontal overflow). */
  .service-hero-content {
    min-width: 0;
    max-width: 100%;
    padding: 3rem 1.2rem;
    box-sizing: border-box;
  }
  .service-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
  .service-page-hero .btn-lg {
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Service detail body: stop long nowrap buttons from forcing the
     grid column wider than the screen (horizontal overflow). */
  .service-main-text,
  .service-sidebar-form {
    min-width: 0;
  }
  .service-detail-section .btn {
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
  }
  .service-checklist li {
    overflow-wrap: anywhere;
  }

  /* Hero Section */
  .hero-body {
    padding: 3rem 1.2rem 2.5rem 1.2rem;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
  }
  .hero-title {
    font-size: clamp(2.2rem, 9.5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
  }
  .hero-sub {
    font-size: clamp(0.85rem, 3.8vw, 1.1rem);
    margin-bottom: 1.5rem;
  }
  .hero-corner {
    width: 140px;
    height: 140px;
  }

  /* Fast Quote Bar */
  .fast-quote-wrapper {
    margin: -35px auto 20px auto;
    padding: 0 1rem;
  }
  .fast-quote-box {
    padding: 1.2rem 1.2rem 1.4rem;
  }
  .fast-quote-title {
    font-size: 1.15rem;
    margin-bottom: 0.9rem;
  }
  .fast-quote-form {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }
  .fast-quote-form input,
  .btn-fast-quote {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
  }

  /* Serve Grid (1 Column on Mobile) */
  .serve-section {
    padding-bottom: 3.5rem;
  }
  .serve-header-banner {
    padding: 3.5rem 1rem 5.5rem 1rem;
  }
  .serve-h2 {
    font-size: 1rem;
  }
  .serve-h2-sub {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }
  .serve-cards-wrap {
    margin-top: -3.5rem;
  }
  .serve-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .serve-card-flip-wrap {
    height: 440px;
  }
  .sc-title-visible {
    font-size: 1.9rem;
  }

  /* Map Banner Section */
  .area-map-section {
    padding-top: 3rem;
  }
  .area-main-title {
    font-size: clamp(1.3rem, 5vw, 1.9rem);
    padding: 0 1rem;
  }
  .van-map-banner-container {
    flex-direction: column;
    min-height: auto;
  }
  .map-bg-image {
    position: relative;
    width: 100%;
    height: 280px;
  }
  /* Float the van up so it overlaps ~half of the map above it */
  .van-side-photo {
    width: 92%;
    padding: 0;
    margin: -130px auto 0 auto;
    position: relative;
    z-index: 5;
  }
  .van-img-transparent {
    max-width: 100%;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.35));
  }
  /* Overlay the location pins on top of the map image instead of
     stacking them in an empty box below the van. */
  .map-interactive-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    z-index: 3;
  }
  .pin-label {
    font-size: 13px;
  }

  /* FAQ Accordion Section */
  .faq-section {
    padding: 3.5rem 1rem;
  }
  .faq-title-main {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 1.8rem;
  }
  .faq-cards-container {
    gap: 0.7rem;
  }
  .faq-icon-box {
    width: 32px;
    height: 32px;
  }
  .faq-card-button {
    padding: 0.7rem 0.9rem;
    gap: 0.75rem;
    min-height: 54px;
  }
  .faq-question-text {
    font-size: 0.92rem;
  }
  .faq-card-answer {
    padding: 0 0.95rem 0 0.95rem;
  }
  .faq-card-answer.open {
    padding: 0.2rem 0.95rem 1rem 0.95rem;
  }
  .faq-card-answer p {
    font-size: 0.88rem;
  }

  /* Contact Form / Quote Section on Mobile */
  .quote-section {
    padding: 3rem 1rem 4rem 1rem;
    box-sizing: border-box;
    overflow: hidden;
  }
  .quote-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .quote-form {
    padding: 1.2rem 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
  }
  .qf-row {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    width: 100%;
    box-sizing: border-box;
  }
  .qf-group {
    width: 100%;
    box-sizing: border-box;
  }
  .qf-group input,
  .qf-group select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 48px;
    font-size: 0.9rem;
  }
  .qf-submit .btn-xl {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  /* Modal Popup on Mobile */
  .service-modal-backdrop {
    padding: 0.8rem;
  }
  .service-modal-box {
    max-height: 90vh;
    border-radius: 12px;
  }
  .modal-header-img {
    height: 160px;
  }
  .modal-body-content {
    padding: 1.2rem;
  }
  .modal-title {
    font-size: 1.25rem;
  }
  .modal-desc {
    font-size: 0.86rem;
  }
  .modal-actions {
    flex-direction: column;
    gap: 0.6rem;
  }
  .modal-actions .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* Sticky Bottom Mobile Bar */
  .sticky-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.6rem 0.6rem !important;
    background: #070d1f !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .sticky-bar .sticky-btn {
    flex: 1 1 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0.65rem 0.2rem !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    border-radius: 6px !important;
  }

  /* Sticky Header on Scroll */
  .navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(7, 13, 31, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 480px) {
  .hero-body {
    padding: 2.5rem 1rem 2rem 1rem;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .fast-quote-box {
    padding: 1rem;
  }
  .sc-title-visible {
    font-size: 1.7rem;
  }
  .btn-lg {
    padding: 0.85rem 1.4rem;
    font-size: 0.95rem;
  }
}

/* ============================================================
   ENHANCEMENTS (appended)
   ============================================================ */

/* --- 1. Full-width blue "How Can We Best Serve You" banner --- */
.serve-header-banner {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* --- SCROLL REVEAL: each section assembles as it enters the viewport --- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1),
              transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.fade-in.fade-left  { transform: translateX(-48px); }
.fade-in.fade-right { transform: translateX(48px); }
.fade-in.fade-scale { transform: translateY(28px) scale(.94); }
/* resolved state must win over the directional variants above */
.fade-in.visible {
  opacity: 1;
  transform: none;
}
/* Respect users who ask for less motion — show everything, no animation */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Rough estimator — interactive lighting plan board */
.rough-estimate-section {
  --planner-ink: #101a32;
  --planner-muted: #657086;
  --planner-line: #dce2eb;
  --planner-snow: #f5f7fb;
  --planner-warm: #ffc94a;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(200, 16, 46, 0.07), transparent 24rem),
    radial-gradient(circle at 90% 82%, rgba(255, 201, 74, 0.12), transparent 28rem),
    #f3f6fa;
}

.rough-estimate-section::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background-image: radial-gradient(rgba(16, 26, 50, 0.09) 0.75px, transparent 0.75px);
  background-size: 20px 20px;
  box-shadow: none;
  opacity: 0.34;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.rough-estimate-heading {
  max-width: 850px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.rough-estimate-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
  padding: 0.44rem 0.72rem;
  border: 1px solid rgba(200, 16, 46, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  letter-spacing: 0.11em;
}

.rough-estimate-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}

.rough-estimate-heading h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.rough-estimate-heading p {
  max-width: 625px;
  color: #637087;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.7;
}

.rough-estimate-board {
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.88fr);
  width: min(1180px, 100%);
  border: 1px solid rgba(16, 26, 50, 0.08);
  border-radius: 30px;
  box-shadow:
    0 2px 4px rgba(16, 26, 50, 0.03),
    0 28px 80px rgba(16, 26, 50, 0.16);
}

.rough-estimate-form {
  padding: clamp(1.6rem, 4vw, 3.25rem);
  background: rgba(255, 255, 255, 0.98);
}

.rough-form-intro {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.rough-form-intro-options {
  margin-top: 2rem;
}

.rough-step-badge {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: var(--planner-ink);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 14px rgba(16, 26, 50, 0.16);
}

.rough-form-intro > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.16rem;
}

.rough-form-intro strong {
  color: var(--planner-ink);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.rough-form-intro small {
  color: var(--planner-muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.rough-slider-group {
  margin-bottom: 0;
  padding: 1.35rem 1.4rem 1.1rem;
  border: 1px solid var(--planner-line);
  border-radius: 16px;
  background: var(--planner-snow);
  box-shadow: inset 0 1px 0 #fff;
}

.rough-control-heading {
  margin-bottom: 1.15rem;
}

.rough-control-heading label {
  font-size: 0.78rem;
}

.rough-control-heading output {
  min-width: 112px;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(200, 16, 46, 0.15);
  background: #fff;
  color: var(--red);
  font-size: 0.74rem;
  box-shadow: 0 5px 14px rgba(16, 26, 50, 0.07);
}

.rough-slider-group input[type='range'] {
  height: 34px;
}

.rough-slider-group input[type='range']::-webkit-slider-runnable-track {
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0 var(--rough-progress), #dce2eb var(--rough-progress) 100%);
  box-shadow: none;
}

.rough-slider-group input[type='range']::-moz-range-track,
.rough-slider-group input[type='range']::-moz-range-progress {
  height: 6px;
}

.rough-slider-group input[type='range']::-webkit-slider-thumb {
  width: 27px;
  height: 27px;
  margin-top: -10.5px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.22), 0 5px 14px rgba(200, 16, 46, 0.3);
}

.rough-slider-group input[type='range']::-moz-range-thumb {
  width: 19px;
  height: 19px;
  border: 5px solid #fff;
  background: var(--red);
  box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.22), 0 5px 14px rgba(200, 16, 46, 0.3);
}

.rough-range-labels {
  margin-top: -0.15rem;
  font-size: 0.65rem;
}

.rough-select-grid {
  gap: 0.7rem;
  margin-bottom: 1.65rem;
}

.rough-select-group label,
.rough-extras legend {
  color: #344057;
  font-size: 0.7rem;
  letter-spacing: 0.01em;
}

.rough-select-group select,
.rough-select-group input {
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--planner-line);
  border-radius: 11px;
  background-color: #fff;
  color: var(--planner-ink);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(16, 26, 50, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.rough-select-group select:hover:not(:disabled),
.rough-select-group input:hover {
  border-color: #abb5c6;
}

.rough-select-group select:focus,
.rough-select-group input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}

.rough-extras legend {
  margin-bottom: 0.75rem;
}

.rough-toggle-grid {
  gap: 0.7rem;
}

.rough-toggle {
  min-height: 82px;
  padding: 1rem;
  border: 1px solid var(--planner-line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(16, 26, 50, 0.04);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.rough-toggle:hover {
  transform: translateY(-1px);
  border-color: #b8c0ce;
  box-shadow: 0 8px 18px rgba(16, 26, 50, 0.08);
}

.rough-toggle:has(input:checked) {
  border-color: rgba(200, 16, 46, 0.55);
  background: #fff7f8;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.06);
}

.rough-toggle-switch {
  width: 44px;
  height: 25px;
  background: #c8cfda;
}

.rough-toggle-switch::after {
  top: 4px;
  left: 4px;
  width: 17px;
  height: 17px;
}

.rough-toggle input:checked + .rough-toggle-switch::after {
  transform: translateX(19px);
}

.rough-toggle strong {
  color: var(--planner-ink);
  font-size: 0.79rem;
}

.rough-toggle small {
  color: var(--planner-muted);
  font-size: 0.67rem;
}

.rough-extra-panel {
  margin-top: 0.7rem;
  padding: 1rem;
  border: 1px solid #ead3d7;
  border-radius: 13px;
  background: #fff9fa;
}

.rough-estimate-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 28px;
  margin: 1.25rem 0 -0.45rem;
  color: #4d6d5a;
  font-size: 0.7rem;
  text-align: left;
}

.rough-status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #36a269;
  box-shadow: 0 0 0 4px rgba(54, 162, 105, 0.11);
}

.rough-estimate-status.is-error {
  color: #b42318;
}

.rough-estimate-status.is-error .rough-status-dot {
  background: #d64545;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.1);
}

.rough-result {
  align-items: stretch;
  justify-content: flex-start;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  background:
    radial-gradient(circle at 50% 27%, rgba(75, 104, 171, 0.2), transparent 16rem),
    linear-gradient(155deg, #111d38 0%, #081126 72%, #070d1e 100%);
  text-align: left;
}

.rough-result::before {
  top: auto;
  right: auto;
  bottom: -150px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.015), 0 0 0 110px rgba(255, 255, 255, 0.01);
}

.rough-live-badge {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.rough-live-badge > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #54d88a;
  box-shadow: 0 0 9px rgba(84, 216, 138, 0.85);
}

.rough-house-scene {
  position: relative;
  height: clamp(130px, 16vw, 175px);
  margin: 1.65rem -0.4rem 0.7rem;
}

.rough-house-scene svg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rough-house-fill {
  fill: rgba(255, 255, 255, 0.035);
}

.rough-house-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.17);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.rough-light-line {
  fill: none;
  stroke: var(--planner-warm);
  stroke-dasharray: 2 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  filter: drop-shadow(0 0 5px rgba(255, 201, 74, 0.95));
}

.rough-star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 7px #fff;
}

.rough-star-one { top: 23%; left: 12%; }
.rough-star-two { top: 8%; left: 58%; opacity: 0.65; }
.rough-star-three { top: 34%; right: 11%; opacity: 0.8; }

.rough-result-eyebrow {
  margin-bottom: 0.58rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.rough-result-price {
  min-height: 1em;
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: clamp(2.05rem, 4vw, 3.65rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.rough-result.is-loading .rough-result-price {
  opacity: 0.42;
  transform: translateY(2px);
}

.rough-result.is-loading .rough-light-line {
  animation: rough-light-chase 1.1s linear infinite;
}

.rough-result-summary {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.35;
}

.rough-result p {
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.77rem;
  line-height: 1.55;
}

.rough-accurate-link {
  min-height: 52px;
  margin-bottom: 0.9rem;
  border: 0;
  border-radius: 11px;
  background: var(--red);
  box-shadow: 0 11px 25px rgba(200, 16, 46, 0.28);
  font-size: 0.72rem;
}

.rough-accurate-link:hover {
  background: #e21a3b;
  color: #fff;
  box-shadow: 0 14px 30px rgba(200, 16, 46, 0.38);
  transform: translateY(-1px);
}

.rough-auto-note {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  color: #fff;
}

.rough-auto-icon {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--planner-warm);
  font-size: 0.85rem;
}

.rough-auto-note > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.rough-auto-note strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.rough-auto-note small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
}

.rough-result .rough-disclaimer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.6rem;
}

@keyframes rough-light-chase {
  to { stroke-dashoffset: -24; }
}

@media (max-width: 920px) {
  .rough-estimate-board {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
  }

  .rough-result {
    min-height: 510px;
  }

  .rough-house-scene {
    height: 190px;
  }
}

@media (max-width: 620px) {
  .rough-estimate-section {
    padding: 4rem 0;
  }

  .rough-estimate-wrap {
    padding-right: 14px;
    padding-left: 14px;
  }

  .rough-estimate-heading {
    padding-right: 0;
    padding-left: 0;
  }

  .rough-estimate-heading h2 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .rough-estimate-board {
    border-right: 1px solid rgba(16, 26, 50, 0.08);
    border-left: 1px solid rgba(16, 26, 50, 0.08);
    border-radius: 22px;
  }

  .rough-estimate-form {
    padding: 1.35rem 1rem 1.4rem;
  }

  .rough-select-grid,
  .rough-toggle-grid,
  .rough-extra-panel {
    grid-template-columns: 1fr;
  }

  .rough-slider-group {
    padding: 1.15rem 1rem 0.95rem;
  }

  .rough-control-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .rough-control-heading output {
    min-width: 0;
  }

  .rough-result {
    min-height: 500px;
    padding: 1.35rem;
  }

  .rough-live-badge {
    top: 1.1rem;
    right: 1.1rem;
  }

  .rough-house-scene {
    height: 145px;
    margin-top: 2.2rem;
  }

  .rough-result-price {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rough-result.is-loading .rough-light-line {
    animation: none;
  }
}

/* --- 3. CTA (quote) polish: white-ring button + glowing bulbs --- */
.quote-form .btn-xl {
  border: 3px solid rgba(255, 255, 255, 0.9);
}
.quote-wire svg circle {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.45));
}

/* --- 4. Mobile: make the "through the season" video a full-width player --- */
@media (max-width: 900px) {
  .about-photo-wrap {
    display: flex;
    flex-direction: column;
  }
  .about-video-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1.4rem;
    aspect-ratio: 16 / 9;
    border-width: 4px;
  }
  .about-video-img {
    height: 100%;
    opacity: 0.9;
  }
  .video-overlay-content {
    display: block;
    padding: 0;
  }
  .video-title-text {
    position: absolute;
    left: 1.2rem;
    bottom: 1.1rem;
  }
  .vt-red   { font-size: 1.5rem; }
  .vt-white { font-size: 1.3rem; }
  .about-video-card {
    aspect-ratio: 16 / 10;
  }
  .video-play-btn {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 54px;
    border-radius: 16px;
    background: var(--red);
    border: none;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    transition: transform .25s ease, background .25s ease;
  }
  .video-play-btn svg {
    width: 28px;
    height: 28px;
  }
  .about-video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

/* --- 5. Tighter mobile spacing: fill the screen, less dead space --- */
@media (max-width: 600px) {
  /* single, consistent side gutter (removes doubled section + wrap padding) */
  .section-wrap { padding: 0 1rem; }

  .about-feature-section { padding: 2.8rem 0; }
  .about-feature-grid    { gap: 2rem; }
  .serve-section         { padding: 0 0 2.8rem; }
  .steps-section         { padding: 2.8rem 1rem; }
  .reviews-section       { padding: 2.8rem 0; }
  .faq-section           { padding: 2.8rem 0; }
  .quote-section         { padding: 2.6rem 0 3.2rem; }
  .area-map-section      { padding-top: 2.4rem; }

  /* trim oversized heading gaps */
  .steps-h2      { margin-bottom: 2.2rem; }
  .about-heading { margin-bottom: 1rem; }
  .section-h2    { margin-bottom: 0.5rem; }
  .faq-title-main { margin-bottom: 1.8rem; }
}

/* --- 6. Hero light string: pull below the fixed mobile navbar so it's visible --- */
@media (max-width: 860px) {
  .hero-light-wire { top: 64px; z-index: 10001; }
  .hero-light-wire .wb { width: 15px; height: 20px; }
}

/* --- 7. Desktop: float the (now transparent) van so ~half overlaps the map --- */
@media (min-width: 901px) {
  .van-side-photo {
    position: absolute;
    left: 1.5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 640px;
    padding: 0;
    z-index: 6;
  }
  .van-map-fade-overlay {
    width: 40%;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 18%, rgba(255,255,255,0) 100%);
  }
  .van-img-transparent {
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
  }
}

/* =============================================
   INSTANT PRICING PAGE
   ============================================= */
.pricing-page {
  background: #eef1f6;
}

.pricing-page a:focus-visible,
.pricing-page button:focus-visible,
.pricing-page iframe:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.pricing-intro {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 35%, rgba(200, 16, 46, 0.17), transparent 27rem),
    linear-gradient(118deg, #070d1f 0%, #0d1835 64%, #101c38 100%);
}

.pricing-intro::after {
  content: '';
  position: absolute;
  right: -8rem;
  bottom: -15rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.025), 0 0 0 8rem rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.pricing-lights {
  position: absolute;
  top: 0;
  right: 4vw;
  width: min(41vw, 520px);
  height: 72px;
  border-top: 2px solid rgba(255, 255, 255, 0.22);
  transform: rotate(-4deg);
  transform-origin: right top;
}

.pricing-lights::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 7%;
  width: 12px;
  height: 18px;
  border-radius: 50% 50% 45% 45%;
  background: var(--gold);
  box-shadow:
    0 0 13px 4px rgba(240, 165, 0, 0.5),
    88px 7px 0 #22cc44,
    88px 7px 13px 4px rgba(34, 204, 68, 0.35),
    176px 10px 0 var(--red),
    176px 10px 13px 4px rgba(200, 16, 46, 0.45),
    264px 8px 0 #3aa0ff,
    264px 8px 13px 4px rgba(58, 160, 255, 0.4),
    352px 3px 0 var(--gold),
    352px 3px 13px 4px rgba(240, 165, 0, 0.45);
}

.pricing-intro-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 4rem;
  padding-top: clamp(4.2rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.pricing-copy {
  max-width: 770px;
}

.pricing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  color: #f6c75d;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38d870;
  box-shadow: 0 0 0 5px rgba(56, 216, 112, 0.14);
}

.pricing-copy h1 {
  max-width: 760px;
  margin-bottom: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.65rem, 6.2vw, 5.7rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.pricing-copy h1 span {
  color: #f6bd45;
}

.pricing-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1rem, 1.7vw, 1.17rem);
  line-height: 1.7;
}

.pricing-promise {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pricing-promise span {
  position: relative;
  padding: 1rem 0 1rem 1.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.88rem;
  font-weight: 700;
}

.pricing-promise span::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #38d870;
  font-weight: 900;
}

.calculator-section {
  position: relative;
  padding: 0 1.5rem clamp(4rem, 8vw, 7rem);
  background:
    linear-gradient(rgba(13, 21, 48, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 21, 48, 0.035) 1px, transparent 1px),
    #eef1f6;
  background-size: 32px 32px;
}

.calculator-shell {
  position: relative;
  z-index: 3;
  width: min(1280px, 100%);
  margin: -2rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(7, 13, 31, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 65px rgba(7, 13, 31, 0.16);
}

.calculator-shell::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 27%, var(--gold) 27% 54%, #22a84a 54% 78%, #2786d4 78%);
}

.calculator-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.55rem 2rem 1.35rem;
  border-bottom: 1px solid #e7eaf0;
}

.calculator-step {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calculator-topline h2 {
  margin: 0;
  color: var(--navy-2);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.calculator-topline p {
  color: #697386;
  font-size: 0.84rem;
}

.calculator-frame-wrap {
  width: 100%;
  height: clamp(760px, 78vw, 1050px);
  min-height: 760px;
  background: #ffffff;
}

.calculator-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.pricing-footer .footer-inner {
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
}

@media (max-width: 860px) {
  .pricing-intro {
    padding-top: 60px;
  }

  .pricing-intro-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-top: 4.3rem;
    padding-bottom: 4.8rem;
  }

  .pricing-lights {
    top: 60px;
    right: -10%;
    width: 82vw;
  }

  .pricing-promise {
    max-width: 560px;
  }

  .calculator-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .calculator-shell {
    margin-top: -1.5rem;
  }
}

@media (max-width: 600px) {
  .pricing-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
    line-height: 1;
  }

  .pricing-copy p {
    font-size: 0.98rem;
  }

  .calculator-section {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }

  .calculator-shell {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .calculator-topline {
    align-items: flex-start;
    padding: 1.25rem 1rem 1rem;
  }

  .calculator-topline p {
    display: none;
  }

  .calculator-frame-wrap {
    height: 920px;
    min-height: 920px;
  }

  .pricing-footer .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-page * {
    scroll-behavior: auto !important;
  }
}

/* --- HEADLESS AUTOBIDDER ESTIMATOR --- */
.headless-frame-wrap {
  height: auto;
  min-height: 620px;
  background: #f7f8fb;
}

.headless-estimator {
  min-height: 620px;
  color: #182039;
  font-family: 'Open Sans', sans-serif;
}

.ab-loading,
.ab-load-error {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.ab-loading {
  flex-direction: row;
}

.ab-loading strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--navy-2);
  font-family: 'Montserrat', sans-serif;
}

.ab-loading p,
.ab-load-error p {
  color: #6a7386;
}

.ab-loading-orb {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 3px solid #dfe3eb;
  border-top-color: var(--red);
  border-radius: 50%;
  animation: abSpin 0.8s linear infinite;
}

@keyframes abSpin {
  to { transform: rotate(360deg); }
}

.ab-progress {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid #e7eaf0;
  background: #fff;
}

.ab-progress-copy {
  color: #667085;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ab-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9ecf2;
}

.ab-progress-fill {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), #ef4057 55%, var(--gold));
  box-shadow: 0 0 15px rgba(200, 16, 46, 0.25);
  transition: width 0.45s ease;
}

.ab-live {
  min-height: 0;
  margin: 0;
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: #fff;
  color: #b42318;
  font-weight: 700;
  text-align: center;
}

.ab-live:not(:empty) {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #fecdca;
  background: #fff5f4;
}

.ab-stage {
  min-height: 540px;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 4.5rem) clamp(2.5rem, 6vw, 5rem);
}

.ab-stage-header {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.ab-stage-kicker {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ab-stage-header h3,
.ab-load-error h3 {
  margin-bottom: 0.7rem;
  color: var(--navy-2);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.ab-stage-header p {
  color: #687286;
  font-size: 1rem;
  line-height: 1.65;
}

.ab-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 960px;
  margin: 0 auto;
}

.ab-service-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.2rem;
  align-items: center;
  min-height: 210px;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid #dfe3eb;
  border-radius: 16px;
  background: #fff;
  color: var(--navy-2);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 9px 25px rgba(9, 19, 47, 0.07);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ab-service-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(var(--red), var(--gold));
}

.ab-service-card:hover,
.ab-service-card:focus-visible {
  border-color: rgba(200, 16, 46, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(9, 19, 47, 0.13);
}

.ab-service-card img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 14px;
  background: #f5f7fa;
}

.ab-service-copy {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ab-service-copy strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.13rem;
  font-weight: 900;
  line-height: 1.25;
}

.ab-service-copy > span {
  color: #687286;
  font-size: 0.86rem;
  line-height: 1.55;
}

.ab-service-arrow {
  grid-column: 2;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ab-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 940px;
  margin: 0 auto;
}

.ab-field {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid #e0e4ec;
  border-radius: 14px;
  background: #fff;
}

.ab-field-select,
.ab-field-multiple-choice,
.ab-field-image-choice,
.ab-field-repeatable_group {
  grid-column: 1 / -1;
}

.ab-field.has-error {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.1);
}

.ab-field-label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--navy-2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.35;
}

.ab-required {
  color: var(--red);
}

.ab-helper {
  margin: -0.35rem 0 0.85rem;
  color: #727b8e;
  font-size: 0.8rem;
  line-height: 1.5;
}

.ab-field > input,
.ab-child-field select,
.ab-contact-field input {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid #cfd5df;
  border-radius: 9px;
  background: #fff;
  color: #182039;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ab-field > input:focus,
.ab-child-field select:focus,
.ab-contact-field input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.ab-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.ab-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 68px;
  padding: 0.8rem;
  border: 1.5px solid #dfe3ea;
  border-radius: 10px;
  background: #fbfcfd;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.ab-option:hover {
  transform: translateY(-1px);
  border-color: #b9c0cd;
}

.ab-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ab-option-marker {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 2px solid #aeb6c5;
  border-radius: 6px;
  background: #fff;
}

.ab-option input[type='radio'] + .ab-option-marker {
  border-radius: 50%;
}

.ab-option:has(input:checked) {
  border-color: var(--red);
  background: #fff6f7;
}

.ab-option input:checked + .ab-option-marker {
  border-color: var(--red);
  background: var(--red);
  box-shadow: inset 0 0 0 4px #fff;
}

.ab-option-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ab-option-copy strong {
  color: #222b43;
  font-size: 0.84rem;
  line-height: 1.35;
}

.ab-option-copy small {
  margin-top: 0.2rem;
  color: #737c8f;
  font-size: 0.72rem;
}

.ab-repeat-item {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.9rem;
  padding: 1.1rem;
  border: 1px solid #e0e4ec;
  border-radius: 12px;
  background: #f8f9fb;
}

.ab-repeat-item legend {
  padding: 0 0.45rem;
  color: var(--red-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
}

.ab-child-field label,
.ab-contact-field label {
  display: block;
  margin-bottom: 0.45rem;
  color: #303950;
  font-size: 0.8rem;
  font-weight: 800;
}

.ab-actions,
.ab-result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  max-width: 940px;
  margin: 2rem auto 0;
}

.ab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.4rem;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ab-btn:hover:not(:disabled) {
  transform: translateY(-2px);
}

.ab-btn:disabled {
  cursor: wait;
  opacity: 0.65;
}

.ab-btn-primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.24);
}

.ab-btn-primary:hover:not(:disabled) {
  background: #e11235;
  box-shadow: 0 12px 25px rgba(200, 16, 46, 0.32);
}

.ab-btn-quiet {
  border-color: #cfd5df;
  background: #fff;
  color: #394259;
}

.ab-price-panel {
  position: relative;
  max-width: 760px;
  margin: 0 auto 2rem;
  padding: 1.7rem 2rem;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(115deg, #081027, #14234a);
  color: #fff;
  text-align: center;
  box-shadow: 0 15px 35px rgba(7, 13, 31, 0.2);
}

.ab-price-panel::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(var(--red), var(--gold));
}

.ab-price-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #f6c75d;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ab-price {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.ab-price-panel p {
  max-width: 570px;
  margin: 0.7rem auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.5;
}

.ab-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.ab-offers {
  max-width: 760px;
  margin: 0 auto 2rem;
}

.ab-offers h4,
.ab-booking h4 {
  margin-bottom: 0.8rem;
  color: var(--navy-2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

.ab-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.ab-offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  border: 1.5px solid #dfe3eb;
  border-radius: 10px;
  background: #fff;
  color: #273149;
}

.ab-offer-choice {
  position: relative;
  cursor: pointer;
}

.ab-offer-choice input {
  position: absolute;
  top: 1rem;
  right: 1rem;
  accent-color: var(--red);
}

.ab-offer-choice:has(input:checked) {
  border-color: var(--red);
  background: #fff7f8;
}

.ab-offer-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-right: 1.5rem;
}

.ab-offer-price {
  color: var(--red);
  font-weight: 900;
}

.ab-offer-card p,
.ab-offer-copy small {
  color: #6d7688;
  font-size: 0.75rem;
  line-height: 1.5;
}

.ab-contact-wide {
  grid-column: 1 / -1;
}

.ab-privacy,
.ab-disclaimer {
  max-width: 760px;
  margin: 1rem auto 0;
  color: #687286;
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

.ab-result {
  max-width: 880px;
  margin: 0 auto;
}

.ab-breakdown {
  max-width: 620px;
  margin: 0 auto;
  border-top: 1px solid #e0e4eb;
  border-bottom: 1px solid #e0e4eb;
}

.ab-breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  color: #687286;
  font-size: 0.86rem;
}

.ab-breakdown-row strong {
  color: #252e45;
}

.ab-booking {
  max-width: 760px;
  margin: 1.4rem auto 0;
  text-align: center;
}

.ab-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.ab-slot {
  min-height: 48px;
  padding: 0.75rem;
  border: 1.5px solid #d4d9e3;
  border-radius: 8px;
  background: #fff;
  color: #26314a;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ab-slot:hover:not(:disabled) {
  border-color: var(--red);
  background: #fff7f8;
}

.ab-booking-error {
  margin-top: 0.75rem;
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 700;
}

.ab-booking-success {
  display: block;
  padding: 1rem;
  border: 1px solid #a6f4c5;
  border-radius: 9px;
  background: #ecfdf3;
  color: #027a48;
  line-height: 1.5;
}

.ab-noscript {
  padding: 2rem;
  color: #4b5565;
  text-align: center;
}

.ab-noscript a {
  color: var(--red);
  font-weight: 800;
}

.autobidder-form-status {
  width: 100%;
  margin-top: 0.7rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.autobidder-form-status.is-error { color: #ffe1e5; }
.autobidder-form-status.is-success { color: #dcffe7; }

@media (max-width: 760px) {
  .ab-stage { padding-right: 1rem; padding-left: 1rem; }
  .ab-service-grid,
  .ab-fields,
  .ab-contact-grid,
  .ab-offer-grid,
  .ab-slot-grid { grid-template-columns: 1fr; }
  .ab-service-card { min-height: 170px; }
  .ab-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ab-contact-wide { grid-column: auto; }
  .ab-repeat-item { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ab-progress { grid-template-columns: 1fr; gap: 0.55rem; }
  .ab-stage { padding-top: 2rem; }
  .ab-service-card { grid-template-columns: 60px 1fr; padding: 1rem; }
  .ab-service-card img { width: 58px; height: 58px; }
  .ab-service-arrow { grid-column: 2; }
  .ab-options { grid-template-columns: 1fr; }
  .ab-actions,
  .ab-result-actions { flex-direction: column-reverse; }
  .ab-btn { width: 100%; }
  .ab-price-panel { padding-right: 1rem; padding-left: 1rem; border-radius: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .ab-loading-orb { animation: none; }
  .ab-progress-fill,
  .ab-service-card,
  .ab-option,
  .ab-btn { transition: none; }
}

/* =============================================
   HOMEPAGE QUICK ROUGH ESTIMATE
   ============================================= */
.rough-estimate-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    linear-gradient(rgba(10, 22, 50, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 22, 50, 0.035) 1px, transparent 1px),
    #f0f3f8;
  background-size: 34px 34px;
}

.rough-estimate-section::before {
  content: '';
  position: absolute;
  top: -230px;
  left: -170px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(200, 16, 46, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(200, 16, 46, 0.025), 0 0 0 110px rgba(13, 21, 48, 0.02);
  pointer-events: none;
}

.rough-estimate-wrap {
  position: relative;
  z-index: 2;
}

.rough-estimate-heading {
  max-width: 780px;
  margin: 0 auto 2.3rem;
  text-align: center;
}

.rough-estimate-kicker {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rough-estimate-heading h2 {
  margin-bottom: 0.8rem;
  color: var(--navy-2);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.rough-estimate-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: #687286;
  font-size: 1rem;
  line-height: 1.7;
}

.rough-estimate-board {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(13, 21, 48, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(13, 21, 48, 0.16);
}

.rough-estimate-form {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.rough-slider-group {
  position: relative;
  margin-bottom: 2rem;
  padding: 1.25rem 1.25rem 1rem;
  border: 1px solid #e1e5ed;
  border-radius: 14px;
  background: #f9fafc;
}

.rough-control-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rough-control-heading label,
.rough-select-group label,
.rough-extras legend {
  color: var(--navy-2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
}

.rough-control-heading output {
  min-width: 78px;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: var(--navy-2);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.rough-slider-group input[type='range'] {
  --rough-progress: 28.5%;
  width: 100%;
  height: 28px;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}

.rough-slider-group input[type='range']::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red) 0 var(--rough-progress), #dfe4ed var(--rough-progress) 100%);
  box-shadow: inset 0 1px 2px rgba(7, 13, 31, 0.16);
}

.rough-slider-group input[type='range']::-moz-range-track {
  height: 8px;
  border-radius: 99px;
  background: #dfe4ed;
}

.rough-slider-group input[type='range']::-moz-range-progress {
  height: 8px;
  border-radius: 99px;
  background: var(--red);
}

.rough-slider-group input[type='range']::-webkit-slider-thumb {
  width: 24px;
  height: 30px;
  margin-top: -11px;
  appearance: none;
  -webkit-appearance: none;
  border: 4px solid #fff;
  border-radius: 50% 50% 45% 45%;
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--red-dark), 0 0 17px 5px rgba(240, 165, 0, 0.35);
}

.rough-slider-group input[type='range']::-moz-range-thumb {
  width: 22px;
  height: 27px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--red-dark), 0 0 17px 5px rgba(240, 165, 0, 0.35);
}

.rough-slider-group input[type='range']:focus-visible {
  outline: 3px solid rgba(200, 16, 46, 0.28);
  outline-offset: 4px;
}

.rough-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.1rem;
  color: #848c9d;
  font-size: 0.7rem;
  font-weight: 700;
}

.rough-select-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.rough-select-group {
  min-width: 0;
}

.rough-select-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.76rem;
}

.rough-select-group select,
.rough-select-group input {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.8rem;
  border: 1.5px solid #d2d8e2;
  border-radius: 9px;
  background: #fff;
  color: #263149;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.86rem;
  outline: none;
}

.rough-select-group select:focus,
.rough-select-group input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.11);
}

.rough-select-group select:disabled {
  background: #f2f4f7;
  color: #8a92a2;
}

.rough-extras {
  margin: 0;
  padding: 0;
  border: 0;
}

.rough-extras legend {
  margin-bottom: 0.65rem;
}

.rough-toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.rough-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 74px;
  padding: 0.9rem;
  border: 1.5px solid #dde2ea;
  border-radius: 11px;
  background: #fbfcfd;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.rough-toggle:has(input:checked) {
  border-color: var(--red);
  background: #fff7f8;
}

.rough-toggle input {
  position: absolute;
  opacity: 0;
}

.rough-toggle-switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #cdd3dd;
  transition: background 0.2s ease;
}

.rough-toggle-switch::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(7, 13, 31, 0.25);
  transition: transform 0.2s ease;
}

.rough-toggle input:checked + .rough-toggle-switch {
  background: var(--red);
}

.rough-toggle input:checked + .rough-toggle-switch::after {
  transform: translateX(18px);
}

.rough-toggle input:focus-visible + .rough-toggle-switch {
  outline: 3px solid rgba(200, 16, 46, 0.2);
  outline-offset: 3px;
}

.rough-toggle > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.rough-toggle strong {
  color: #263149;
  font-size: 0.82rem;
}

.rough-toggle small {
  color: #788194;
  font-size: 0.7rem;
  line-height: 1.35;
}

.rough-extra-details {
  margin-top: 0.8rem;
}

.rough-extra-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 0.9rem;
  border: 1px dashed #cdd3de;
  border-radius: 10px;
  background: #f8f9fb;
}

.rough-extra-panel[hidden] {
  display: none;
}

.rough-estimate-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 1.3rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 9px 22px rgba(200, 16, 46, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rough-estimate-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(200, 16, 46, 0.34);
}

.rough-estimate-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.rough-estimate-status {
  min-height: 1.25rem;
  margin-top: 0.65rem;
  color: #697386;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.rough-estimate-status.is-error {
  color: #b42318;
}

.rough-result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2.6rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(200, 16, 46, 0.19), transparent 17rem),
    var(--navy-2);
  color: #fff;
  text-align: center;
}

.rough-result::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 0 76px rgba(255, 255, 255, 0.018);
}

.rough-result > * {
  position: relative;
  z-index: 2;
}

.rough-result-eyebrow {
  margin-bottom: 0.8rem;
  color: #f6c75d;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rough-result-price {
  margin-bottom: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.15rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.rough-result.is-ready .rough-result-price {
  color: #fff;
  text-shadow: 0 0 28px rgba(240, 165, 0, 0.18);
}

.rough-result p {
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  line-height: 1.6;
}

.rough-accurate-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 50px;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.rough-accurate-link:hover {
  background: #fff;
  color: var(--navy-2);
}

.rough-result small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.67rem;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .rough-estimate-board {
    grid-template-columns: 1fr;
  }

  .rough-result {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .rough-estimate-section {
    padding: 3.5rem 0;
  }

  .rough-estimate-board {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .rough-estimate-wrap {
    padding-right: 0;
    padding-left: 0;
  }

  .rough-estimate-heading {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .rough-estimate-form {
    padding: 1.2rem 1rem 1.6rem;
  }

  .rough-select-grid,
  .rough-toggle-grid,
  .rough-extra-panel {
    grid-template-columns: 1fr;
  }

  .rough-slider-group {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rough-toggle,
  .rough-toggle-switch,
  .rough-toggle-switch::after,
  .rough-estimate-submit,
  .rough-accurate-link {
    transition: none;
  }
}

/* Interactive estimator cascade lock — keep the redesigned planner above legacy rules. */
.rough-estimate-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(200, 16, 46, 0.07), transparent 24rem),
    radial-gradient(circle at 90% 82%, rgba(255, 201, 74, 0.12), transparent 28rem),
    #f3f6fa;
}

.rough-estimate-section::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background-image: radial-gradient(rgba(16, 26, 50, 0.09) 0.75px, transparent 0.75px);
  background-size: 20px 20px;
  box-shadow: none;
  opacity: 0.34;
}

.rough-estimate-heading {
  max-width: 850px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.rough-estimate-heading h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.rough-estimate-board {
  grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.88fr);
  width: min(1180px, 100%);
  border: 1px solid rgba(16, 26, 50, 0.08);
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(16, 26, 50, 0.03), 0 28px 80px rgba(16, 26, 50, 0.16);
}

.rough-estimate-form {
  padding: clamp(1.6rem, 4vw, 3.25rem);
}

.rough-slider-group {
  margin-bottom: 0;
  padding: 1.35rem 1.4rem 1.1rem;
  border: 1px solid #dce2eb;
  border-radius: 16px;
  background: #f5f7fb;
}

.rough-control-heading output {
  min-width: 112px;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(200, 16, 46, 0.15);
  background: #fff;
  color: var(--red);
  font-size: 0.74rem;
  box-shadow: 0 5px 14px rgba(16, 26, 50, 0.07);
}

.rough-select-grid {
  gap: 0.7rem;
  margin-bottom: 1.65rem;
}

.rough-select-group select,
.rough-select-group input {
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  border: 1px solid #dce2eb;
  border-radius: 11px;
  color: #101a32;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(16, 26, 50, 0.04);
}

.rough-toggle {
  min-height: 82px;
  padding: 1rem;
  border: 1px solid #dce2eb;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(16, 26, 50, 0.04);
}

.rough-toggle:has(input:checked) {
  border-color: rgba(200, 16, 46, 0.55);
  background: #fff7f8;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.06);
}

.rough-extra-panel {
  margin-top: 0.7rem;
  padding: 1rem;
  border: 1px solid #ead3d7;
  border-radius: 13px;
  background: #fff9fa;
}

.rough-estimate-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 28px;
  margin: 1.25rem 0 -0.45rem;
  color: #4d6d5a;
  font-size: 0.7rem;
  text-align: left;
}

.rough-result {
  align-items: stretch;
  justify-content: flex-start;
  min-height: 0;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  background:
    radial-gradient(circle at 50% 27%, rgba(75, 104, 171, 0.2), transparent 16rem),
    linear-gradient(155deg, #111d38 0%, #081126 72%, #070d1e 100%);
  text-align: left;
}

.rough-result::before {
  top: auto;
  right: auto;
  bottom: -150px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.015), 0 0 0 110px rgba(255, 255, 255, 0.01);
}

.rough-result-eyebrow {
  margin-bottom: 0.58rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
}

.rough-result-price {
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: clamp(2.05rem, 4vw, 3.65rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.rough-result p {
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.77rem;
  line-height: 1.55;
}

.rough-accurate-link {
  min-height: 52px;
  margin-bottom: 0.9rem;
  border: 0;
  border-radius: 11px;
  background: var(--red);
  box-shadow: 0 11px 25px rgba(200, 16, 46, 0.28);
  font-size: 0.72rem;
}

.rough-accurate-link:hover {
  background: #e21a3b;
  color: #fff;
}

.rough-result .rough-disclaimer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 920px) {
  .rough-estimate-board {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
  }

  .rough-result {
    min-height: 510px;
  }
}

@media (max-width: 620px) {
  .rough-estimate-section { padding: 4rem 0; }
  .rough-estimate-wrap { padding-right: 14px; padding-left: 14px; }
  .rough-estimate-heading { padding-right: 0; padding-left: 0; }
  .rough-estimate-heading h2 { font-size: clamp(2.25rem, 12vw, 3.25rem); }
  .rough-estimate-board {
    border-right: 1px solid rgba(16, 26, 50, 0.08);
    border-left: 1px solid rgba(16, 26, 50, 0.08);
    border-radius: 22px;
  }
  .rough-estimate-form { padding: 1.35rem 1rem 1.4rem; }
  .rough-slider-group { padding: 1.15rem 1rem 0.95rem; }
  .rough-result { min-height: 500px; padding: 1.35rem; }
}

.rough-estimate-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
  padding: 0.44rem 0.72rem;
  border: 1px solid rgba(200, 16, 46, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  letter-spacing: 0.11em;
}

.rough-house-scene {
  height: 106px;
  margin: 2rem 0 0.8rem;
}

.rough-house-scene svg {
  display: none;
}

.rough-bulb-string {
  position: absolute;
  top: 36px;
  right: 3%;
  left: 3%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 42px;
}

.rough-bulb-string::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.rough-bulb-string i {
  position: relative;
  top: -1px;
  width: 7px;
  height: 11px;
  border-radius: 3px 3px 6px 6px;
  background: #ffc94a;
  box-shadow: 0 0 6px 2px rgba(255, 201, 74, 0.72), 0 0 14px rgba(255, 201, 74, 0.4);
}

.rough-bulb-string i:nth-child(2),
.rough-bulb-string i:nth-child(8) { transform: translateY(7px); }
.rough-bulb-string i:nth-child(3),
.rough-bulb-string i:nth-child(7) { transform: translateY(12px); }
.rough-bulb-string i:nth-child(4),
.rough-bulb-string i:nth-child(6) { transform: translateY(16px); }
.rough-bulb-string i:nth-child(5) { transform: translateY(18px); }

.rough-result.is-loading .rough-bulb-string i {
  animation: rough-bulb-pulse 0.9s ease-in-out infinite alternate;
}

.rough-result.is-loading .rough-bulb-string i:nth-child(even) {
  animation-delay: 0.18s;
}

@keyframes rough-bulb-pulse {
  to { opacity: 0.38; box-shadow: 0 0 3px rgba(255, 201, 74, 0.4); }
}

@media (max-width: 620px) {
  .rough-house-scene {
    height: 92px;
    margin-top: 2.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rough-result.is-loading .rough-bulb-string i { animation: none; }
}
