/* ============================================================
   LORPAVI HEATING & COOLING — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --navy:       #1B2A4A;
  --navy-light: #243860;
  --blue:       #2B4A8C;
  --blue-light: #3A5FA8;
  --gold:       #F0A500;
  --gold-dark:  #D4920A;
  --gold-light: #FFB829;

  --white:    #FFFFFF;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;

  --font-h: 'Outfit', sans-serif;
  --font-b: 'Nunito Sans', sans-serif;

  --section-py: 88px;
  --container:  1240px;
  --gutter:     24px;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --sh-sm: 0 1px 4px rgba(0,0,0,.08);
  --sh-md: 0 4px 20px rgba(0,0,0,.10);
  --sh-lg: 0 12px 40px rgba(0,0,0,.15);

  --ease: .28s ease;
  --header-h: 76px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: transparent; font: inherit; }
input, select, textarea { font: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-h); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-py); }
.section--gray  { background: var(--gray-50); }
.section--navy  { background: var(--navy);    color: var(--white); }
.section--blue  { background: var(--blue);    color: var(--white); }

.section__header { text-align: center; margin-bottom: 60px; }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section__header h2 { color: var(--navy); margin-bottom: 16px; }
.section--navy .section__header h2,
.section--blue .section__header h2 { color: var(--white); }
.section__header p {
  color: var(--gray-600);
  max-width: 560px;
  margin-inline: auto;
  font-size: 1.05rem;
}
.section--navy .section__header p,
.section--blue .section__header p { color: rgba(255,255,255,.78); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(240,165,0,.45);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(27,42,74,.35);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-lg { padding: 17px 36px; font-size: 1.08rem; }
.btn-sm { padding: 10px 20px; font-size: .88rem; }

/* ── HEADER ─────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  transition: box-shadow var(--ease);
}
#header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header__logo img {
  height: 46px;
  width: auto;
  display: block;
  transition: transform .26s var(--spring-s), opacity .22s ease;
}
.header__logo:hover img { transform: scale(1.04); }

/* Desktop Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__item { position: relative; }

/* Bridge the 10px gap between button and dropdown so hover isn't lost on cursor travel */
.nav__item::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -10px;
  height: 10px;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active { color: var(--blue); background: var(--gray-50); }
.nav__link .chevron {
  font-size: .6rem;
  transition: transform var(--ease);
  opacity: .6;
}
.nav__item:hover > .nav__link .chevron { transform: rotate(180deg); }

/* Dropdowns */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
  border: 1px solid var(--gray-200);
}
.nav__item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown__label {
  padding: 8px 18px 4px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.dropdown__item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: background var(--ease), color var(--ease), padding-left var(--ease);
}
.dropdown__item a:hover {
  background: var(--gray-50);
  color: var(--blue);
  padding-left: 24px;
}
.dropdown__item a i {
  width: 18px;
  font-size: .88rem;
  color: var(--blue);
  text-align: center;
  flex-shrink: 0;
}
.dropdown__item a i.em-erg { color: #DC2626; }
.dropdown--wide {
  min-width: 340px;
  left: 0;
  transform: translateY(-8px);
}
.nav__item:hover .dropdown--wide { transform: translateY(0); }

/* JS click-toggle state — supplements CSS hover for touch/click devices */
.nav__item.nav-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__item.nav-open .dropdown--wide { transform: translateY(0); }
.nav__item.nav-open > .nav__link .chevron { transform: rotate(180deg); }

.dropdown--wide .dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.dropdown--wide .dd-col { padding: 8px 0; }
.dropdown--wide .dd-col + .dd-col { border-left: 1px solid var(--gray-100); }
.dropdown--areas { min-width: 300px; }
.dropdown--areas .dd-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8px 0;
}

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
  white-space: nowrap;
}
.header__phone i { color: var(--gold); font-size: 1rem; }
.header__phone:hover { color: var(--blue); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  border-radius: var(--r-sm);
  background: var(--gray-100);
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--sh-lg);
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  z-index: 999;
  display: none;
  flex-direction: column;
}
.mobile-nav.open { display: flex; animation: slideDown .28s ease forwards; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}
.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
  width: 100%;
  text-align: left;
}
.mob-link:hover { background: var(--gray-50); color: var(--blue); }
.mob-chev { font-size: .7rem; transition: transform var(--ease); opacity: .6; }
.mob-chev.open { transform: rotate(180deg); }
.mob-sub { display: none; }
.mob-sub.open { display: block; }
.mob-sub a {
  display: block;
  padding: 11px 22px 11px 38px;
  font-size: .9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--ease), color var(--ease);
}
.mob-sub a:hover { color: var(--blue); background: var(--gray-50); }
.mob-sub a i { width: 18px; color: var(--blue); margin-right: 6px; font-size: .85rem; }
.mob-sub a i.em-erg { color: #DC2626; }
.mob-cta {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--gray-50);
}
.mob-cta .btn { justify-content: center; width: 100%; }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

/* 2-col grid — flex-start so stats never overlap trust row */
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: flex-start;
  gap: 40px;
  padding-block: 88px 72px;
  min-height: 0;
}

