
:root {
  --blue: #075ea8;
  --blue-2: #00a4ef;
  --blue-dark: #06111f;
  --ink: #101820;
  --muted: #5a6472;
  --line: #d9e2ea;
  --surface: #f5f9fc;
  --white: #ffffff;
  --green: #67b82f;
  --green-dark: #2f6f1d;
  --brown: #8a4c24;
  --shadow: 0 18px 45px rgba(6, 17, 31, .13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 10000; background: var(--blue); color: white; padding: 10px 14px; border-radius: 6px; }
.skip-link:focus { left: 10px; }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease;
  color: white;
}
.site-header.scrolled, .site-header.menu-open {
  background: rgba(6, 17, 31, .95);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: 0; }
.brand img { width: 56px; height: 56px; border-radius: 50%; background: white; object-fit: contain; }
.brand span { max-width: 210px; line-height: 1.08; }
.desktop-nav, .nav-actions { display: flex; align-items: center; gap: 8px; }
.desktop-nav > a, .nav-dropdown > button {
  color: rgba(255,255,255,.92);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  background: none;
  border: 0;
  padding: 10px 12px;
  cursor: pointer;
}
.nav-dropdown { position: relative; }
.nav-dropdown button { display: inline-flex; align-items: center; gap: 5px; }
.nav-dropdown svg { width: 13px; transform: rotate(90deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: white;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .18s ease;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 6px; font-size: 14px; font-weight: 750; color: var(--muted); }
.dropdown-menu a:hover { background: var(--surface); color: var(--blue); }
.phone-link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 850; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--blue-2);
  background: var(--blue-2);
  color: white;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--blue); border-color: var(--blue); }
.btn-small { min-height: 40px; padding: 9px 14px; font-size: 14px; }
.btn-outline { background: transparent; border-color: white; color: white; }
.btn-outline:hover { background: white; color: var(--ink); border-color: white; }
.btn-dark { background: var(--ink); border-color: var(--ink); }
.btn-light { background: white; color: var(--blue); border-color: white; }
.btn-outline-light { background: transparent; color: white; border-color: white; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: rgba(255,255,255,.12); border-radius: 8px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 5px 0; border-radius: 2px; }
.mobile-panel { display: none; }
.hero { position: relative; min-height: 76vh; display: flex; align-items: center; overflow: hidden; color: white; }
.home-hero { min-height: 100vh; }
.inner-hero { min-height: 64vh; }
.hero-media { position: absolute; inset: 0; z-index: -2; background: var(--blue-dark); }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-position, center center); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,17,31,.84), rgba(6,17,31,.54) 48%, rgba(6,17,31,.38)); }
.hero-content { padding: 144px 0 70px; }
.eyebrow, .section-kicker, .section-heading span {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,164,239,.13);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero .eyebrow { background: rgba(255,255,255,.12); color: white; backdrop-filter: blur(8px); }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: 0; }
h1 { max-width: 880px; font-size: clamp(40px, 7vw, 76px); }
h2 { font-size: clamp(30px, 4.2vw, 48px); }
h3 { font-size: 21px; }
.glow-keyword, .glow-location {
  display: inline-block;
  color: #7ed957;
  text-shadow: 0 0 12px rgba(126,217,87,.86), 0 0 34px rgba(0,164,239,.62);
}
.glow-location {
  color: #7ce7ff;
  text-shadow: 0 0 12px rgba(124,231,255,.9), 0 0 36px rgba(0,164,239,.72);
}
.hero p { max-width: 760px; margin: 22px 0 0; font-size: clamp(18px, 2vw, 22px); color: rgba(255,255,255,.88); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-stats { display: flex; gap: 18px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats div { min-width: 150px; border-left: 1px solid rgba(255,255,255,.28); padding-left: 18px; }
.hero-stats strong { display: block; font-size: 28px; line-height: 1; }
.hero-stats span { display: block; margin-top: 6px; color: rgba(255,255,255,.72); font-size: 12px; text-transform: uppercase; font-weight: 850; }
.info-bar { background: var(--blue); color: white; }
.info-inner { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; font-size: 14px; font-weight: 800; }
.info-inner span, .info-inner a { display: inline-flex; align-items: center; gap: 8px; }
.section { padding: 88px 0; }
.split-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.section-heading { max-width: 720px; margin-bottom: 40px; }
.section-heading.center { text-align: center; margin: 0 auto 42px; }
.section-heading h2, .split-grid h2 { margin-top: 14px; }
.section-heading p, .split-grid p { color: var(--muted); font-size: 18px; }
.check-list { display: grid; gap: 12px; margin: 24px 0 30px; }
.check-list span, .included-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); font-weight: 750; }
.check-list svg, .included-list svg { color: var(--green); flex: 0 0 auto; margin-top: 4px; }
.image-stack { position: relative; }
.image-stack > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: var(--image-position, center center); border-radius: 8px; box-shadow: var(--shadow); }
.badge-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(300px, calc(100% - 48px));
  background: white;
  color: var(--ink);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.badge-card strong { display: block; font-size: 19px; line-height: 1.1; }
