/* ============================================================
   Jordan's Heating and Cooling — styles.css (Dark Edition)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  /* Backgrounds */
  --bg-root:    #0A0A0B;
  --bg-base:    #0E1117;
  --bg-surface: #161B22;
  --bg-raised:  #1C2128;

  /* Accent */
  --blue:  #58A6FF;
  --ice:   #79C0FF;

  /* Text */
  --text:  #E6EDF3;
  --muted: #8B949E;

  /* Borders */
  --border:     rgba(255,255,255,0.06);
  --border-mid: rgba(255,255,255,0.10);
  --border-blue: rgba(88,166,255,0.18);

  /* Legacy vars kept for compat */
  --navy: #0A0A0B;
  --white: #E6EDF3;
  --off-white: #161B22;
  --success: #3FB950;
  --error:   #F85149;

  /* Typography */
  --font-head: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --max-w:  1200px;
  --bar-h:  40px;
  --nav-h:  68px;

  /* Shadows / Glows */
  --glow-sm: 0 0 20px rgba(88,166,255,0.12);
  --glow-md: 0 0 32px rgba(88,166,255,0.20);
  --glow-lg: 0 0 48px rgba(88,166,255,0.28);
  --sh-md:   0 4px 16px rgba(0,0,0,0.4);
  --sh-lg:   0 8px 32px rgba(0,0,0,0.5);
  --sh-xl:   0 16px 56px rgba(0,0,0,0.6);

  /* Border radius — sharp, premium */
  --rad-sm: 4px;
  --rad:    6px;
  --rad-lg: 10px;
  --rad-pill: 100px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t: 0.3s;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bar-h) + var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-root);
  overflow-x: hidden;
  padding-top: calc(var(--bar-h) + var(--nav-h));
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 15px; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 32px;
}

/* ---- Sections ---- */
.section {
  padding-block: 120px;
  position: relative;
}
.section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(88,166,255,0.12) 25%, rgba(88,166,255,0.12) 75%, transparent 100%);
  pointer-events: none;
}

@media (max-width: 768px) { .section { padding-block: 72px; } }

/* ---- Section labels / headers ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 64px; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 16.5px;
  color: var(--muted);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.75;
}

.hide-mobile { display: inline; }
@media (max-width: 600px) { .hide-mobile { display: none; } }

/* ---- Override hardcoded SVG colors ---- */
/* SVG presentation attributes have low specificity — CSS wins */
.svc-card__icon svg       { stroke: var(--blue); }
.nav__brand svg           { stroke: var(--blue); }
.cinfo-icon svg           { stroke: var(--blue); fill: none; }
.contact__hours h4 svg    { stroke: var(--blue); }
.hours-note svg           { stroke: var(--blue); }
.stars svg                { fill: var(--blue); }
.review-card__stars       { color: var(--blue); }
.hero__trust svg          { stroke: var(--blue); }
.cities-list li svg       { stroke: var(--blue); }
.ftrust-badge svg         { stroke: var(--ice); }
.footer__contact li svg   { stroke: var(--muted); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--rad-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease), border-color var(--t) var(--ease);
  white-space: nowrap;
  min-height: 48px;
  position: relative;
}

.btn--primary {
  background: var(--blue);
  color: #0A0A0B;
  font-weight: 700;
}
.btn--primary:hover {
  background: var(--ice);
  transform: translateY(-2px);
  box-shadow: var(--glow-md);
}

.btn--outline-white {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-mid);
}
.btn--outline-white:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--glow-sm);
}

.btn--lg { font-size: 16px; padding: 14px 32px; min-height: 52px; }
.btn--full { width: 100%; justify-content: center; }

.text-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 14.5px;
  transition: color var(--t);
}
.text-link:hover { color: var(--ice); }

/* Pulse ring on phone buttons */
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(88,166,255,0.35); }
  60%       { box-shadow: 0 0 0 10px rgba(88,166,255,0); }
}
.btn--pulse { animation: btnPulse 2.8s infinite; }

/* ============================================================
   EMERGENCY TOP BAR
   ============================================================ */
