/* =========================================================================
   Guthrie Gutters | Military theme (subtle red / white / navy blue)
   Single source of truth for brand tokens. Change palette here only.
   ========================================================================= */
:root {
  /* Palette */
  --navy:      #1B2A4A;   /* primary brand background */
  --navy-dk:   #101A30;   /* deeper navy (footer/overlays) */
  --navy-2:    #24365C;   /* raised navy panels */
  --red:       #B22234;   /* Old Glory red accent */
  --red-dk:    #8E1B29;
  --drop:      #0087CB;   /* brand droplet blue */
  --drop-lt:   #2BA3E0;
  --white:     #ffffff;
  --cream:     #F7F9FC;   /* page background */
  --panel:     #ffffff;   /* card surfaces */
  --text:      #1d2733;   /* body text on light */
  --muted:     #5b6b7d;   /* secondary text */
  --line:      #e3e9f1;   /* hairline borders */
  --star:      #E8A91D;   /* review stars */

  /* alternating dark section backgrounds (cards stay light) */
  --sec-a:     #1B2A4A;   /* navy */
  --sec-b:     #15233d;   /* deeper navy */
  --on-dark:   #c6d4e8;   /* body text on dark sections */
  --on-dark-2: #aebfd6;   /* secondary text on dark */

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(16,26,48,.06);
  --shadow:    0 10px 30px rgba(16,26,48,.10);
  --shadow-lg: 0 20px 50px rgba(16,26,48,.16);
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ----------------------------- Reset / base ----------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 84px;
  scrollbar-color: var(--drop) var(--navy-dk); scrollbar-width: thin; }
body {
  margin: 0; font-family: var(--font-body); color: var(--text);
  background: var(--cream); line-height: 1.65; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--drop); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600;
  line-height: 1.1; color: var(--navy); letter-spacing: .3px; margin: 0 0 .5em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); text-transform: uppercase; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { padding: 84px 0; }

/* Themed selection */
::selection { background: var(--red); color: #fff; }
::-moz-selection { background: var(--red); color: #fff; }

/* Custom scrollbar (WebKit) */
::-webkit-scrollbar { width: 12px; height: 0; }
::-webkit-scrollbar-track { background: var(--navy-dk); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--drop), var(--drop-lt));
  border-radius: 10px; border: 3px solid var(--navy-dk);
}
::-webkit-scrollbar-thumb:hover { background: var(--drop-lt); }

/* Visible keyboard focus */
:focus-visible {
  outline: 3px solid var(--drop); outline-offset: 3px; border-radius: 4px;
}

/* ----------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .6px; font-size: .95rem;
  padding: 14px 26px; border-radius: var(--radius-sm); cursor: pointer;
  border: 2px solid transparent; transition: transform .25s var(--ease),
    box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

/* ----------------------------- Header ----------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  background: transparent; padding: 8px 0;
}
.site-header.scrolled {
  background: var(--navy); box-shadow: 0 6px 22px rgba(16,26,48,.28); padding: 2px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand img { width: 46px; height: 46px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.25); border: 2px solid rgba(255,255,255,.7); }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem;
  text-transform: uppercase; letter-spacing: .5px; line-height: 1; color: #fff; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500;
  font-size: .64rem; letter-spacing: 2px; color: var(--drop-lt); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: #eaf1fa; font-weight: 600; font-size: .96rem; position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: 1.05rem; display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap; line-height: 1; }
.nav-phone svg { flex: none; display: block; }
.nav-phone .lbl { font-feature-settings: "tnum"; letter-spacing: .5px; }
.nav-phone:hover { color: var(--drop-lt); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  z-index: 1100; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle span + span { margin-top: 5px; }

/* ----------------------------- Hero ------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; padding-top: 120px; padding-bottom: 64px; overflow: hidden;
  background:
    linear-gradient(rgba(10,12,16,.55), rgba(10,12,16,.55)),
    url("../images/hero-banner.jpg") center 35%/cover no-repeat,
    var(--navy-dk);
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 3.5px; font-size: .82rem; color: var(--drop-lt);
  margin-bottom: 24px;
}
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); text-transform: uppercase;
  margin-bottom: .25em; max-width: 14ch;
}
.hero h1 .accent { color: var(--drop-lt); }
.hero-tag { font-family: var(--font-display); font-size: clamp(1.05rem,2.2vw,1.4rem);
  letter-spacing: 4px; color: rgba(255,255,255,.78); text-transform: uppercase; font-weight: 500; }
.hero-sub { font-size: 1.12rem; color: #d6e0ee; max-width: 56ch; margin: 18px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; }
.hero-badge { display: flex; align-items: center; gap: 10px; color: #cfe0f1; font-size: .95rem; }
.hero-badge strong { font-family: var(--font-display); font-size: 1.4rem; color: #fff; }
.hero-badge .stars { color: var(--star); letter-spacing: 2px; }
/* Scroll cue (shown on mobile) */
.hero-scroll {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: 9px; z-index: 3;
  color: rgba(255,255,255,.6); font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 3px; font-size: .68rem;
}
.hero-scroll:hover { color: #fff; }
.hero-scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--drop-lt), transparent);
  transform-origin: top; animation: heroScroll 1.8s ease-in-out infinite; }
