/* =============================================
   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 {
  flex-shrink: 0;
}
.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.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.bl-white {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.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 {
    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;
  }
}

/* --- 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));
  }
}