.emergency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--bg-surface);
  height: var(--bar-h);
  border-bottom: 1px solid rgba(88,166,255,0.18);
}
.emergency-bar__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.emergency-bar__left {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--muted);
}
.emergency-bar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--blue);
  transition: color var(--t);
}
.emergency-bar__phone:hover { color: var(--ice); }

@media (max-width: 600px) {
  .emergency-bar__inner { justify-content: center; }
  .emergency-bar__left svg:first-child { display: none; }
  .emergency-bar__phone { display: none; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: var(--bar-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,11,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.header.scrolled {
  background: rgba(14,17,23,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 1px 24px rgba(0,0,0,0.4);
}

.nav {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 1.5px;
  transition: color var(--t);
}
.nav__brand:hover { color: var(--blue); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.nav__link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 13px;
  border-radius: var(--rad-sm);
  transition: color var(--t);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 13px; right: 13px;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}
.nav__link:hover { color: var(--blue); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__cta { font-size: 14px; padding: 9px 20px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border-radius: var(--rad-sm);
  transition: background var(--t);
}
.hamburger:hover { background: rgba(255,255,255,0.06); }
.hamburger__bar {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t);
}
.hamburger.open .hamburger__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .hamburger  { display: flex; }
}
@media (max-width: 480px) { .nav__brand span { display: none; } }

/* ---- Mobile Drawer ---- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.drawer.open { pointer-events: all; }

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  backdrop-filter: blur(4px);
}
.drawer.open .drawer__overlay { opacity: 1; }

.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: var(--sh-xl);
}
.drawer.open .drawer__panel { transform: translateX(0); }

.drawer__close {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--rad-sm);
  color: var(--muted);
  margin-bottom: 16px;
  transition: background var(--t), color var(--t);
}
.drawer__close:hover { background: var(--bg-raised); color: var(--text); }

.drawer__nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }

.drawer__link {
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
  padding: 14px 12px;
  border-radius: var(--rad-sm);
  transition: background var(--t), color var(--t);
  min-height: 48px;
  display: flex;
  align-items: center;
  font-family: var(--font-head);
  letter-spacing: -0.3px;
}
.drawer__link:hover { background: rgba(88,166,255,0.06); color: var(--blue); }

.drawer__call {
  margin-top: 24px;
  justify-content: center;
  font-size: 15px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--bar-h) - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-root);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.4;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(10,10,11,0.97) 0%,
    rgba(10,10,11,0.90) 35%,
    rgba(10,10,11,0.60) 62%,
    rgba(10,10,11,0.35) 100%
  );
}

/* Ambient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero__orb--1 {
  top: -15%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(88,166,255,0.055) 0%, transparent 65%);
  filter: blur(40px);
}
.hero__orb--2 {
  bottom: -20%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(88,166,255,0.038) 0%, transparent 65%);
  filter: blur(60px);
}

/* Corner decorations */
.hero__corners {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__corners::before {
  content: '';
  position: absolute;
  top: 48px; left: 48px;
  width: 64px; height: 64px;
  border-top: 1px solid rgba(88,166,255,0.35);
  border-left: 1px solid rgba(88,166,255,0.35);
}
.hero__corners::after {
  content: '';
  position: absolute;
  bottom: 48px; right: 48px;
  width: 64px; height: 64px;
  border-bottom: 1px solid rgba(88,166,255,0.35);
  border-right: 1px solid rgba(88,166,255,0.35);
}
@media (max-width: 768px) {
  .hero__corners::before, .hero__corners::after { display: none; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 88px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero__text { max-width: 620px; }

.hero__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--border-blue);
  background: rgba(88,166,255,0.04);
  padding: 7px 14px;
  border-radius: var(--rad-sm);
  margin-bottom: 28px;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(46px, 6.5vw, 74px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.hero__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.hero__trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.hero__rating { display: flex; align-items: center; gap: 10px; }
.stars { display: flex; gap: 2px; }
.hero__rating-text { font-size: 13px; color: var(--muted); }
.hero__rating-text strong { color: var(--text); }

@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__text { max-width: 100%; }
  .hero__headline { font-size: clamp(40px, 9vw, 56px); }
}
@media (max-width: 600px) {
  .hero__content { padding-block: 52px 44px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-base); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .services__grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--ice));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(88,166,255,0.22);
  box-shadow: var(--sh-lg), var(--glow-sm);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--rad-sm);
  background: rgba(88,166,255,0.07);
  border: 1px solid rgba(88,166,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 1px;
}
.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.68;
  flex: 1;
}
.svc-card__link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  transition: color var(--t), gap var(--t);
}
.svc-card__link:hover { color: var(--ice); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--bg-base); }

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-us__img-wrap {
  border-radius: var(--rad-sm);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
}
.why-us__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.6s var(--ease), opacity var(--t);
}
.why-us__img-wrap:hover img { transform: scale(1.03); opacity: 0.95; }
.why-us__content .section-label { display: block; }
.why-us__content .section-title { margin-bottom: 8px; }