@keyframes heroScroll {
  0%, 100% { opacity: .3; transform: scaleY(.55); }
  50%      { opacity: 1;  transform: scaleY(1); }
}

/* ----------------------------- Trust strip ------------------------------ */
.trust { background: var(--navy); color: #fff; padding: 0; }
.trust .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 44px;
  padding-top: 22px; padding-bottom: 22px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .98rem;
  color: #e7eefa; }
.trust-item svg { width: 22px; height: 22px; color: var(--drop-lt); flex: none; }

/* ----------------------------- Section heads ---------------------------- */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.sec-kicker { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 3px;
  font-size: .82rem; color: var(--red); font-weight: 600; margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 10px; }
.sec-kicker::before, .sec-kicker::after { content: ""; width: 26px; height: 2px; background: var(--red); }
.sec-head p { color: var(--muted); font-size: 1.06rem; }

/* ----------------------------- About ------------------------------------ */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.about-card {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.about-card::before { content:""; position:absolute; inset:0 0 auto 0; height:6px;
  background: linear-gradient(90deg, var(--red), var(--drop)); }
.about-card h3 { color: #fff; font-size: 1.5rem; }
.about-card .stat-row { display: flex; gap: 30px; margin-top: 24px; flex-wrap: wrap; }
.about-card .stat strong { font-family: var(--font-display); font-size: 2.1rem; color: var(--drop-lt);
  display: block; line-height: 1; }
.about-card .stat span { font-size: .86rem; color: #c5d3e6; letter-spacing: .5px; }
.about h2 .accent { color: var(--red); }
.about ul.checks { list-style: none; padding: 0; margin: 22px 0 28px; }
.about ul.checks li { position: relative; padding-left: 34px; margin-bottom: 12px; color: var(--text); }
.about ul.checks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--drop);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* ----------------------------- Services --------------------------------- */
.services { background: var(--sec-a); color: var(--on-dark); }
/* Expandable service columns (accordion) */
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px;
  max-width: 960px; margin: 0 auto; align-items: start; }
.svc-col { display: flex; flex-direction: column; gap: 14px; }
.svc-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.svc-item.open { border-color: #cdd9e8; box-shadow: var(--shadow); }
.svc-head {
  width: 100%; display: flex; align-items: center; gap: 14px; padding: 17px 18px;
  background: none; border: 0; cursor: pointer; text-align: left; font: inherit;
}
.svc-no { font-family: var(--font-display); color: var(--drop); font-weight: 600;
  font-size: 1rem; width: 26px; flex: none; }
.svc-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy);
  flex: 1; letter-spacing: .3px; transition: color .2s var(--ease); }
.svc-head:hover .svc-title, .svc-head:focus-visible .svc-title { color: var(--drop); }
.svc-chev { width: 26px; height: 26px; border-radius: 50%; flex: none; display: grid;
  place-items: center; background: var(--cream); color: var(--navy);
  transition: transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease); }