/* ── Particles ───────────────────────────────────────────────── */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hp {
  position: absolute;
  border-radius: 50%;
  background: rgba(240,165,0,.35);
  animation: hpFloat var(--d,8s) ease-in-out var(--del,0s) infinite alternate;
}
@keyframes hpFloat {
  from { transform: translateY(0) translateX(0) scale(1); opacity:.2; }
  to   { transform: translateY(var(--ty,-40px)) translateX(var(--tx,20px)) scale(1.4); opacity:.55; }
}
.hp-1  { width:5px;  height:5px;  left:8%;  top:20%; --d:7s;  --del:0s;   --ty:-35px; --tx:18px;  }
.hp-2  { width:3px;  height:3px;  left:18%; top:65%; --d:9s;  --del:.8s;  --ty:28px;  --tx:-14px; }
.hp-3  { width:6px;  height:6px;  left:30%; top:12%; --d:6s;  --del:1.4s; --ty:-22px; --tx:30px;  }
.hp-4  { width:4px;  height:4px;  left:45%; top:80%; --d:8s;  --del:.3s;  --ty:32px;  --tx:-20px; }
.hp-5  { width:3px;  height:3px;  left:55%; top:25%; --d:10s; --del:2s;   --ty:-40px; --tx:10px;  background:rgba(255,255,255,.25); }
.hp-6  { width:5px;  height:5px;  left:72%; top:70%; --d:7.5s;--del:.6s;  --ty:24px;  --tx:-18px; }
.hp-7  { width:4px;  height:4px;  left:82%; top:35%; --d:8.5s;--del:1.8s; --ty:-30px; --tx:22px;  background:rgba(255,255,255,.2); }
.hp-8  { width:6px;  height:6px;  left:90%; top:58%; --d:6.5s;--del:.9s;  --ty:20px;  --tx:-26px; }
.hp-9  { width:3px;  height:3px;  left:25%; top:45%; --d:9.5s;--del:1.2s; --ty:-18px; --tx:35px;  background:rgba(96,184,232,.4); }
.hp-10 { width:4px;  height:4px;  left:65%; top:15%; --d:7s;  --del:2.4s; --ty:-38px; --tx:-12px; background:rgba(96,184,232,.3); }
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(27,42,74,.94) 0%,
    rgba(27,42,74,.80) 50%,
    rgba(43,74,140,.55) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding-block: 80px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.86);
  margin-bottom: 38px;
  line-height: 1.75;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; }
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  font-weight: 600;
}
.hero__trust-item i { color: var(--gold); }

/* ── Hero Visual Panel ────────────────────────────────────────── */
@keyframes hvSpinCW  { to { transform: translate(-50%,-50%) rotate(360deg);  } }
@keyframes hvSpinCCW { to { transform: translate(-50%,-50%) rotate(-360deg); } }
@keyframes hvCorePulse {
  0%,100% { transform: translate(-50%,-50%) scale(1);   opacity:.5; }
  50%      { transform: translate(-50%,-50%) scale(1.18); opacity:.9; }
}
@keyframes hvIconCool {
  0%,38%  { opacity:1; transform: scale(1)   rotate(0deg);   }
  44%,94% { opacity:0; transform: scale(.55) rotate(-30deg); }
  100%    { opacity:1; transform: scale(1)   rotate(0deg);   }
}
@keyframes hvIconHeat {
  0%,43%  { opacity:0; transform: scale(.55); }
  50%,90% { opacity:1; transform: scale(1);   }
  96%,100%{ opacity:0; transform: scale(.55); }
}
@keyframes hvPill1 {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-10px); }
}
@keyframes hvPill2 {
  0%,100% { transform: translateY(-50%) translateX(0); }
  50%      { transform: translateY(-50%) translateX(10px); }
}
@keyframes hvPill3 {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}
@keyframes hvPill4 {
  0%,100% { transform: translateY(-50%) translateX(0); }
  50%      { transform: translateY(-50%) translateX(-10px); }
}
@keyframes hvDotOrbit {
  from { transform: translate(-50%,-50%) rotate(0deg)   translateX(175px) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(175px) rotate(-360deg); }
}
@keyframes hvStatsIn {
  from { opacity:0; transform: translateX(-50%) translateY(20px); }
  to   { opacity:1; transform: translateX(-50%) translateY(0); }
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  animation: hero-word .9s var(--ease-out) .5s both;
}

/* Wrapper — everything is positioned relative to this */
.hv {
  position: relative;
  width: 360px;
  height: 360px;
  flex-shrink: 0;
  margin: 0 auto;
}

/* Rings */
.hv__ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  pointer-events: none;
}
.hv__ring--1 {
  width: 350px; height: 350px;
  border: 1.5px solid transparent;
  border-top-color: rgba(240,165,0,.5);
  border-right-color: rgba(240,165,0,.15);
  border-bottom-color: rgba(240,165,0,.5);
  border-left-color: rgba(240,165,0,.15);
  animation: hvSpinCW 28s linear infinite;
  box-shadow: 0 0 30px rgba(240,165,0,.06) inset;
}
.hv__ring--2 {
  width: 260px; height: 260px;
  border: 1.5px solid transparent;
  border-top-color: rgba(255,255,255,.2);
  border-right-color: rgba(255,255,255,.05);
  border-bottom-color: rgba(255,255,255,.2);
  border-left-color: rgba(255,255,255,.05);
  animation: hvSpinCCW 18s linear infinite;
}
.hv__ring--3 {
  width: 176px; height: 176px;
  border: 2px solid transparent;
  border-top-color: rgba(240,165,0,.65);
  border-right-color: rgba(240,165,0,.2);
  border-bottom-color: rgba(240,165,0,.65);
  border-left-color: rgba(240,165,0,.2);
  animation: hvSpinCW 10s linear infinite;
}