.why-us__items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 36px 0 44px;
  position: relative;
  padding-left: 0;
}
/* Vertical connector line */
.why-us__items::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(88,166,255,0.5) 0%, rgba(88,166,255,0.08) 100%);
  pointer-events: none;
}

.why-us__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.why-us__num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
  text-align: center;
  padding-top: 3px;
}
.why-us__item h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.why-us__item p { font-size: 14.5px; color: var(--muted); line-height: 1.68; }

@media (max-width: 860px) {
  .why-us__grid { grid-template-columns: 1fr; gap: 44px; }
  .why-us__img-wrap { aspect-ratio: 16/9; max-height: 380px; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-surface);
  padding-block: 72px;
  border-top: 1px solid rgba(88,166,255,0.12);
  border-bottom: 1px solid rgba(88,166,255,0.12);
  position: relative;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-shadow: 0 0 48px rgba(88,166,255,0.22);
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
}

@media (max-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 44px 24px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg-base); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
@media (max-width: 860px) { .reviews__grid { grid-template-columns: 1fr; } }
@media (max-width: 860px) and (min-width: 560px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(88,166,255,0.35);
  border-radius: var(--rad-sm);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg), var(--glow-sm);
  border-left-color: var(--blue);
}

/* Decorative oversized quote mark */
.review-card__bigquote {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-head);
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  color: var(--blue);
}

.review-card blockquote {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
  font-style: italic;
  flex: 1;
  position: relative;
  z-index: 1;
}

.review-card hr {
  border: none;
  border-top: 1px solid var(--border);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(88,166,255,0.14);
  border: 1px solid rgba(88,166,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  flex-shrink: 0;
}
.review-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.review-card__author span { font-size: 12.5px; color: var(--muted); }

.reviews__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: var(--rad-pill);
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area { background: var(--bg-surface); }

.service-area__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.service-area__text .section-label { display: block; }
.service-area__text .section-sub { margin-inline: 0; max-width: 100%; }
.service-area__text .btn { margin-top: 32px; }

.cities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 24px;
}
.cities-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 0;
  transition: color var(--t);
}
.cities-list li:hover { color: var(--text); }

.service-area__map {
  border-radius: var(--rad-sm);
  overflow: visible;
  box-shadow: var(--sh-lg);
}
.service-area__map iframe {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  filter: invert(0.9) hue-rotate(195deg) brightness(0.85) contrast(0.9);
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  border: 1px solid var(--border-blue);
  background: rgba(88,166,255,0.05);
  padding: 10px 20px;
  border-radius: var(--rad-sm);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  min-height: 44px;
}
.directions-btn:hover {
  background: rgba(88,166,255,0.10);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--glow-sm);
}

/* Clickable address in contact info card */
.cinfo-val--link {
  transition: color var(--t);
}
.cinfo-val--link:hover { color: var(--blue); }

@media (max-width: 860px) {
  .service-area__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-base); }
.faq__wrap { max-width: 760px; }
.faq__list { display: flex; flex-direction: column; }

.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__item.open { background: rgba(28,33,40,0.5); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--muted);
  text-align: left;
  letter-spacing: 0.8px;
  transition: color var(--t);
  min-height: 64px;
}
.faq__q:hover { color: var(--text); }
.faq__q[aria-expanded="true"] { color: var(--blue); }

