/* ============================================================
   EZ AIR — Premium Design System v2
   Palette: Navy #0B2545 | Crimson #C8102E | Cream #F7F5F2
   Fonts: DM Serif Display + Oswald + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Oswald:wght@400;500;600;700&display=swap');

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

:root {
  --navy:       #0B2545;
  --navy-deep:  #071830;
  --navy-mid:   #133366;
  --crimson:    #C8102E;
  --crimson-dk: #9E0B24;
  --crimson-lt: #E8314E;
  --cream:      #F7F5F2;
  --cream2:     #EEEAE4;
  --slate:      #3D5166;
  --slate-lt:   #6B8299;
  --white:      #FFFFFF;
  --black:      #0A0D12;
  --text:       #1C2B3A;
  --text-soft:  #5A6E7F;
  --border:     #DDE3EA;
  --border-dk:  rgba(255,255,255,0.10);
  --r: 0.3rem;
  --r-lg: 0.75rem;
  --shadow-sm: 0 2px 8px rgba(11,37,69,0.08);
  --shadow-md: 0 8px 32px rgba(11,37,69,0.12);
  --shadow-lg: 0 20px 64px rgba(11,37,69,0.18);
  --shadow-xl: 0 32px 80px rgba(11,37,69,0.22);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --t: 0.3s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--crimson);
  flex-shrink: 0;
}
.eyebrow.light { color: rgba(255,255,255,0.6); }
.eyebrow.light::before { background: var(--crimson-lt); }

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0.75rem 0 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 520px;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--r);
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
  box-shadow: 0 4px 16px rgba(200,16,46,0.3);
}
.btn-primary:hover {
  background: var(--crimson-dk);
  border-color: var(--crimson-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,16,46,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-white {
  background: var(--white);
  color: var(--crimson);
  border-color: var(--white);
  font-weight: 600;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.15); }
.btn-outline-red {
  background: transparent;
  color: var(--crimson);
  border-color: var(--crimson);
}
.btn-outline-red:hover { background: var(--crimson); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 0.95rem; }

/* ── LAYOUT ── */
.section { padding: 7rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { margin-bottom: 3.5rem; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy-deep);
  padding: 0.55rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.topbar-item i { color: var(--crimson); font-size: 0.75rem; }
.topbar-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.topbar-item a:hover { color: var(--white); }
.topbar-right { display: flex; align-items: center; gap: 0.9rem; }
.topbar-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.topbar-phone i { color: var(--crimson-lt); }
.topbar-phone:hover { color: var(--crimson-lt); }
.topbar-pill {
  background: var(--crimson);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.2s;
}
.topbar-pill:hover { background: var(--crimson-dk); }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navy);
  transition: box-shadow 0.3s ease;
  overflow: visible;
}
.navbar.elevated { box-shadow: 0 6px 28px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 84px;
  gap: 2rem;
  position: relative;
  overflow: visible;
}
/* ── OVERHANGING LOGO — half in / half out of navbar ── */
.nav-logo {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  /* navbar = 84px tall, logo-img = 230px.
     Flex centers items at 42px from top.
     Shift down so logo center lands at navbar bottom (84px): 84 - 42 = 42px */
  top: 42px;
  /* Logo hangs into hero — must NOT block hero clicks below */
  pointer-events: none;
  z-index: 1010;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}
/* Re-enable pointer events only on the logo image itself */
.nav-logo a, .nav-logo-img {
  pointer-events: auto;
}
.nav-logo:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 24px rgba(200,16,46,0.3));
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%);
}
.logo-mark span {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-wordmark { line-height: 1; }
.logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-name span { color: var(--crimson); }
.logo-tagline {
  font-size: 0.56rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 0 1.1rem;
  height: 84px;
  display: flex;
  align-items: center;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--crimson);
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  background: var(--navy-deep);
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 998;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--white); padding-left: 0.5rem; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 1rem; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  overflow: visible;
  background: var(--navy);
  padding-top: 130px;
}
/* Bear column — left of text, raised, taller, transparent */
.hero-bear-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 0 0 0.5rem;
  z-index: 3;
  position: relative;
}
.hero-bear-img {
  width: auto;
  height: 520px;
  max-width: none;
  object-fit: contain;
  display: block;
  filter: none;
  background: transparent;
}
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 4rem 0.75rem;
  background: var(--navy);
  grid-column: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: -70px; bottom: 0;
  width: 140px;
  background: var(--navy);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--navy) 0%, rgba(11,37,69,0.55) 30%, rgba(11,37,69,0.1) 65%, transparent 100%);
}