.svc-chev svg { width: 15px; height: 15px; }
.svc-item.open .svc-chev { transform: rotate(180deg); background: var(--red); color: #fff; }
.svc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.svc-item.open .svc-panel { grid-template-rows: 1fr; }
.svc-panel > div { overflow: hidden; }
.svc-panel p { margin: 0; padding: 0 18px 18px 58px; color: var(--muted); font-size: .96rem; line-height: 1.6; }

/* Condensed "Guthrie Difference" strip inside the services section */
.svc-highlights {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 24px;
  max-width: 960px; margin: 44px auto 0; padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.svc-hl { display: flex; align-items: flex-start; gap: 12px; }
.svc-hl-no { font-family: var(--font-display); font-weight: 600; color: var(--red);
  font-size: 1.35rem; line-height: 1; flex: none; }
.svc-hl strong { display: block; color: #fff; font-family: var(--font-display);
  font-size: 1rem; letter-spacing: .3px; margin-bottom: 3px; }
.svc-hl span { color: var(--on-dark-2); font-size: .88rem; line-height: 1.45; }

/* Contact CTA panel (replaces the inline form — button opens the quote modal) */
.contact-cta {
  background: linear-gradient(135deg, #21345a, #19294a);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 46px 34px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
}
.contact-cta h3 { color: #fff; font-size: 1.7rem; margin: 0; }
.contact-cta p { color: var(--on-dark); margin: 0; max-width: 42ch; }
.contact-cta .btn { width: 100%; max-width: 340px; justify-content: center; }
.contact-cta-or { font-size: .9rem; color: var(--on-dark-2); margin-top: 6px; }
.contact-cta-or a { color: var(--drop-lt); font-weight: 600; word-break: break-word; }

/* ----------------------------- Why / features --------------------------- */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-item { text-align: center; padding: 28px 18px; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.why-item .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--red); line-height: 1; }
.why-item h3 { font-size: 1.1rem; margin: 12px 0 8px; }
.why-item p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ----------------------------- Gallery ---------------------------------- */
.gallery { background: var(--cream); }
.slideshow {
  position: relative; max-width: 980px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: var(--navy); isolation: isolate;
}
.slides { position: relative; width: 100%; aspect-ratio: 16 / 10; background: var(--navy-dk); }
.slide {
  position: absolute; inset: 0; margin: 0; padding: 0; border: 0; cursor: pointer; overflow: hidden;
  display: flex; align-items: center; justify-content: center; line-height: 0;
  background: var(--navy-dk); opacity: 0; pointer-events: none;
  transition: opacity .6s var(--ease);
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
  transition: transform .5s var(--ease);
}
.slide:hover img, .slide:focus-visible img { transform: scale(1.03); }
.slide .zoom {
  position: absolute; right: 16px; bottom: 16px; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(178,34,52,.92); color: #fff;
  opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease); z-index: 3;
}
.slide:hover .zoom, .slide:focus-visible .zoom { opacity: 1; transform: none; }
.slide .zoom svg { width: 18px; height: 18px; }
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  background: rgba(16,26,48,.55); border: 1px solid rgba(255,255,255,.25); color: #fff;
  display: grid; place-items: center; transition: background .2s var(--ease), transform .2s var(--ease);
}
.slide-arrow svg { width: 26px; height: 26px; }
.slide-arrow.prev { left: 16px; }
.slide-arrow.next { right: 16px; }
.slide-arrow.prev:hover, .slide-arrow.next:hover { background: var(--red); transform: translateY(-50%) scale(1.06); }
.slide-count {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 4;
  color: #eaf1fa; font-family: var(--font-display); letter-spacing: 1px; font-size: .92rem;
  background: rgba(16,26,48,.6); padding: 5px 16px; border-radius: 30px;
}
.slide-hint { text-align: center; color: var(--muted); margin-top: 18px; font-size: .95rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: none;
  background: rgba(10,16,30,.94); align-items: center; justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
body.lb-open { overflow: hidden; }
.lightbox img {
  max-width: 100%; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lb-btn {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: grid;
  place-items: center; transition: background .2s var(--ease), transform .2s var(--ease);
}
.lb-btn:hover { background: var(--red); transform: scale(1.06); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 20px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-count {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: #cfe0f1; font-family: var(--font-display); letter-spacing: 1px; font-size: .95rem;
  background: rgba(0,0,0,.35); padding: 6px 16px; border-radius: 30px;
}
@media (max-width: 760px) {
  .slides { aspect-ratio: 4 / 3; }
  .slide-arrow { width: 44px; height: 44px; }
  .slide-arrow.prev { left: 10px; } .slide-arrow.next { right: 10px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { width: 44px; height: 44px; }
}

/* ----------------------------- Reviews ---------------------------------- */
.reviews { background: var(--sec-b); color: #fff; position: relative; }
.reviews .sec-head h2 { color: #fff; }
.reviews .sec-head p { color: #c2d2e6; }
.reviews .sec-kicker { color: var(--drop-lt); }
.reviews .sec-kicker::before, .reviews .sec-kicker::after { background: var(--drop-lt); }
.review-summary { display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: -28px 0 40px; flex-wrap: wrap; }
.review-summary .big { font-family: var(--font-display); font-size: 2.4rem; color: #fff; }
.review-summary .stars { color: var(--star); font-size: 1.3rem; letter-spacing: 3px; }
.review-summary .who { color: #b9c9de; }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: #fff; color: var(--text); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px;
}
.review .stars { color: var(--star); letter-spacing: 2px; font-size: 1.05rem; }
.review p { font-size: .98rem; color: #34424f; margin: 0; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.review .avatar { width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600;
  color: #fff; background: linear-gradient(135deg, var(--drop), var(--navy)); }
.review .who strong { display: block; color: var(--navy); font-size: .98rem; }
.review .who span { color: var(--muted); font-size: .82rem; }
.review .gsrc { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--muted); }
.reviews-cta { text-align: center; margin-top: 40px; }
/* Mobile: hide reviews behind a dropdown toggle (declutter). Hidden on desktop. */
.reviews-toggle { display: none; }
.reviews-toggle .rt-chev { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.reviews.reviews-open .reviews-toggle .rt-chev { transform: rotate(180deg); }

/* ----------------------------- Service area ----------------------------- */
.area { background: #fff; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.area .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.area .chips span { background: var(--cream); border: 1px solid var(--line); color: var(--navy);
  padding: 8px 16px; border-radius: 30px; font-weight: 600; font-size: .9rem; }
/* Neon Texas radar card */
.area-map {
  position: relative; min-height: 460px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(43,163,224,.18); box-shadow: var(--shadow); isolation: isolate;
  display: grid; place-items: center; padding: 44px 36px; text-align: center;
  background: radial-gradient(ellipse 75% 60% at 50% 42%, #1c2e52 0%, var(--navy-dk) 72%);
}
.av-ring {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid rgba(43,163,224,.10); pointer-events: none; z-index: 1;
}
.av-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.av-badge {
  font-family: var(--font-display); font-size: .8rem; color: var(--drop-lt);
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px;
}
.neon-texas {
  width: 230px; height: auto; margin-bottom: 22px;
  filter: drop-shadow(0 0 4px rgba(43,163,224,.6)) drop-shadow(0 0 12px rgba(43,163,224,.35))
          drop-shadow(0 0 28px rgba(43,163,224,.18));
}
.neon-texas .tx-outline { fill: none; stroke: var(--drop-lt); stroke-width: 6; stroke-linejoin: round; stroke-linecap: round; }
.neon-texas .tx-marker { fill: var(--drop-lt); filter: drop-shadow(0 0 5px rgba(43,163,224,.9)); animation: txMarker 2s ease-in-out infinite; }
.neon-texas .tx-marker-pulse { fill: none; stroke: var(--drop-lt); stroke-width: 6; opacity: 0; transform-origin: 720px 760px; animation: txPulseRing 2.4s ease-out infinite; }
@keyframes txMarker { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
@keyframes txPulseRing { 0% { opacity: .8; transform: scale(.4); } 100% { opacity: 0; transform: scale(2.6); } }
.area-map h3 { color: #fff; font-size: 1.7rem; margin-bottom: 10px; }
.area-map p { color: #c2d2e6; font-size: 1rem; max-width: 340px; margin: 0 auto 22px; }
@media (max-width: 600px) { .neon-texas { width: 170px; } .area-map { min-height: 400px; } }

/* ----------------------------- Contact ---------------------------------- */
.contact { background: var(--sec-b); color: var(--on-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 38px;
  box-shadow: var(--shadow); position: relative; overflow: hidden; isolation: isolate; }
/* Prominent faded American flag backdrop (military theme) */
.contact-info::before {
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  /* nudged up slightly (anchored bottom, +12% height) so the top stripe is cropped off */
  background: url("../images/flag-bg.jpg") center bottom / auto 112% no-repeat;
  opacity: 0.6;
}
.contact-info::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(27,42,74,.35) 0%, rgba(16,26,48,.55) 100%);
}
.contact-info > * { position: relative; z-index: 1; }
/* Military / veteran discount callout */
.mil-discount {
  background: rgba(178,34,52,.22); border: 1px solid rgba(178,34,52,.6);
  border-left: 4px solid var(--red); border-radius: 10px;
  padding: 15px 18px; margin: 0 0 20px; backdrop-filter: blur(2px);
}
.mil-top { display: flex; align-items: center; gap: 11px; margin-bottom: 7px; }
.mil-discount svg { width: 26px; height: 26px; flex: none; color: #fff; }
.mil-discount strong {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .6px; color: #fff; font-size: 1.02rem; line-height: 1.15;
}
.mil-discount p { margin: 0; font-size: .92rem; color: #e7eefa; line-height: 1.55; }
.contact-info h3 { color: #fff; }
.contact-info .row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info .row:last-child { border-bottom: 0; }
.contact-info .row svg { width: 24px; height: 24px; color: var(--drop-lt); flex: none; margin-top: 2px; }
.contact-info .row a { color: #fff; font-weight: 600; }
.contact-info .row a:hover { color: var(--drop-lt); }
.contact-info .row span.label { display:block; font-size:.78rem; letter-spacing:1.5px; text-transform:uppercase; color: var(--drop-lt); margin-bottom:2px; }
.pay { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.pay span { background: rgba(255,255,255,.1); padding: 4px 12px; border-radius: 6px; font-size: .82rem; }

form.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-sm); }
form.quote h3 { margin-bottom: 6px; }
form.quote p.fine { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 6px; }
.field label span { color: var(--red); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--text); background: #fcfdff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--drop); box-shadow: 0 0 0 3px rgba(0,135,203,.15);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 12px; }
.form-status { margin-top: 14px; font-weight: 600; display: none; }
.form-status.ok { display: block; color: #1c7c43; }

/* ----------------------------- Footer ----------------------------------- */
.site-footer { background: var(--navy-dk); color: #c6d3e6; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; text-transform: uppercase; font-size: 1rem; letter-spacing: 1px; margin-bottom: 16px; }
.site-footer a { color: #c6d3e6; }
.site-footer a:hover { color: var(--drop-lt); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 50px; height: 50px; border-radius: 50%; background: #fff; border: 2px solid rgba(255,255,255,.6); }
.footer-brand .brand-name { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .88rem; color: #93a6bf; }
.footer-bottom .powered-by a { color: var(--drop-lt); font-weight: 600; }
.footer-bottom .powered-by a:hover { color: #fff; text-decoration: underline; }
.footer-bottom .flag { display: inline-flex; gap: 4px; align-items: center; }
.footer-bottom .flag i { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }

/* ----------------------------- Reveal animation ------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ----------------------------- Responsive ------------------------------- */
@media (max-width: 960px) {
  .about-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards, .review-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Drawer-only elements hidden on desktop */
.drawer-head, .drawer-cta { display: none; }

@media (max-width: 860px) {
  section { padding: 60px 0; }
  .nav-phone, .nav-cta .js-quote { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 1300; }
  /* slim header on mobile */
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 1.12rem; }
  .brand-name small { font-size: .58rem; letter-spacing: 1.5px; }

  /* full-screen slide-in menu (from the right) */
  .nav-links {
    display: flex; position: fixed; inset: 0; width: 100%; height: 100svh;
    background: var(--navy);
    flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    padding: 92px 28px 40px; z-index: 1200;
    transform: translateX(100%); transition: transform .42s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { list-style: none; width: 100%; max-width: 360px; text-align: center; }
  .nav-links a {
    display: block; color: #eaf1fa; font-family: var(--font-display); text-transform: uppercase;
    letter-spacing: 1.5px; font-size: 1.5rem; padding: 15px 4px;
  }
  .nav-links a::after { display: none; }
  .nav-links a:active, .nav-links a:hover { color: var(--drop-lt); }

  .drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    position: absolute; top: 20px; left: 24px; right: 22px; max-width: none;
  }
  .drawer-head span { font-family: var(--font-display); text-transform: uppercase;
    letter-spacing: 2px; font-size: .82rem; color: var(--drop-lt); }
  .drawer-close { background: none; border: 0; color: #fff; cursor: pointer; padding: 6px;
    border-radius: 8px; line-height: 0; }
  .drawer-close svg { width: 30px; height: 30px; }
  .drawer-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
  /* Call + Request a Free Quote: identical size */
  .drawer-cta .btn { width: 100%; justify-content: center; padding: 15px 20px;
    font-size: 1rem; min-height: 54px; }
  .drawer-cta .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }

  /* hide the hamburger while the full-screen menu is open (drawer has its own X) */
  body.menu-open .nav-toggle { opacity: 0; pointer-events: none; }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 760px) {
  .contact-info, .qmodal-card { padding: 26px 20px; }
  .svc-list { grid-template-columns: 1fr; gap: 14px; }
  .svc-highlights { grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; padding-top: 26px; }
  .cards, .review-cards, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  /* Reviews collapse behind a dropdown on mobile */
  .reviews-toggle {
    display: flex; align-items: center; gap: 10px; margin: 20px auto 0; width: max-content;
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
    font-size: .92rem; color: #fff; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.22); border-radius: 40px; padding: 13px 24px; cursor: pointer;
  }
  .reviews-toggle:hover { background: rgba(255,255,255,.12); }
  .review-cards { display: none; margin-top: 24px; }
  .reviews.reviews-open .review-cards { display: grid; }
  .reviews-cta { margin-top: 28px; }
  /* Clean, centered hero on mobile (less clutter) */
  .hero { min-height: 100svh; padding-top: 96px; padding-bottom: 76px; text-align: center; }
  .hero .container { display: flex; flex-direction: column; align-items: center; }
  .hero-eyebrow { font-size: .64rem; letter-spacing: 2.5px; margin-bottom: 18px; }
  .hero h1 { max-width: none; }
  .hero-tag { font-size: .92rem; letter-spacing: 3px; }
  .hero-sub { font-size: 1rem; margin: 16px auto 30px; max-width: 38ch; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; max-width: 360px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badges { display: none; }
  .hero-scroll { display: flex; }
}
@media (max-width: 360px) { .svc-highlights { grid-template-columns: 1fr; } }

/* ===== Dark-section text overrides (Services, Reviews, Contact) ===== */
.services h2, .contact h2 { color: #fff; }
.services .sec-head p, .contact .sec-head p { color: var(--on-dark-2); }

/* ----------------------------- Loading intro ---------------------------- */
.intro-overlay {
  position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center;
  background: var(--navy-dk); overflow: hidden;
}
.intro-overlay::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(0,135,203,.22) 0%, transparent 62%),
    radial-gradient(ellipse 40% 30% at 50% 55%, rgba(178,34,52,.10) 0%, transparent 65%);
}
.intro-overlay.is-fading { animation: introFade .6s ease-in forwards; }
.intro-overlay.is-done { display: none; }
.intro-stage { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.intro-logo {
  width: 110px; height: 110px; border-radius: 50%; background: #fff; padding: 6px;
  box-shadow: 0 0 0 2px rgba(43,163,224,.7), 0 0 34px rgba(43,163,224,.45);
  opacity: 0; transform: scale(.6) translateY(-14px);
  animation: introLogo .7s cubic-bezier(.34,1.56,.64,1) forwards;
}
.intro-text {
  margin-top: 22px; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 7vw, 3.4rem); letter-spacing: 3px; text-transform: uppercase;
  color: #fff; line-height: 1; display: flex; flex-wrap: wrap; justify-content: center; overflow: hidden;
}
.intro-text-letter { display: inline-block; opacity: 0; transform: translateY(18px);
  animation: introLetter .5s cubic-bezier(.22,1,.36,1) forwards; }
.intro-tag {
  margin-top: 14px; font-family: var(--font-body); font-size: .9rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--drop-lt); opacity: 0;
  animation: introTag .6s ease forwards .9s;
}
@keyframes introLogo {
  0% { opacity: 0; transform: scale(.6) translateY(-14px); }
  60% { opacity: 1; transform: scale(1.06) translateY(2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes introLetter { to { opacity: 1; transform: translateY(0); } }
@keyframes introTag { to { opacity: 1; } }
@keyframes introFade { to { opacity: 0; visibility: hidden; } }

/* ----------------------------- Quote modal ------------------------------ */
.qmodal {
  position: fixed; inset: 0; z-index: 3000; display: none;
  align-items: center; justify-content: center; padding: 5vh 20px;
  background: rgba(10,16,30,.62); backdrop-filter: blur(3px);
}
.qmodal.open { display: flex; animation: qmFade .25s ease; }
body.qm-open { overflow: hidden; }
@keyframes qmFade { from { opacity: 0; } to { opacity: 1; } }
.qmodal-card {
  position: relative; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 34px 30px; animation: qmRise .35s var(--ease);
}
@keyframes qmRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.qmodal-close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--navy); cursor: pointer;
  display: grid; place-items: center; transition: background .2s var(--ease), color .2s var(--ease);
}
.qmodal-close:hover { background: var(--red); color: #fff; border-color: var(--red); }
.qmodal-close svg { width: 20px; height: 20px; }
.qmodal-head { text-align: center; margin-bottom: 22px; }
.qmodal-head .sec-kicker { justify-content: center; display: inline-flex; }
.qmodal-head h3 { font-size: 1.7rem; margin: 8px 0 8px; }
.qmodal-head p { color: var(--muted); font-size: .95rem; margin: 0; }
.qmodal-actions { display: grid; gap: 10px; }
.qmodal-actions .btn { width: 100%; }
.qmodal-or { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: .85rem; margin: 20px 0; }
.qmodal-or::before, .qmodal-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.qmodal-form { display: grid; gap: 12px; }
.qmodal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qmodal-form input, .qmodal-form select, .qmodal-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--text); background: #fcfdff;
}
.qmodal-form input:focus, .qmodal-form select:focus, .qmodal-form textarea:focus {
  outline: none; border-color: var(--drop); box-shadow: 0 0 0 3px rgba(0,135,203,.15);
}
.qmodal-status { display: none; margin: 4px 0 0; font-weight: 600; color: #1c7c43; font-size: .92rem; text-align: center; }
.qmodal-status.ok { display: block; }
@media (max-width: 560px) {
  .qmodal { padding: 3vh 14px; align-items: flex-start; }
  .qmodal-card { padding: 22px 18px; }
  .qmodal-head { margin-bottom: 16px; }
  .qmodal-head h3 { font-size: 1.4rem; margin: 6px 0; }
  .qmodal-head p { font-size: .86rem; }
  /* smaller action buttons so the form is visible without scrolling */
  .qmodal-actions { gap: 8px; }
  .qmodal-actions .btn { padding: 12px 16px; font-size: .9rem; white-space: nowrap; }
  .qmodal-actions .btn svg { width: 16px; height: 16px; }
  .qmodal-or { margin: 14px 0; font-size: .8rem; }
  .qmodal-form { gap: 10px; }
}
@media (max-width: 480px) { .qmodal-form .form-row { grid-template-columns: 1fr; } }

/* ----------------------------- Reduced motion --------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