.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: var(--rad-sm);
  background: rgba(88,166,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: background var(--t), border-color var(--t);
}
.faq__q:hover .faq__icon,
.faq__q[aria-expanded="true"] .faq__icon {
  background: rgba(88,166,255,0.12);
  border-color: rgba(88,166,255,0.25);
}

.icon-plus  { display: block; }
.icon-minus { display: none; }
.faq__q[aria-expanded="true"] .icon-plus  { display: none; }
.faq__q[aria-expanded="true"] .icon-minus { display: block; }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease);
}
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding-bottom 0.32s var(--ease);
}
.faq__item.open .faq__a-inner { padding-bottom: 22px; }
.faq__a-inner p { font-size: 15px; color: var(--muted); line-height: 1.78; }
.faq__a-inner a { color: var(--blue); font-weight: 600; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding-block: 112px;
  text-align: center;
  background: var(--bg-root);
}
.cta-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.25;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,0.88);
}
/* Orbs in CTA */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(88,166,255,0.05) 0%, transparent 65%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -15%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(88,166,255,0.035) 0%, transparent 65%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

/* Thin decorative lines framing content */
.cta-banner__content::before {
  content: '';
  position: absolute;
  top: -36px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: rgba(88,166,255,0.3);
}
.cta-banner__content::after {
  content: '';
  position: absolute;
  bottom: -36px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: rgba(88,166,255,0.3);
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.8vw, 62px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.cta-banner p {
  font-size: 17.5px;
  color: var(--muted);
  margin-bottom: 44px;
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.75;
}
.cta-banner__btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

@media (max-width: 600px) {
  .cta-banner { padding-block: 80px; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .cta-banner__btns .btn { width: 100%; max-width: 340px; justify-content: center; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-base); }

.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }

/* Form */
.contact__form-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  padding: 40px;
}
@media (max-width: 480px) { .contact__form-wrap { padding: 24px; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.req { color: var(--blue); }

.form-group input,
.form-group textarea {
  background: var(--bg-raised);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rad-sm);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
  min-height: 48px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(139,148,158,0.5); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(88,166,255,0.5);
  box-shadow: 0 0 0 3px rgba(88,166,255,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group.valid input,
.form-group.valid select { border-color: rgba(63,185,80,0.5); }
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: rgba(248,81,73,0.5); }

.form-err { font-size: 12.5px; color: var(--error); font-weight: 500; min-height: 16px; }

.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  background: var(--bg-raised);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rad-sm);
  padding: 12px 38px 12px 14px;
  font-size: 15px;
  color: var(--text);
  width: 100%;
  cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t);
  min-height: 48px;
}
.select-wrap select option { background: var(--bg-raised); color: var(--text); }
.select-wrap select:focus {
  outline: none;
  border-color: rgba(88,166,255,0.5);
  box-shadow: 0 0 0 3px rgba(88,166,255,0.08);
}
.select-arrow {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.radio-group { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.radio-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  min-height: 48px;
  transition: color var(--t);
}
.radio-opt:hover { color: var(--text); }
.radio-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-box {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-opt input:checked + .radio-box {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: inset 0 0 0 3px var(--bg-raised);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(63,185,80,0.08);
  border: 1px solid rgba(63,185,80,0.2);
  border-radius: var(--rad-sm);
  padding: 16px;
  margin-top: 16px;
}
.form-success p { font-size: 15px; font-weight: 600; color: #3FB950; }

/* Contact Info */
.contact__info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  padding: 36px;
  position: sticky;
  top: calc(var(--bar-h) + var(--nav-h) + 20px);
}
.contact__info-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text);
  letter-spacing: -0.4px;
}

.cinfo-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cinfo-row:last-of-type { border-bottom: none; }
.cinfo-row--link { transition: opacity var(--t); }
.cinfo-row--link:hover { opacity: 0.75; }

.cinfo-icon {
  width: 38px; height: 38px;
  background: rgba(88,166,255,0.07);
  border: 1px solid rgba(88,166,255,0.12);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cinfo-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  opacity: 0.7;
}
.cinfo-val {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.contact__hours { margin-top: 24px; }
.contact__hours h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.hours-table { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: var(--muted);
}
.hours-row span:first-child { color: rgba(139,148,158,0.55); }
.hours-row--emerg span:last-child { color: var(--blue); font-weight: 600; }
.hours-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(88,166,255,0.8);
  background: rgba(88,166,255,0.06);
  border-radius: var(--rad-sm);
  padding: 8px 12px;
  border: 1px solid rgba(88,166,255,0.12);
}