/* Hero decor — pointer-events none so it never blocks clicks */
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}

.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 4.2vw, 4.8rem);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--crimson-lt); }
.hero-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 430px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.trust-chip i {
  width: 18px; height: 18px;
  background: rgba(200,16,46,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson-lt);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* Hero stats bar — sits BELOW the hero in normal document flow */
.hero-stats {
  background: rgba(7,24,48,0.97);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 5;
}
.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 2rem;
}
.stat-block {
  padding: 1.6rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.stat-block:last-child { border-right: none; }
.stat-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--crimson);
  transition: width 0.5s var(--ease);
}
.stat-block:hover::after { width: 50%; }
.stat-val {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-val .accent { color: var(--crimson-lt); }
.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── TRUST BADGES ── */
.trust-band {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 2rem;
}
.trust-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 2.5rem;
  border-right: 1px solid var(--border);
  transition: var(--t);
}
.trust-badge:last-child { border-right: none; }
.trust-badge:hover { transform: translateY(-1px); }
.tb-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.tb-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.tb-sub { font-size: 0.7rem; color: var(--text-soft); line-height: 1.4; margin-top: 1px; }

/* ── SERVICES GRID ── */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--crimson-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .sc-icon-wrap {
  background: var(--crimson);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(200,16,46,0.3);
}
.sc-icon-wrap {
  width: 54px; height: 54px;
  background: rgba(200,16,46,0.07);
  border: 1px solid rgba(200,16,46,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  transition: all var(--t);
}
.sc-number {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(11,37,69,0.045);
  line-height: 1;
  user-select: none;
}
.sc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.sc-desc {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
  transition: gap 0.2s;
  margin-top: auto;
}
.sc-link:hover { gap: 0.7rem; }

/* ── PROCESS ── */
.process-section { background: var(--navy); }
.process-section .section-title { color: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.process-step {
  padding: 2.5rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(255,255,255,0.025); }
.ps-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.ps-icon {
  width: 44px; height: 44px;
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson-lt);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.ps-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.ps-desc { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.75; }
.ps-arrow {
  position: absolute;
  top: 2.5rem; right: -13px;
  width: 26px; height: 26px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 0.65rem;
  z-index: 2;
}
.process-step:last-child .ps-arrow { display: none; }

/* ── WHY US ── */
.why-section { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-img-col { position: relative; }
.why-img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.why-img-frame img { width: 100%; height: 540px; object-fit: cover; }
.why-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,37,69,0.45) 100%);
}
.why-cert {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  width: 136px;
  z-index: 5;
}
.why-cert .cert-val {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
}
.why-cert .cert-lbl {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.45;
  margin-top: 4px;
}
.why-accent {
  position: absolute;
  top: 2rem; left: -1.5rem;
  width: 4px; height: 80px;
  background: linear-gradient(to bottom, var(--crimson), transparent);
  border-radius: 2px;
  z-index: 5;
}
.why-text-col .section-title { color: var(--navy); }
.why-intro { font-size: 0.95rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 2.5rem; }
.why-points { display: flex; flex-direction: column; }
.why-point {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left var(--t);
}
.why-point:first-child { padding-top: 0; }
.why-point:last-child { border-bottom: none; }
.why-point:hover { padding-left: 0.25rem; }
.wp-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson-lt);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.wp-body h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.wp-body p { font-size: 0.85rem; color: var(--text-soft); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.review-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem 1.5rem;
}
.review-score {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
}
.review-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.2rem; }
.review-count { font-size: 0.75rem; color: var(--text-soft); font-weight: 500; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--t);
}
.testi-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testi-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--crimson);
  line-height: 0.6;
  margin-bottom: 1rem;
  opacity: 0.35;
}
.testi-card.featured .quote-mark { opacity: 0.2; color: var(--crimson-lt); }
.testi-stars { color: #F59E0B; font-size: 0.78rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-card.featured .testi-text { color: rgba(255,255,255,0.7); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.testi-card.featured .testi-author { border-top-color: rgba(255,255,255,0.08); }
.testi-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-card.featured .testi-avatar { background: linear-gradient(135deg, var(--crimson), var(--crimson-dk)); }
.testi-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.testi-card.featured .testi-name { color: var(--white); }
.testi-loc { font-size: 0.73rem; color: var(--text-soft); margin-top: 2px; }
.testi-card.featured .testi-loc { color: rgba(255,255,255,0.4); }

/* ── FINANCING ── */
.financing-section { background: var(--navy); overflow: hidden; position: relative; }
.financing-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(200,16,46,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.financing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.financing-text .section-title { color: var(--white); }
.financing-body { font-size: 0.96rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 2.5rem; }
.fin-options { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.5rem; }
.fin-opt {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  transition: all var(--t);
}
.fin-opt:hover { border-color: rgba(200,16,46,0.3); background: rgba(200,16,46,0.05); }
.fin-opt-icon {
  width: 40px; height: 40px;
  background: rgba(200,16,46,0.14);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson-lt);
  font-size: 1rem;
  flex-shrink: 0;
}
.fin-opt-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fin-opt-desc { font-size: 0.76rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

.fin-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fin-visual::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(200,16,46,0.04) 60deg, transparent 120deg);
  animation: rotatebg 14s linear infinite;
}
@keyframes rotatebg { to { transform: rotate(360deg); } }
.fin-big {
  position: relative;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.fin-big em { font-style: italic; color: var(--crimson-lt); }
.fin-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
}
.fin-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
}
.fin-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── AREA STRIP ── */
.area-strip {
  background: var(--cream);
  padding: 3.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.area-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}