/* Glowing dots orbiting on outer ring */
.hv__rdot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  top: 50%; left: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(240,165,0,.9), 0 0 20px rgba(240,165,0,.4);
}
.hv__rdot--a { animation: hvDotOrbit 28s linear infinite; }
.hv__rdot--b { animation: hvDotOrbit 28s linear infinite 9.33s; }
.hv__rdot--c { animation: hvDotOrbit 28s linear infinite 18.66s; background: rgba(96,184,232,.9); box-shadow: 0 0 10px rgba(96,184,232,.9); }

/* Core circle */
.hv__core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 128px; height: 128px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(43,74,140,.85) 0%, rgba(11,22,44,.95) 100%);
  border: 2px solid rgba(240,165,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 8px rgba(240,165,0,.06),
    0 0 40px rgba(240,165,0,.18),
    inset 0 0 24px rgba(43,74,140,.5);
}
.hv__core-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 128px; height: 128px;
  border-radius: 50%;
  background: rgba(240,165,0,.08);
  animation: hvCorePulse 3.2s ease-in-out infinite;
}

/* HVAC icons inside core */
.hv__icon {
  position: absolute;
  font-size: 3.2rem;
  line-height: 1;
}
.hv__icon--cool {
  color: #7dd3f0;
  filter: drop-shadow(0 0 14px rgba(96,184,232,.75));
  animation: hvIconCool 9s ease-in-out infinite;
}
.hv__icon--heat {
  color: var(--gold);
  filter: drop-shadow(0 0 14px rgba(240,165,0,.75));
  animation: hvIconHeat 9s ease-in-out infinite;
}

/* Service pills */
.hv__pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  background: rgba(11,22,44,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(240,165,0,.28);
  border-radius: 100px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .78rem;
  color: var(--white);
  white-space: nowrap;
  cursor: default;
  transition: background .22s ease, border-color .22s ease, transform .26s var(--spring-s);
  z-index: 3;
}
.hv__pill:hover {
  background: rgba(240,165,0,.22);
  border-color: rgba(240,165,0,.6);
  transform: scale(1.08) !important;
}
.hv__pill i { color: var(--gold); font-size: .82rem; }

.hv__pill--top    { top:-16px;    left:50%;  transform:translateX(-50%); animation: hvPill1 4.2s ease-in-out infinite; }
.hv__pill--right  { right:-24px;  top:50%;   transform:translateY(-50%); animation: hvPill2 3.8s ease-in-out infinite .5s; }
.hv__pill--bottom { bottom:-16px; left:50%;  transform:translateX(-50%); animation: hvPill3 4.6s ease-in-out infinite 1s; }
.hv__pill--left   { left:-24px;   top:50%;   transform:translateY(-50%); animation: hvPill4 3.5s ease-in-out infinite 1.5s; }

/* Stats bar */
.hv__stats {
  display: flex;
  gap: 0;
  background: rgba(11,22,44,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 14px 8px;
  animation: hvStatsIn .8s var(--ease-out) 1s both;
}
.hv__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hv__stat:last-child { border-right: none; }
.hv__stat strong {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1;
}
.hv__stat small {
  font-size: .68rem;
  color: rgba(255,255,255,.55);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
#trust-bar { background: var(--navy); padding-block: 18px; }
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 14px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .88rem;
  white-space: nowrap;
}
.trust-bar__item i { color: var(--gold); font-size: 1.05rem; }

/* ── SERVICES ────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }
.svc-card__img {
  height: 196px;
  overflow: hidden;
  position: relative;
}
.svc-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.svc-card:hover .svc-card__img img { transform: scale(1.07); }
.svc-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  margin-top: -38px;
  position: relative;
  box-shadow: var(--sh-sm);
}
.icon-blue  { background: var(--blue);  color: var(--white); }
.icon-navy  { background: var(--navy);  color: var(--white); }
.icon-gold  { background: var(--gold);  color: var(--navy);  }
.icon-red   { background: #DC2626;      color: var(--white); }
.icon-teal  { background: #0D9488;      color: var(--white); }
.svc-card__title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-card__desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .88rem;
  color: var(--blue);
  transition: color var(--ease), gap var(--ease);
}
.svc-card__link:hover { color: var(--gold); gap: 10px; }

/* ── WHY CHOOSE US ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 36px 22px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.why-card__icon {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  margin: 0 auto 22px;
}
.why-card__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card__desc {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* ── STATS ───────────────────────────────────────────────────── */
#stats { background: var(--navy); padding-block: 64px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__lbl {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  font-weight: 600;
}
.stats-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  margin: auto;
}