.contact__social { margin-top: 24px; }
.contact__social h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  opacity: 0.6;
}
.social-row { display: flex; gap: 8px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background var(--t), border-color var(--t), color var(--t);
}
.social-btn:hover {
  background: rgba(88,166,255,0.08);
  border-color: rgba(88,166,255,0.25);
  color: var(--blue);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060609;
  color: var(--muted);
  padding-top: 72px;
  padding-bottom: 36px;
  position: relative;
}
/* Gradient border line at top */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(88,166,255,0.25) 30%, rgba(88,166,255,0.25) 70%, transparent 100%);
}

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}
.ftrust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(139,148,158,0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.footer__col--brand p {
  font-size: 13.5px;
  line-height: 1.72;
  margin-bottom: 18px;
  color: rgba(139,148,158,0.5);
}
.footer__phone {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  transition: color var(--t);
}
.footer__phone:hover { color: var(--ice); }

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(139,148,158,0.5);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 13.5px;
  color: rgba(139,148,158,0.55);
  transition: color var(--t);
}
.footer__col ul a:hover { color: var(--text); }

.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(139,148,158,0.5);
}
.footer__contact li svg { flex-shrink: 0; margin-top: 2px; }
.footer__contact li a { color: rgba(139,148,158,0.5); transition: color var(--t); }
.footer__contact li a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(139,148,158,0.3);
}
.footer__bottom-mid { text-align: center; flex: 1; }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: rgba(139,148,158,0.3); transition: color var(--t); }
.footer__bottom-links a:hover { color: var(--muted); }

@media (max-width: 640px) {
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-mid { flex: none; }
}

/* ============================================================
   MOBILE CALL BAR
   ============================================================ */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1200;
  background: var(--bg-surface);
  border-top: 1px solid rgba(88,166,255,0.2);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.mobile-call-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  font-family: var(--font-head);
  letter-spacing: -0.2px;
  transition: color var(--t);
}
.mobile-call-bar__link:hover { color: var(--ice); }
.mobile-call-bar__link svg { stroke: var(--blue); }

@media (max-width: 900px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 60px; }
}

/* ============================================================
   EMERGENCY FLOAT BADGE
   ============================================================ */
.emerg-float {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 1050;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 900px) { .emerg-float { display: none; } }

.emerg-float__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  color: var(--blue);
  border: 1px solid rgba(88,166,255,0.25);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px 16px;
  border-radius: var(--rad-sm);
  box-shadow: var(--sh-md), var(--glow-sm);
  position: relative;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.emerg-float__btn:hover {
  transform: translateY(-2px);
  border-color: rgba(88,166,255,0.5);
  box-shadow: var(--sh-lg), var(--glow-md);
}

@keyframes emergPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.6); opacity: 0; }
}
.emerg-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 10px; height: 10px;
  background: var(--blue);
  border-radius: 50%;
  animation: emergPulse 2.2s infinite;
}

.emerg-float__popup {
  background: var(--bg-surface);
  border: 1px solid rgba(88,166,255,0.2);
  border-radius: var(--rad-sm);
  padding: 20px;
  width: 260px;
  box-shadow: var(--sh-xl), var(--glow-sm);
  position: relative;
}
.emerg-float__popup[hidden] { display: none; }
.emerg-float__close {
  position: absolute;
  top: 10px; right: 10px;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rad-sm);
  color: var(--muted);
  transition: background var(--t);
}
.emerg-float__close:hover { background: var(--bg-raised); }
.emerg-float__title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  padding-right: 24px;
  letter-spacing: -0.3px;
}
.emerg-float__text { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.58; }
.emerg-float__call { width: 100%; justify-content: center; font-size: 14.5px; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1050;
  width: 42px; height: 42px;
  background: var(--bg-surface);
  color: var(--blue);
  border: 1px solid rgba(88,166,255,0.2);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), opacity var(--t), border-color var(--t);
  opacity: 0;
}
.back-to-top:not([hidden]) { opacity: 1; }
.back-to-top[hidden] { display: flex; visibility: hidden; pointer-events: none; opacity: 0; }
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg), var(--glow-sm);
  border-color: rgba(88,166,255,0.4);
}