.badge-card span { color: var(--muted); font-size: 14px; }
.service-section, .quote-section, .faq-section, .area-section, .area-map-section { background: var(--surface); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card, .feature-card, .mini-service {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(6,17,31,.06);
}
.service-card a { display: flex; flex-direction: column; height: 100%; }
.service-card img { width: 100%; height: clamp(170px, 13vw, 220px); object-fit: cover; object-position: var(--image-position, center center); flex: 0 0 auto; }
.service-card div { padding: 20px; display: grid; gap: 11px; flex: 1; }
.service-card p, .feature-card p, .mini-service p { color: var(--muted); margin: 0; }
.service-card span, .mini-service a { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 900; margin-top: 5px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { padding: 24px; }
.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(103,184,47,.12);
  color: var(--green-dark);
  margin-bottom: 16px;
}
.accent-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
}
.accent-section .section-heading p, .accent-section .section-heading span { color: white; }
.accent-section .section-heading span { background: rgba(255,255,255,.13); }
.discount-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(126,217,87,.2), transparent 32%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
}
.discount-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 30px;
  align-items: stretch;
}
.discount-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.discount-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 54px);
  background: rgba(255,255,255,.09);
  box-shadow: var(--shadow);
}
.discount-card .section-kicker { background: rgba(255,255,255,.13); color: white; }
.discount-card p { color: rgba(255,255,255,.86); font-size: 18px; }
.discount-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.discount-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255,255,255,.12);
  font-weight: 900;
}
.reviews-section { background: white; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
  box-shadow: 0 8px 24px rgba(6,17,31,.07);
}
.stars { color: #f8b400; font-size: 20px; letter-spacing: 0; margin-bottom: 14px; }
.review-card p { color: var(--muted); }
.review-card strong { color: var(--blue); }
.photo-section { background: white; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(6,17,31,.08);
}
.process-section { background: #fdfefe; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.process-grid > div {
  border-top: 5px solid var(--blue-2);
  background: white;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(6,17,31,.06);
}
.process-grid strong { color: var(--brown); font-size: 15px; }
.process-grid h3 { margin: 12px 0 10px; }
.process-grid p { color: var(--muted); margin: 0; }
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.area-tags span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 850;
  color: var(--blue);
}
.map-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 22px;
}
.area-map-buttons {
  display: grid;
  gap: 10px;
  align-content: start;
}
.area-map-button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 14px 16px;
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}
.area-map-button:hover, .area-map-button.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  box-shadow: 0 8px 24px rgba(7,94,168,.18);
}
.map-panel {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}
.map-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
}
.map-copy p { margin: 0; color: var(--muted); max-width: 470px; }
.map-panel iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}
.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: start; }
.faq-item { background: white; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 12px; padding: 0 18px; }
.faq-item summary { cursor: pointer; padding: 18px 0; font-weight: 900; }
.faq-item p { color: var(--muted); margin: 0; padding: 0 0 18px; }
.cta-band { background: var(--blue); color: white; padding: 58px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner span { color: #bcecff; font-weight: 900; text-transform: uppercase; font-size: 13px; }
.cta-inner h2 { margin-top: 8px; }
.cta-inner p { color: rgba(255,255,255,.86); margin-bottom: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex: 0 0 auto; }
.quote-grid, .contact-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 28px; align-items: start; }
.form-shell {
  height: 720px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-panel, .discount-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(6,17,31,.06);
}
.contact-panel a, .contact-panel p, .contact-cards a, .contact-cards p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}
.contact-panel svg, .contact-cards svg { color: var(--blue); margin-top: 3px; flex: 0 0 auto; }
.mini-note {
  margin-top: 22px;
  background: rgba(103,184,47,.12);
  border-radius: 8px;
  padding: 16px;
}
.mini-note strong, .mini-note span { display: block; }
.mini-note span { color: var(--muted); font-size: 14px; margin-top: 4px; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px; }
.contact-cards a, .contact-cards p { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 16px; margin: 0; }
.contact-cards strong, .contact-cards small { display: block; }
.contact-cards small { color: var(--muted); margin-top: 2px; }
.discount-panel { background: var(--blue-dark); color: white; border-color: transparent; }
.discount-panel p { color: rgba(255,255,255,.82); }
.included-section { background: var(--blue-dark); color: white; }
.included-section p { color: rgba(255,255,255,.82); }
.included-section .section-kicker { color: white; background: rgba(255,255,255,.12); }
.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.included-list li { background: rgba(255,255,255,.08); color: white; border-radius: 8px; padding: 16px; }
.service-fit-section { background: white; }
.service-local-section { background: #fdfefe; }
.service-local-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 52px;
  align-items: center;
}
.service-local-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: var(--image-position, center center);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.service-local-grid h2 { margin-top: 14px; }
.service-local-grid p { color: var(--muted); font-size: 18px; }
.related-section { background: var(--surface); }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mini-service { padding-bottom: 22px; }
.mini-service img { width: 100%; height: 210px; object-fit: cover; object-position: var(--image-position, center center); }
.mini-service h3, .mini-service p, .mini-service a { margin-left: 20px; margin-right: 20px; }
.mini-service h3 { margin-top: 18px; margin-bottom: 10px; }
.site-footer { background: var(--blue-dark); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr 1.1fr; gap: 34px; padding: 62px 0; }
.footer-brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; background: white; }
.site-footer p, .site-footer li { color: rgba(255,255,255,.76); }
.footer-heading { color: white !important; font-weight: 900; margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a:hover { color: white; }
.contact-list li, .contact-list a { display: flex; align-items: flex-start; gap: 9px; }
.footer-motto { color: #7ed957 !important; font-weight: 900; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px; text-align: center; }
.footer-bottom p { margin: 0; font-size: 13px; }
@media (max-width: 1040px) {
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .mobile-panel {
    background: rgba(6,17,31,.98);
    padding: 10px 20px 22px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .mobile-panel.open { display: grid; gap: 10px; }
  .mobile-panel a { padding: 11px 0; font-weight: 850; color: white; }
  .mobile-services { display: grid; padding: 7px 0 7px 14px; border-left: 2px solid rgba(0,164,239,.45); }
  .mobile-services a { color: rgba(255,255,255,.82); font-size: 14px; padding: 7px 0; }
  .service-grid, .feature-grid, .photo-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .discount-grid, .map-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { height: 72px; }
  .brand img { width: 48px; height: 48px; }
  .brand span { font-size: 14px; max-width: 170px; }
  .hero, .home-hero, .inner-hero { min-height: 720px; }
  .hero-content { padding-top: 118px; }
  h1 { font-size: 39px; }
  .hero-stats { gap: 0; }
  .hero-stats div { min-width: 50%; margin-bottom: 18px; }
  .info-inner { align-items: flex-start; justify-content: flex-start; padding: 13px 0; gap: 10px; }
  .section { padding: 64px 0; }
  .split-grid, .quote-grid, .contact-grid, .faq-grid, .service-local-grid { grid-template-columns: 1fr; gap: 34px; }
  .service-grid, .feature-grid, .process-grid, .mini-grid, .contact-cards, .photo-grid, .review-grid { grid-template-columns: 1fr; }
  .service-card img { height: 215px; }
  .discount-media img { min-height: 250px; }
  .map-copy { display: block; }
  .map-copy p { margin-top: 8px; }
  .map-panel iframe { height: 340px; }
  .cta-inner { display: grid; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .form-shell { height: 760px; }
  .footer-grid { grid-template-columns: 1fr; }
}