/* ── FINANCING CTA ───────────────────────────────────────────── */
#financing {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  padding-block: 72px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#financing::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
#financing::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(240,165,0,.08);
}
.financing__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.financing__text h2 { margin-bottom: 12px; }
.financing__text p { color: rgba(255,255,255,.78); max-width: 480px; margin: 0; }
.financing__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── AREAS ───────────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.area-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  height: 164px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--ease), box-shadow var(--ease);
}
.area-card:hover { transform: scale(1.025); box-shadow: var(--sh-md); }
.area-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,42,74,.88) 0%, rgba(27,42,74,.15) 100%);
  z-index: 1;
  transition: background var(--ease);
}
.area-card:hover::before {
  background: linear-gradient(to top, rgba(43,74,140,.92) 0%, rgba(43,74,140,.25) 100%);
}
.area-card__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.area-card:hover .area-card__bg { transform: scale(1.06); }
.area-card__label {
  position: relative;
  z-index: 2;
  padding: 16px 18px;
  width: 100%;
}
.area-card__city {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.area-card__sub {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .05em;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--ease), box-shadow var(--ease);
  border: 1px solid var(--gray-200);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.review-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.review-card__stars { color: #F59E0B; font-size: .95rem; display: flex; gap: 3px; }
.review-card__source { font-size: .75rem; color: var(--gray-400); font-weight: 600; }
.review-card__quote-icon { font-size: 2rem; color: var(--gray-200); line-height: 1; font-family: Georgia, serif; }
.review-card__text {
  font-size: .93rem;
  color: var(--gray-600);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.review-card__name { font-family: var(--font-h); font-weight: 700; font-size: .95rem; color: var(--navy); }
.review-card__loc { font-size: .78rem; color: var(--gray-400); }
.reviews__cta { text-align: center; margin-top: 44px; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info__heading { font-size: 1.4rem; color: var(--navy); margin-bottom: 16px; }
.contact-info__lead { color: var(--gray-600); margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-detail__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cd-blue { background: var(--blue); color: var(--white); }
.cd-gold { background: var(--gold); color: var(--navy); }
.cd-navy { background: var(--navy); color: var(--white); }
.contact-detail strong { display: block; font-family: var(--font-h); font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-detail span, .contact-detail a { font-size: .9rem; color: var(--gray-600); }
.contact-detail a:hover { color: var(--blue); }
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-top: 8px;
}
.license-badge i { color: var(--gold); }

/* Form */
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-family: var(--font-h);
  font-size: .83rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .03em;
}
.form__label sup { color: var(--gold); }
.form__control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: .93rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form__control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43,74,140,.1);
}
.form__control::placeholder { color: var(--gray-400); }
select.form__control { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
textarea.form__control { resize: vertical; min-height: 110px; }
.form__submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form__note { font-size: .78rem; color: var(--gray-400); }
.form-success, .form-error {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .92rem;
  display: none;
}
.form-success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }
.form-error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.form-success.show, .form-error.show { display: block; }

/* ── FOOTER ──────────────────────────────────────────────────── */
#footer {
  background: var(--navy);
  color: var(--white);
  padding-top: 70px;
}
.footer__main {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { height: 46px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__desc { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.72; margin-bottom: 22px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: background var(--ease), color var(--ease);
}
.footer__social a:hover { background: var(--gold); color: var(--navy); }
.footer__col h4 {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 800;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--ease), padding-left var(--ease);
}
.footer__links a:hover { color: var(--white); padding-left: 6px; }
.footer__ci {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.footer__ci i { color: var(--gold); margin-top: 1px; flex-shrink: 0; width: 14px; }
.footer__ci a { color: rgba(255,255,255,.65); }
.footer__ci a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 22px;
}
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: .8rem; color: rgba(255,255,255,.45); transition: color var(--ease); }
.footer__legal a:hover { color: rgba(255,255,255,.8); }

/* ── FLOATING MOBILE CTA ─────────────────────────────────────── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--gold);
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.22);
}
.float-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  flex: 1;
}
.float-cta a i { font-size: 1.15rem; }
.float-cta__divider { width: 1px; height: 24px; background: rgba(27,42,74,.2); }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── MISC HELPERS ────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .header__nav { display: none; }
  .hamburger   { display: flex; }
  .header__phone span { display: none; }
  .header__cta .btn { padding: 9px 16px; font-size: .82rem; }
  .header__logo img { height: 42px; }
}

@media (max-width: 900px) {
  :root { --section-py: 64px; }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__main     { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 1060px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__content { max-width: 680px; }
}

@media (max-width: 680px) {
  :root { --section-py: 52px; --header-h: 64px; }
  .header__inner { gap: 10px; }
  .header__logo img { height: 38px; }
  .header__phone i  { font-size: 1.1rem; }
  .header__cta .btn { display: none; }
  .header__cta { gap: 8px; }
  .hamburger { padding: 8px; }
  .services-grid   { grid-template-columns: 1fr; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .areas-grid      { grid-template-columns: repeat(2, 1fr); }
  .form__row       { grid-template-columns: 1fr; }
  .financing__inner { flex-direction: column; text-align: center; }
  .financing__actions { justify-content: center; }
  .float-cta       { display: flex; }
  body             { padding-bottom: 56px; }
  .hero__actions   { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
}

@media (max-width: 380px) {
  .header__logo img { height: 34px; }
  .header__phone   { padding: 0; }
}

/* ── Agency credit ────────────────────────────────────────────── */
.agency-credit {
  text-align: center;
  padding: 12px 20px 14px;
  font-size: .75rem;
  color: rgba(255,255,255,.28);
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-h);
  letter-spacing: .03em;
}
.agency-credit a {
  color: rgba(240,165,0,.65);
  transition: color .2s ease;
  text-decoration: none;
  font-weight: 700;
}
.agency-credit a:hover { color: var(--gold); }