@media (max-width: 900px) {
  .back-to-top { bottom: 80px; right: 16px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.revealed { opacity: 1; transform: translateY(0); }

/* Grid stagger delays */
.services__grid .reveal-up:nth-child(2) { transition-delay: 0.06s; }
.services__grid .reveal-up:nth-child(3) { transition-delay: 0.11s; }
.services__grid .reveal-up:nth-child(4) { transition-delay: 0.15s; }
.services__grid .reveal-up:nth-child(5) { transition-delay: 0.18s; }
.services__grid .reveal-up:nth-child(6) { transition-delay: 0.21s; }
.services__grid .reveal-up:nth-child(7) { transition-delay: 0.23s; }
.services__grid .reveal-up:nth-child(8) { transition-delay: 0.25s; }

.stats__grid .reveal-up:nth-child(2) { transition-delay: 0.08s; }
.stats__grid .reveal-up:nth-child(3) { transition-delay: 0.14s; }
.stats__grid .reveal-up:nth-child(4) { transition-delay: 0.19s; }

.reviews__grid .reveal-up:nth-child(2) { transition-delay: 0.09s; }
.reviews__grid .reveal-up:nth-child(3) { transition-delay: 0.16s; }

/* ============================================================
   SCROLL PROGRESS INDICATOR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--ice));
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(88,166,255,0.5);
  transition: width 0.08s linear;
}

/* ============================================================
   PAGE LOAD ANIMATIONS
   ============================================================ */
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroItem {
  from { opacity: 0; transform: translateY(24px); filter: blur(3px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

.emergency-bar { animation: slideDown 0.45s var(--ease) both; }
.header        { animation: navFadeIn 0.5s 0.2s var(--ease) both; }

.hero__badge    { animation: heroItem 0.7s 0.30s var(--ease) both; }
.hero__headline { animation: heroItem 0.7s 0.48s var(--ease) both; }
.hero__sub      { animation: heroItem 0.7s 0.64s var(--ease) both; }
.hero__btns     { animation: heroItem 0.7s 0.78s var(--ease) both; }
.hero__trust    { animation: heroItem 0.7s 0.90s var(--ease) both; }
.hero__rating   { animation: heroItem 0.7s 1.00s var(--ease) both; }

/* ============================================================
   SCROLL REVEAL — DIRECTIONAL CLASSES
   ============================================================ */
.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-scale {
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.revealed,
.reveal-right.revealed  { opacity: 1; transform: translateX(0); }
.reveal-scale.revealed  { opacity: 1; transform: translateY(0) scale(1); }

/* Service card stagger */
.services__grid .reveal-scale:nth-child(2) { transition-delay: 0.06s; }
.services__grid .reveal-scale:nth-child(3) { transition-delay: 0.11s; }
.services__grid .reveal-scale:nth-child(4) { transition-delay: 0.15s; }
.services__grid .reveal-scale:nth-child(5) { transition-delay: 0.18s; }
.services__grid .reveal-scale:nth-child(6) { transition-delay: 0.21s; }
.services__grid .reveal-scale:nth-child(7) { transition-delay: 0.23s; }
.services__grid .reveal-scale:nth-child(8) { transition-delay: 0.25s; }

/* FAQ stagger */
.faq__list .faq__item.reveal-up:nth-child(2) { transition-delay: 0.07s; }
.faq__list .faq__item.reveal-up:nth-child(3) { transition-delay: 0.14s; }
.faq__list .faq__item.reveal-up:nth-child(4) { transition-delay: 0.20s; }
.faq__list .faq__item.reveal-up:nth-child(5) { transition-delay: 0.25s; }
.faq__list .faq__item.reveal-up:nth-child(6) { transition-delay: 0.30s; }
.faq__list .faq__item.reveal-up:nth-child(7) { transition-delay: 0.34s; }
.faq__list .faq__item.reveal-up:nth-child(8) { transition-delay: 0.38s; }

/* Section header: letter-spacing compress on reveal */
.section-header .section-title {
  letter-spacing: 8px;
  transition: letter-spacing 1s var(--ease);
}
.section-header.revealed .section-title { letter-spacing: 1.5px; }

/* Section label: clip-path wipe-in on reveal */
.section-header .section-label {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.7s 0.18s var(--ease);
}
.section-header.revealed .section-label { clip-path: inset(0 0% 0 0); }

/* Why-us items cascade after parent reveals */
.why-us__item {
  transform: translateX(20px);
  transition: transform 0.55s var(--ease);
}
.why-us__content.revealed .why-us__item             { transform: translateX(0); }
.why-us__content.revealed .why-us__item:nth-child(2) { transition-delay: 0.12s; }
.why-us__content.revealed .why-us__item:nth-child(3) { transition-delay: 0.22s; }
.why-us__content.revealed .why-us__item:nth-child(4) { transition-delay: 0.30s; }

/* ============================================================
   HOVER MICRO-INTERACTIONS
   ============================================================ */

/* Icon rotate on service card hover */
.svc-card__icon svg {
  transition: transform 0.4s var(--ease);
}
.svc-card:hover .svc-card__icon svg {
  transform: rotate(12deg);
}

/* Button shimmer streak */
.btn--primary { overflow: hidden; }
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.22) 58%, transparent 78%);
  transform: skewX(-20deg);
  transition: left 0.52s var(--ease);
  pointer-events: none;
}
.btn--primary:hover::before { left: 150%; }

/* Review card border thickens on hover */
.review-card {
  border-left-width: 3px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease), border-left-width 0.25s var(--ease);
}
.review-card:hover { border-left-width: 5px; }

/* Footer links slide with arrow */
.footer__col ul a {
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color var(--t), transform var(--t) var(--ease);
}
.footer__col ul a::after {
  content: '→';
  margin-left: 0;
  opacity: 0;
  font-size: 0.85em;
  transition: opacity var(--t), margin-left var(--t) var(--ease);
}
.footer__col ul a:hover { transform: translateX(4px); }
.footer__col ul a:hover::after { opacity: 1; margin-left: 5px; }

/* Phone link glow on hover */
a[href^="tel:"] { transition: color var(--t), text-shadow var(--t); }
a[href^="tel:"]:hover { text-shadow: 0 0 20px rgba(88,166,255,0.4); }

/* ============================================================
   VISUAL UPGRADES — ICON GLOW & DECORATIVE RINGS
   ============================================================ */

/* Service card icon soft glow */
.svc-card__icon {
  box-shadow: 0 0 24px rgba(88,166,255,0.07);
  transition: box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}
.svc-card:hover .svc-card__icon {
  box-shadow: 0 0 32px rgba(88,166,255,0.18);
  background: rgba(88,166,255,0.13);
}

/* Decorative rings — border-only circles as ambient decoration */
.services::before {
  content: '';
  position: absolute;
  top: 50%; right: -10%;
  width: 500px; height: 500px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(88,166,255,0.04);
  pointer-events: none;
  z-index: 0;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 15%; left: -9%;
  width: 440px; height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(88,166,255,0.05);
  pointer-events: none;
  z-index: 0;
}
.faq::before {
  content: '';
  position: absolute;
  bottom: 8%; right: -6%;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(88,166,255,0.04);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   PARALLAX SETUP
   ============================================================ */
.hero__img {
  height: 130%;
  will-change: transform;
}
.cta-banner__media img {
  height: 130%;
  will-change: transform;
}

/* ============================================================
   CURSOR GLOW
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(88,166,255,0.048) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  top: 0; left: 0;
  transform: translate(-160px, -160px);
  will-change: transform;
}
@media (max-width: 900px) { .cursor-glow { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
  .emergency-bar, .header, .hero__badge, .hero__headline,
  .hero__sub, .hero__btns, .hero__trust, .hero__rating { animation: none; }
  .hero__badge, .hero__headline, .hero__sub, .hero__btns,
  .hero__trust, .hero__rating { opacity: 1; transform: none; filter: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
:focus-visible {
  outline: 1px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--rad-sm);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