.area-label {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  white-space: nowrap;
  padding-right: 3rem;
  border-right: 2px solid var(--border);
}
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.area-tag {
  padding: 0.38rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
  transition: all var(--t);
  cursor: default;
}
.area-tag:hover { border-color: var(--navy); color: var(--navy); }
.area-tag.more-link {
  border-color: var(--crimson);
  color: var(--crimson);
  font-weight: 600;
}
.area-tag.more-link:hover { background: var(--crimson); color: var(--white); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--crimson);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: 'EZ AIR';
  position: absolute;
  font-family: 'DM Serif Display', serif;
  font-size: 22vw;
  color: rgba(0,0,0,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.cta-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 1rem;
}
.cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.72); margin-bottom: 2.5rem; line-height: 1.65; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }

/* ── CONTACT STRIP ── */
.contact-strip { background: var(--white); }
.contact-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.cs-info .section-title { color: var(--navy); }
.cs-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.cs-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson-lt);
  font-size: 1rem;
  flex-shrink: 0;
}
.cs-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.2rem; }
.cs-val { font-size: 0.92rem; font-weight: 500; color: var(--navy); line-height: 1.55; }
.cs-val a { color: var(--navy); transition: color 0.2s; }
.cs-val a:hover { color: var(--crimson); }

.contact-form-panel {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
}
.fp-title { font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; }
.fp-sub { font-size: 0.83rem; color: var(--text-soft); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,37,69,0.07);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ── */
footer { background: var(--navy-deep); }
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 3rem;
}
.footer-about {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  margin-top: 1.25rem;
  max-width: 260px;
}
.footer-socials { display: flex; gap: 0.55rem; margin-top: 1.75rem; }
.footer-soc {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  transition: all var(--t);
  cursor: pointer;
}
.footer-soc:hover { border-color: var(--crimson); color: var(--crimson); }
.footer-col h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col li a { font-size: 0.83rem; color: rgba(255,255,255,0.38); transition: color 0.2s, padding-left 0.2s; }
.footer-col li a:hover { color: rgba(255,255,255,0.8); padding-left: 4px; }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.55;
}
.footer-contact-row i { color: var(--crimson); margin-top: 2px; flex-shrink: 0; font-size: 0.75rem; }
.footer-contact-row a { color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-contact-row a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.22);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.22); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.55); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: var(--navy);
  /* top: clear navbar (84px) + logo overhang (115px) + gap = ~210px */
  padding: 5rem 2rem 4.5rem;
  padding-top: 210px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 450px; height: 450px;
  background: radial-gradient(ellipse, rgba(200,16,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 1200px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--crimson-lt); }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.75;
}