@media (max-width: 440px) {
  .areas-grid   { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .float-cta a span { font-size: .95rem; }
}

/* ── INNER PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(125deg, var(--navy) 0%, var(--blue) 100%);
  padding: 80px 0 64px;
  margin-top: var(--header-h);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 30%; bottom: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(240,165,0,.06);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--ease); }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb i { font-size: .6rem; opacity: .6; }
.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,.18);
  border: 1px solid rgba(240,165,0,.35);
  color: var(--gold);
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p  { color: rgba(255,255,255,.8); max-width: 600px; font-size: 1.05rem; margin-bottom: 28px; }
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── SERVICE PAGE ────────────────────────────────────────────── */
.svc-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.svc-intro__img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.svc-intro__img img { width: 100%; height: 380px; object-fit: cover; }
.svc-intro__text h2 { color: var(--navy); margin-bottom: 16px; }
.svc-intro__text p  { color: var(--gray-600); margin-bottom: 16px; }
.checklist { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--gray-700, #374151);
}
.checklist li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step {
  text-align: center;
  padding: 28px 18px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  position: relative;
}
.process-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.process-step h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.process-step p  { font-size: .88rem; color: var(--gray-600); margin: 0; }
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--white);
}
.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p  { color: rgba(255,255,255,.78); margin: 0; max-width: 460px; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--ease);
}
.faq-q:hover { background: var(--gray-50); }
.faq-q i { font-size: .75rem; color: var(--gold); flex-shrink: 0; transition: transform var(--ease); }
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a.open { max-height: 400px; padding: 0 22px 18px; }
.faq-a p { font-size: .95rem; color: var(--gray-600); margin: 0; line-height: 1.7; }

/* AREA pages */
.area-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.area-svc-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  text-decoration: none;
}
.area-svc-pill:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.area-svc-pill i { color: var(--gold); font-size: 1rem; }
.area-svc-pill:hover i { color: var(--white); }

/* Responsive extras */
@media (max-width: 900px) {
  .svc-intro        { grid-template-columns: 1fr; }
  .svc-intro__img   { order: -1; }
  .svc-intro__img img { height: 260px; }
  .process-grid     { grid-template-columns: repeat(2, 1fr); }
  .area-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .page-hero        { padding: 60px 0 44px; }
  .process-grid     { grid-template-columns: 1fr; }
  .cta-banner       { padding: 36px 24px; text-align: center; }
  .cta-banner__actions { justify-content: center; width: 100%; }
  .area-services-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   ANIMATION SYSTEM — Added by fix_all.py
   Replaces all external photos with CSS animations
   ══════════════════════════════════════════════════════════════ */

/* ── Keyframes ─────────────────────────────────────────────── */
@keyframes gradShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes floatA {
  0%,100% { transform: translateY(0)    rotate(0deg);  opacity:.55; }
  50%     { transform: translateY(-28px) rotate(6deg);  opacity:.85; }
}
@keyframes floatB {
  0%,100% { transform: translateY(0)    rotate(0deg); }
  50%     { transform: translateY(18px)  rotate(-5deg); }
}
@keyframes iconBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@keyframes iconPulse {
  0%,100% { transform: scale(1);    filter: drop-shadow(0 0 14px rgba(240,165,0,.35)); }
  50%     { transform: scale(1.1);  filter: drop-shadow(0 0 28px rgba(240,165,0,.7)); }
}
@keyframes iconSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes flameDance {
  0%,100% { transform: scaleY(1)    rotate(-2deg); }
  25%     { transform: scaleY(1.08) rotate( 2deg); }
  75%     { transform: scaleY(.93)  rotate(-1deg); }
}
@keyframes orbitCW {
  from { transform: rotate(0deg)   translateX(var(--orbit-r, 70px)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--orbit-r, 70px)) rotate(-360deg); }
}
@keyframes orbitCCW {
  from { transform: rotate(360deg) translateX(var(--orbit-r, 90px)) rotate(-360deg); }
  to   { transform: rotate(0deg)   translateX(var(--orbit-r, 90px)) rotate(0deg); }
}
@keyframes ringPulse {
  0%  { transform: scale(1);   opacity:.35; }
  70% { transform: scale(1.3); opacity:0; }
  100%{ transform: scale(1.3); opacity:0; }
}
@keyframes particleDrift {
  0%  { transform: translateY(0)   translateX(0)   opacity:0; }
  10% { opacity:.8; }
  90% { opacity:.4; }
  100%{ transform: translateY(-80px) translateX(20px) opacity:0; }
}

/* ── Hero — animated gradient (replaces photo) ─────────────── */
.hero__bg {
  background: linear-gradient(-45deg, #0a1220, #1B2A4A, #2B4A8C, #152238, #1B2A4A);
  background-size: 400% 400%;
  animation: gradShift 22s ease infinite;
  /* remove any legacy background-image */
  background-image: none !important;
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -60px; left: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,.1) 0%, transparent 65%);
  animation: floatA 14s ease-in-out infinite;
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -40px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,74,140,.6) 0%, transparent 65%);
  animation: floatB 10s ease-in-out infinite;
  pointer-events: none;
}
/* Dot grid pattern overlay */
.hero__bg + .hero__overlay {
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0),
    linear-gradient(108deg, rgba(27,42,74,.9) 0%, rgba(27,42,74,.72) 55%, rgba(43,74,140,.48) 100%);
  background-size: 32px 32px, 100% 100%;
}