/* ── SERVICE QUICK NAV ── */
.service-nav {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow-x: auto;
  scrollbar-width: none;
}
.service-nav::-webkit-scrollbar { display: none; }
.service-nav-inner { max-width: 1200px; margin: 0 auto; display: flex; white-space: nowrap; }
.sn-item {
  padding: 1.1rem 1.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.sn-item:hover { color: var(--white); border-bottom-color: var(--crimson); }
.sn-item i { font-size: 0.85em; color: var(--crimson); }

/* ── SERVICES DETAIL PAGE ── */
.service-detail-section { padding: 5.5rem 2rem; }
.service-detail-section:nth-child(even) { background: var(--cream); }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.service-detail.reverse .sd-img { order: 2; }
.service-detail.reverse .sd-text { order: 1; }
.sd-img { position: relative; }
.sd-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sd-frame img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.6s ease; }
.sd-frame:hover img { transform: scale(1.03); }
.sd-badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: var(--crimson);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 0.9rem;
  border-radius: var(--r);
}
.sd-text .section-title { font-size: 2.2rem; color: var(--navy); margin: 0.5rem 0 1rem; }
.sd-text p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 0.75rem; }
.sd-features { margin: 1.5rem 0 2rem; }
.sd-feat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}
.sd-feat:last-child { border-bottom: none; }
.sd-check {
  width: 20px; height: 20px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.55rem;
  flex-shrink: 0;
}

/* ── AREAS PAGE ── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}
.city-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: all var(--t);
  cursor: default;
}
.city-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--cream);
}
.city-pin { color: var(--crimson); font-size: 0.92rem; flex-shrink: 0; }
.city-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── CONTACT PAGE ── */
.contact-page { background: var(--cream); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4.5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.hours-list { margin-top: 1.5rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--navy); }
.hours-time { color: var(--text-soft); }
.hours-row.emg { background: rgba(200,16,46,0.05); border-radius: var(--r); padding: 0.7rem 0.5rem; margin-top: 0.25rem; }
.hours-row.emg .hours-day,
.hours-row.emg .hours-time { color: var(--crimson); font-weight: 700; }
.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 2px solid var(--border); margin-top: 2rem; line-height: 0; }

/* ── EMERGENCY PAGE ── */
.emg-page { background: #07040C; min-height: 100vh; }
.emg-hero {
  background: #07040C;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.emg-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(200,16,46,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 70% 30% at 50% 95%, rgba(200,16,46,0.04) 0%, transparent 50%);
}
.emg-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
}
.emg-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.emg-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(200,16,46,0.28);
  background: rgba(200,16,46,0.07);
  color: rgba(255,255,255,0.65);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 2rem;
}
.emg-dot { width: 6px; height: 6px; background: var(--crimson); border-radius: 50%; animation: emgdot 1.2s infinite; }
@keyframes emgdot { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.3; transform:scale(0.5); } }
.emg-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.emg-title em { font-style: italic; color: var(--crimson-lt); }
.emg-sub { font-size: 1rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 2.5rem; }
.emg-phone-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--crimson-lt);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  animation: phoneglow 2s infinite alternate;
}
@keyframes phoneglow {
  from { text-shadow: 0 0 20px rgba(200,16,46,0.2); }
  to   { text-shadow: 0 0 50px rgba(200,16,46,0.7), 0 0 100px rgba(200,16,46,0.2); }
}
.emg-ctas { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.emg-feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 1.25rem; margin-top: 4rem; }
.emg-feat {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--t);
}
.emg-feat:hover { background: rgba(200,16,46,0.06); border-color: rgba(200,16,46,0.18); }
.emg-feat-icon { font-size: 1.7rem; margin-bottom: 0.75rem; }
.emg-feat h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.emg-feat p { font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.75; }