/* ── Service card visual (replaces photo) ──────────────────── */
.svc-card__img { display: none; }        /* hide legacy img wrapper */

.svc-card__visual {
  height: 190px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Decorative circles */
.svc-card__visual::before {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -40%; right: -15%;
  pointer-events: none;
}
.svc-card__visual::after {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -25%; left: -8%;
  pointer-events: none;
}
.svc-vis__icon {
  position: relative;
  z-index: 1;
  font-size: 3.8rem;
  color: rgba(255,255,255,.92);
}
/* Ring behind icon */
.svc-vis__ring {
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.12);
  pointer-events: none;
}
.svc-vis__ring--2 {
  width: 80px; height: 80px;
  border-color: rgba(240,165,0,.2);
  animation: ringPulse 2.8s ease-out infinite;
}

/* Color themes */
.svc-card__visual--blue  { background: linear-gradient(135deg, #2B4A8C 0%, #1B2A4A 100%); }
.svc-card__visual--navy  { background: linear-gradient(135deg, #1a2840 0%, #0c1424 100%); }
.svc-card__visual--gold  { background: linear-gradient(135deg, #c47f00 0%, #8a5700 100%); }
.svc-card__visual--teal  { background: linear-gradient(135deg, #0D9488 0%, #065f46 100%); }
.svc-card__visual--red   { background: linear-gradient(135deg, #DC2626 0%, #7f1d1d 100%); }
.svc-card__visual--fire  { background: linear-gradient(135deg, #b45309 0%, #7c2d12 100%); }

/* Icon animation variants */
.svc-card__visual--spin   .svc-vis__icon { animation: iconSpin   8s linear         infinite; }
.svc-card__visual--bounce .svc-vis__icon { animation: iconBounce 2.5s ease-in-out   infinite; }
.svc-card__visual--pulse  .svc-vis__icon { animation: iconPulse  2.5s ease-in-out   infinite; }
.svc-card__visual--flame  .svc-vis__icon { animation: flameDance 1.4s ease-in-out   infinite; }

/* Hover boost */
.svc-card:hover .svc-vis__ring--2 { border-color: rgba(240,165,0,.5); }

/* ── Service intro animation (replaces Unsplash photo) ─────── */
.svc-intro__img { display: none; }       /* hide legacy wrapper */

.svc-intro__anim {
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  flex-shrink: 0;
}
/* Outer orbit ring */
.svc-intro__anim::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1.5px solid rgba(240,165,0,.2);
  animation: iconSpin 25s linear infinite;
  pointer-events: none;
}
/* Inner orbit ring */
.svc-intro__anim::after {
  content: '';
  position: absolute;
  width: 190px; height: 190px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.1);
  animation: iconSpin 15s linear infinite reverse;
  pointer-events: none;
}
/* Background gradient blob */
.anim__blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(240,165,0,.08);
  pointer-events: none;
}
.anim__blob--1 { width:320px;height:320px; top:-30%;right:-20%; animation:floatA 12s ease-in-out infinite; }
.anim__blob--2 { width:200px;height:200px; bottom:-20%;left:-10%; animation:floatB  9s ease-in-out infinite; }
/* Orbiting dot */
.anim__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
}
.anim__dot--1 { --orbit-r:120px; width:10px;height:10px; opacity:.7; animation: orbitCW  9s linear infinite; }
.anim__dot--2 { --orbit-r:150px; width: 6px;height: 6px; opacity:.4; animation: orbitCCW 14s linear infinite; }
/* Main icon */
.anim__icon {
  position: relative;
  z-index: 2;
  font-size: 5rem;
  color: var(--gold);
  filter: drop-shadow(0 0 28px rgba(240,165,0,.5));
}
.anim__icon--bounce { animation: iconBounce 3s   ease-in-out infinite; }
.anim__icon--pulse  { animation: iconPulse  2.5s ease-in-out infinite; }
.anim__icon--spin   { animation: iconSpin   6s   linear      infinite; }
.anim__icon--flame  { animation: flameDance 1.4s ease-in-out infinite; }

/* Color overrides per category */
.svc-intro__anim[data-cat="heating"] {
  background: linear-gradient(135deg, #b45309 0%, #1B2A4A 100%);
}
.svc-intro__anim[data-cat="emergency"] {
  background: linear-gradient(135deg, #991b1b 0%, #1B2A4A 100%);
}
.svc-intro__anim[data-cat="teal"] {
  background: linear-gradient(135deg, #0D9488 0%, #1B2A4A 100%);
}
.svc-intro__anim[data-cat="about"] {
  background: linear-gradient(135deg, #c47f00 0%, #1B2A4A 100%);
}

/* ── Area card — pure CSS gradient (replaces photo) ────────── */
.area-card__bg { display: none !important; }  /* hide any remaining imgs */

.area-card.ag-1  { background: linear-gradient(135deg, #1B2A4A 0%, #2B4A8C 100%); }
.area-card.ag-2  { background: linear-gradient(135deg, #2B4A8C 0%, #1B2A4A 100%); }
.area-card.ag-3  { background: linear-gradient(135deg, #162236 0%, #2B4A8C 100%); }
.area-card.ag-4  { background: linear-gradient(135deg, #0c1a30 0%, #243860 100%); }
.area-card.ag-5  { background: linear-gradient(135deg, #243860 0%, #1B2A4A 100%); }
.area-card.ag-6  { background: linear-gradient(135deg, #1B2A4A 0%, #162236 100%); }
.area-card.ag-7  { background: linear-gradient(135deg, #0c1424 0%, #1B2A4A 100%); }
.area-card.ag-8  { background: linear-gradient(135deg, #2B4A8C 0%, #0c1424 100%); }
.area-card.ag-9  { background: linear-gradient(135deg, #152035 0%, #2B4A8C 100%); }

.area-card__loc-icon {
  position: absolute;
  font-size: 6rem;
  color: rgba(240,165,0,.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  z-index: 0;
  transition: color var(--ease), transform var(--ease);
  pointer-events: none;
}
.area-card:hover .area-card__loc-icon {
  color: rgba(240,165,0,.25);
  transform: translate(-50%, -65%) scale(1.08);
}
/* Ensure label stays above icon */
.area-card__label { position: relative; z-index: 1; }

/* ── Reduced motion support ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__bg,
  .hero__bg::before, .hero__bg::after,
  .svc-vis__icon, .svc-vis__ring--2,
  .svc-intro__anim::before, .svc-intro__anim::after,
  .anim__blob, .anim__dot, .anim__icon { animation: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   UI/UX PRO MAX — Enhanced Animations & Micro-interactions
   Trust & Authority design system · spring easing · stagger
   ══════════════════════════════════════════════════════════════ */

/* ── Spring & enhanced easing vars ─────────────────────────── */
:root {
  --spring:   cubic-bezier(.22,.68,0,1.28);
  --spring-s: cubic-bezier(.22,.68,0,1.45);
  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-in:  cubic-bezier(.55,0,1,.45);
}

/* ── New keyframes ──────────────────────────────────────────── */
@keyframes shimmer-sweep {
  0%   { transform: translateX(-150%) skewX(-15deg); }
  100% { transform: translateX(250%)  skewX(-15deg); }
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 6px 22px rgba(240,165,0,.45); }
  50%      { box-shadow: 0 8px 36px rgba(240,165,0,.75), 0 0 0 6px rgba(240,165,0,.12); }
}
@keyframes badge-pop {
  0%   { opacity:0; transform: scale(.7) translateY(8px); }
  65%  { transform: scale(1.06) translateY(-3px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}
@keyframes hero-word {
  from { opacity:0; transform: translateY(22px); filter: blur(4px); }
  to   { opacity:1; transform: none;             filter: blur(0); }
}
@keyframes count-bounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.14); }
  55%  { transform: scale(.96); }
  80%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
@keyframes trust-in {
  from { opacity:0; transform: translateX(-18px); }
  to   { opacity:1; transform: none; }
}
@keyframes float-gentle {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes border-run {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
@keyframes slide-in-left {
  from { opacity:0; transform: translateX(-38px); }
  to   { opacity:1; transform: none; }
}
@keyframes slide-in-right {
  from { opacity:0; transform: translateX(38px); }
  to   { opacity:1; transform: none; }
}
@keyframes scale-in {
  from { opacity:0; transform: scale(.84) translateY(16px); }
  to   { opacity:1; transform: none; }
}
@keyframes progress-in {
  from { width:0%; }
}

/* ── Scroll progress bar ────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold));
  background-size: 200%;
  z-index: 2000;
  transition: width .08s linear;
  animation: border-run 3s linear infinite;
  pointer-events: none;
}

/* ── Improved reveal animation (spring easing) ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease-out), transform .75s var(--spring);
}
.reveal.visible { opacity: 1; transform: none; }

/* Directional reveal variants (add to elements in HTML) */
.reveal-left  { transform: translateX(-36px) translateY(0) !important; }
.reveal-right { transform: translateX(36px)  translateY(0) !important; }
.reveal-scale { transform: scale(.9) translateY(18px)     !important; }
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible { transform: none !important; opacity: 1; }

/* ── Hero entrance stagger ──────────────────────────────────── */
.hero__badge {
  animation: badge-pop .65s var(--spring-s) .15s both;
}
.hero__title   { animation: hero-word  .8s var(--ease-out) .35s both; }
.hero__subtitle{ animation: hero-word  .8s var(--ease-out) .5s  both; }
.hero__actions { animation: hero-word  .8s var(--ease-out) .65s both; }
.hero__trust   { animation: hero-word  .75s var(--ease-out) .8s both; }

.hero__trust-item {
  transition: transform .26s var(--spring-s), color .22s ease;
}
.hero__trust-item:hover { transform: translateY(-3px); color: var(--gold-light); }
.hero__trust-item i { transition: transform .26s var(--spring-s); }
.hero__trust-item:hover i { transform: scale(1.25) rotate(-8deg); }

/* ── Enhanced buttons ───────────────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform .22s var(--spring-s),
              box-shadow .22s ease,
              background .22s ease,
              color .22s ease !important;
}
.btn::after {
  content: '';
  position: absolute;
  top: -20%; left: 0;
  width: 55%; height: 140%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,.26),
    transparent);
  transform: translateX(-150%) skewX(-15deg);
  transition: none;
  pointer-events: none;
}
.btn:hover::after { animation: shimmer-sweep .55s ease forwards; }
.btn:active       { transform: scale(.96) !important; transition-duration: .08s !important; }

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  animation: glow-pulse 1.6s ease-in-out infinite;
}
.btn-navy:hover  { transform: translateY(-2px); }

/* ── Trust bar items ────────────────────────────────────────── */
.trust-bar__item {
  cursor: default;
  transition: transform .22s var(--spring-s);
}
.trust-bar__item:hover { transform: translateY(-2px); }
.trust-bar__item i {
  transition: transform .26s var(--spring-s), color .22s ease;
}
.trust-bar__item:hover i { transform: scale(1.3) rotate(-8deg); }

/* ── Service cards ──────────────────────────────────────────── */
.svc-card {
  transition: transform .34s var(--spring),
              box-shadow .34s ease;
}
.svc-card:hover {
  transform: translateY(-12px) scale(1.015);
  box-shadow: 0 22px 52px rgba(27,42,74,.18), 0 4px 12px rgba(27,42,74,.1);
}
.svc-card__link i {
  display: inline-block;
  transition: transform .26s var(--spring-s);
}
.svc-card:hover .svc-card__link i { transform: translateX(8px); }
.svc-card:hover .svc-vis__icon {
  filter: drop-shadow(0 0 18px rgba(255,255,255,.55));
}

/* ── Why cards ──────────────────────────────────────────────── */
.why-card {
  transition: transform .34s var(--spring), box-shadow .34s ease;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: -110%; left: -110%;
  width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,.07) 0%, transparent 70%);
  transition: top .44s ease, left .44s ease;
  pointer-events: none;
}
.why-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--sh-md); }
.why-card:hover::before { top: -15%; left: -10%; }
.why-card__icon {
  transition: transform .34s var(--spring-s), box-shadow .34s ease;
}
.why-card:hover .why-card__icon {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 10px 28px rgba(27,42,74,.28);
}

/* ── Stats counter bounce on complete ───────────────────────── */
.stat__num.counted { animation: count-bounce .6s var(--spring-s) forwards; }
.stat__num { display: block; }

/* ── Area cards ─────────────────────────────────────────────── */
.area-card {
  transition: transform .34s var(--spring), box-shadow .34s ease;
}
.area-card:hover {
  transform: scale(1.045) translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}
.area-card:hover .area-card__city { color: var(--gold); }
.area-card__city { transition: color .22s ease; }

/* ── Review cards ───────────────────────────────────────────── */
.review-card {
  transition: transform .34s var(--spring), box-shadow .34s ease, border-color .22s ease;
}
.review-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 40px rgba(27,42,74,.12);
  border-color: var(--gray-300, #CBD5E1);
}

/* ── Process steps ──────────────────────────────────────────── */
.process-step {
  transition: transform .34s var(--spring), box-shadow .34s ease;
}
.process-step:hover { transform: translateY(-7px); box-shadow: var(--sh-md); }
.process-step__num {
  transition: transform .34s var(--spring-s);
}
.process-step:hover .process-step__num { transform: scale(1.14) rotate(-6deg); }

/* ── Area service pills ─────────────────────────────────────── */
.area-svc-pill {
  transition: background .22s ease, border-color .22s ease,
              color .22s ease, transform .26s var(--spring-s);
}
.area-svc-pill:hover { transform: translateY(-3px); }

/* ── Nav link hover underline ───────────────────────────────── */
a.nav__link { position: relative; }
a.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width .22s var(--ease-out), left .22s var(--ease-out);
}
a.nav__link:hover::after,
a.nav__link.active::after { width: calc(100% - 24px); left: 12px; }

/* ── Footer social icons ────────────────────────────────────── */
.footer__social a {
  transition: background .22s ease, color .22s ease,
              transform .28s var(--spring-s) !important;
}
.footer__social a:hover { transform: translateY(-5px) scale(1.12) !important; }

/* ── CTA banner floating shapes ─────────────────────────────── */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,.04);
  animation: float-gentle 7s ease-in-out infinite;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -40px; left: 25%;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(240,165,0,.06);
  animation: float-gentle 5s ease-in-out infinite reverse;
  pointer-events: none;
}

/* ── Header logo subtle hover ───────────────────────────────── */
.header__logo { transition: transform .26s var(--spring-s), opacity .22s ease; }
.header__logo:hover { transform: scale(1.04); opacity: .9; }

/* ── Float CTA ──────────────────────────────────────────────── */
.float-cta { transition: transform .3s var(--spring); }
.float-cta a { transition: opacity .2s ease, transform .26s var(--spring-s); }
.float-cta a:hover { opacity: .85; transform: scale(1.04); }

/* ── Mob sub links ──────────────────────────────────────────── */
.mob-sub a {
  transition: background .18s ease, color .18s ease,
              padding-left .22s var(--ease-out);
}
.mob-sub a:hover { padding-left: 48px; }

/* ── Breadcrumb links ───────────────────────────────────────── */
.page-hero__breadcrumb a {
  transition: color .2s ease, transform .22s var(--spring-s);
  display: inline-block;
}
.page-hero__breadcrumb a:hover { color: var(--gold); transform: translateY(-1px); }

/* ── Checklist items ────────────────────────────────────────── */
.checklist li {
  transition: transform .22s var(--spring-s);
}
.checklist li:hover { transform: translateX(4px); }

/* ── License badge pulse ────────────────────────────────────── */
.license-badge {
  transition: background .22s ease, box-shadow .22s ease, transform .26s var(--spring-s);
}
.license-badge:hover {
  background: var(--gray-100);
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}

/* ── prefers-reduced-motion override ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  #scroll-progress { animation: none !important; }
}