/* ── PHONE FAB ── */
.phone-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900; display: none; }
@media (max-width: 768px) { .phone-fab { display: block; } }
.phone-fab a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--crimson);
  color: var(--white);
  padding: 0.9rem 1.5rem;
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 32px rgba(200,16,46,0.5);
  animation: fabfloat 3s ease-in-out infinite;
}
@keyframes fabfloat { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-5px); } }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(26px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 1fr; min-height: auto; padding-top: 140px; }
  .hero-bear-col { display: none; }
  .hero-left { grid-column: 1; padding: 3rem 2.5rem 4rem; }
  .hero-left::after { display: none; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-cert { right: 1rem; }
  .financing-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .area-strip-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .area-label { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 1rem; font-size: 1.2rem; }
  .service-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail.reverse .sd-img,
  .service-detail.reverse .sd-text { order: 0; }
}
@media (max-width: 768px) {
  .topbar { flex-direction: column; gap: 0.5rem; padding: 0.75rem 1.5rem; }
  .topbar-left { flex-wrap: wrap; justify-content: center; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-logo { top: 28px; padding: 0; background: transparent; box-shadow: none; }
  .nav-logo-img { height: 110px; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-left { grid-column: 1; padding: 3rem 1.5rem 4rem; }
  .hero-stats-inner { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-band-inner { flex-direction: column; }
  .trust-badge { border-right: none; border-bottom: 1px solid var(--border); width: 100%; padding: 1rem 1.5rem; }
  .trust-badge:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 1.5rem; }
  .emg-feats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-left { padding: 5.5rem 1.5rem 4rem; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-val { font-size: 1.6rem; }
  .section { padding: 4rem 1.25rem; }
  .emg-feats { grid-template-columns: 1fr; }
}
/* ── HCP WIDGETS ── */
.hcp-section { background: var(--white); }
.hcp-reviews-wrap {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.hcp-reviews-wrap iframe {
  width: 100%;
  max-width: 1000px;
  height: 1000px;
  border: none;
  display: block;
}
.hcp-form-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.hcp-form-wrap iframe {
  width: 100%;
  min-height: 640px;
  border: none;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

/* ── QUOTE MODAL ── */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,24,48,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.quote-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.quote-modal {
  background: var(--white);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.quote-modal-overlay.open .quote-modal {
  transform: translateY(0);
}
.qm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  border-bottom: 1.5px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}
.qm-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
}
.qm-close {
  width: 36px; height: 36px;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.2s;
}
.qm-close:hover { background: var(--crimson); color: var(--white); }
.qm-body { padding: 2rem; }
.qm-body iframe {
  width: 100%;
  min-height: 540px;
  border: none;
  display: block;
}

/* ── BTN BOOK ── */
.btn-book {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
  box-shadow: 0 4px 16px rgba(200,16,46,0.3);
}
.btn-book:hover {
  background: var(--crimson-dk);
  border-color: var(--crimson-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,16,46,0.45);
}

/* ── REVIEWS SECTION HEADER ── */
.reviews-rating-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.rrb-score {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--navy);
  line-height: 1;
}
.rrb-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; margin: 0.3rem 0 0.2rem; }
.rrb-count { font-size: 0.8rem; color: var(--text-soft); font-weight: 500; }
.rrb-divider { width: 1.5px; height: 60px; background: var(--border); }
.rrb-platforms { display: flex; gap: 1rem; flex-wrap: wrap; }
.rrb-platform {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.rrb-platform i { color: var(--crimson); }

/* ── NAV LOGO IMAGE ── */
.nav-logo-img {
  height: 230px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.45));
  transition: filter 0.25s ease;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1.5px solid var(--border);
  padding: 1.5rem 0;
}
.faq-q {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.faq-a {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.8;
  padding-left: 1.75rem;
}

/* ── HERO BEAR LOGO ── */
.hero-bear-col-mobile { display: none; } /* mobile only fallback */

@keyframes bearbob {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-14px) scale(1.01); }
}

/* ── BRANDS SECTION ── */
.brands-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.brands-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.brands-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
  padding-right: 2rem;
  border-right: 1.5px solid var(--border);
  flex-shrink: 0;
}
.brands-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s var(--ease);
}
.brand-item:hover { transform: translateY(-2px); }
.brand-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--cream);
  min-width: 140px;
  transition: border-color 0.2s, background 0.2s;
}
.brand-item:hover .brand-logo-box {
  border-color: var(--navy);
  background: var(--white);
}
.brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
}
.brand-name.lennox { color: #C8102E; }
.brand-name.trane  { color: #0076BE; }
.brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Responsive brands */
@media (max-width: 768px) {
  .brands-label { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 0.75rem; width: 100%; text-align: center; }
  .brands-logos { gap: 1.5rem; }
  .brand-logo-box { min-width: 110px; padding: 0.6rem 1.25rem; }
}

/* ── EXTRA SCROLL EFFECTS ── */
/* Stagger — children animate one after another */
.stagger-children > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* Scale-up fade */
.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Slide up with blur */
.reveal-blur {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out), filter 0.65s var(--ease-out);
}
.reveal-blur.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Count-up number highlight pulse */
@keyframes pulse-accent {
  0%   { text-shadow: 0 0 0 transparent; }
  50%  { text-shadow: 0 0 18px rgba(200,16,46,0.45); }
  100% { text-shadow: 0 0 0 transparent; }
}
.counter-done { animation: pulse-accent 0.9s ease-out forwards; }

/* Horizontal scroll shimmer on trust band */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.trust-band { position: relative; overflow: hidden; }
.trust-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

/* Card hover lift — applied to service cards & why-points */
.service-card, .why-point, .city-card {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(11,37,69,0.14);
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11,37,69,0.12);
}
