/* ===========================================================
   Electrician Lawton — Premium Theme
   Bootstrap 5 base + custom design system
=========================================================== */

:root {
  /* Ink (dark) scale — used for dark sections, navbar, mobile panel */
  --navy-950: #060809;
  --navy-900: #0a0e11;
  --navy-800: #131a1f;
  --navy-700: #1c252c;
  --navy-600: #2a3640;
  /* Brand: blue */
  --violet-600: #055c88;
  --violet-500: #0b7fb4;
  --cyan-400: #0b7fb4;
  /* Brand: red */
  --orange-500: #ce2125;
  --orange-600: #a91a1d;
  --orange-400: #ff8b8d;
  /* Secondary accents (kept as light-blue instead of gold, except stars) */
  --gold-400: #0b7fb4;
  --gold-300: #4fa8d6;
  --green-500: #22c55e;
  --ink-900: #0a0e11;
  --paper-0: #ffffff;
  --paper-50: #f7f5f1;
  --paper-100: #eeece5;
  --line-soft: rgba(255,255,255,0.10);
  --grad-brand: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 45%, var(--violet-600) 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(206,33,37,0.14), rgba(5,92,136,0.14));
  --shadow-lg: 0 20px 60px -15px rgba(10,14,17,0.5);
  --shadow-md: 0 10px 30px -10px rgba(10,14,17,0.28);
  --shadow-glow: 0 0 0 1px rgba(206,33,37,0.15), 0 20px 50px -12px rgba(5,92,136,0.35);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-display: 'Space Grotesk', 'Arial', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper-0);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px; /* space for mobile sticky call bar */
}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500);
}

.text-gold { color: var(--gold-400) !important; }
.text-orange { color: var(--orange-500) !important; }
.bg-navy { background-color: var(--navy-900) !important; }
.bg-navy-800 { background-color: var(--navy-800) !important; }
.bg-paper-50 { background-color: var(--paper-50) !important; }
.bg-navy .eyebrow, .bg-navy-800 .eyebrow { color: var(--gold-400); }
.bg-navy .section-lead, .bg-navy-800 .section-lead { color: rgba(255,255,255,0.72); }
.bg-navy .why-item, .bg-navy-800 .why-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
.bg-navy .why-item h4, .bg-navy-800 .why-item h4 { color: #fff; }
.bg-navy .why-item p, .bg-navy-800 .why-item p { color: rgba(255,255,255,0.72); }

/* ---------- Infographic icon color variety ---------- */
.infographic-card:nth-of-type(4n+1) .ig-icon,
.reveal-stagger > *:nth-child(4n+1) .infographic-card .ig-icon { background: linear-gradient(135deg, rgba(206,33,37,0.16), rgba(206,33,37,0.06)); color: var(--orange-500); }
.reveal-stagger > *:nth-child(4n+2) .infographic-card .ig-icon { background: linear-gradient(135deg, rgba(11,127,180,0.18), rgba(11,127,180,0.06)); color: #0891a8; }
.reveal-stagger > *:nth-child(4n+3) .infographic-card .ig-icon { background: linear-gradient(135deg, rgba(5,92,136,0.16), rgba(5,92,136,0.06)); color: var(--violet-600); }
.reveal-stagger > *:nth-child(4n+4) .infographic-card .ig-icon { background: linear-gradient(135deg, rgba(255,139,141,0.22), rgba(255,139,141,0.08)); color: #b8790a; }

/* ---------- Buttons ---------- */
.btn-call, .btn-red-solid {
  position: relative;
  background: var(--orange-500);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  box-shadow: 0 12px 28px -8px rgba(206,33,37,0.45);
  transition: transform .15s ease, box-shadow .15s ease, background-color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.btn-call:hover, .btn-call:focus, .btn-red-solid:hover, .btn-red-solid:focus {
  color: #fff;
  background: var(--orange-600);
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 18px 38px -8px rgba(206,33,37,0.55);
}
.btn-call.btn-lg, .btn-red-solid.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.15rem; }
.btn-call .pulse-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 rgba(255,255,255,0.7);
  animation: pulse-white 1.6s infinite;
}
@keyframes pulse-white {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.btn-outline-light-premium {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  transition: all .15s ease;
}
.btn-outline-light-premium:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }

/* ---------- Top strip ---------- */
.top-strip {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1051;
  background: var(--navy-900);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  text-align: center;
  transition: transform .3s ease, opacity .3s ease;
}
.top-strip.is-hidden { transform: translateY(-100%); opacity: 0; }
.top-strip a { color: rgba(255,255,255,0.82); text-decoration: none; }
.top-strip a:hover { color: var(--orange-400); }
.top-strip .strip-sep { color: rgba(255,255,255,0.3); margin: 0 0.5rem; }
.top-strip i { color: var(--orange-500); margin-right: 0.35rem; font-size: 0.72rem; }

/* ---------- Floating glass pill nav ---------- */
.navbar-pill-wrap {
  position: fixed; left: 0; right: 0; z-index: 1050;
  top: var(--top-strip-h, 34px);
  display: flex; justify-content: center;
  padding: 0 1rem;
  transition: top .3s ease;
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .top-strip .strip-sep:last-of-type,
  .top-strip span:last-child { display: none; }
}
.navbar-pill-wrap.at-top { top: 0; }
.navbar-pill {
  pointer-events: auto;
  width: 100%; max-width: 1180px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  margin-top: 0.85rem;
  transition: padding .2s ease, margin-top .2s ease, background .2s ease;
}
.navbar-pill.scrolled {
  margin-top: 0.5rem;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 14px 34px -14px rgba(10,14,17,0.35);
}
.navbar-brand-premium {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-pill .navbar-brand-premium { color: var(--navy-900) !important; }
.navbar-brand-premium .brand-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(206,33,37,0.18);
  flex: 0 0 auto;
}
.navbar-pill-links {
  display: flex; align-items: center; gap: 0.15rem;
}
.nav-link-premium {
  position: relative;
  color: rgba(10,14,17,0.72) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.9rem !important;
  border-radius: 999px;
  transition: all .15s ease;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.nav-link-premium:hover, .nav-link-premium.active {
  color: var(--orange-500) !important;
}
.navbar-pill-right { display: flex; align-items: center; gap: 0.5rem; flex: 0 0 auto; }
.btn-pill-cta {
  background: var(--navy-900);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all .18s ease;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-pill-cta:hover {
  background: var(--orange-500);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(206,33,37,0.55);
}
.navbar-toggler-premium {
  border: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .15s ease;
}
.navbar-toggler-premium:active { transform: scale(0.94); }
.navbar-toggler-premium:focus { box-shadow: 0 0 0 3px rgba(206,33,37,0.4); }

/* ---------- Mega menu (hover-triggered) ---------- */
.mega-trigger { position: relative; }
.mega-bridge {
  position: absolute; left: 0; right: 0; top: 100%; height: 20px;
  background: transparent;
}
.mega-panel {
  position: absolute; left: 50%; top: calc(100% + 14px);
  transform: translateX(-50%) translateY(8px);
  width: min(880px, 82vw);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--paper-100);
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  overflow: hidden;
  z-index: 1060;
}
.mega-trigger:hover .mega-panel {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega-panel::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--grad-brand);
}
.mega-panel-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.1fr;
  gap: 0;
}
.mega-col { padding: 1.5rem 1.1rem; border-right: 1px solid var(--paper-100); }
.mega-col h6 {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(10,14,17,0.45); margin-bottom: 0.9rem;
}
.mega-link {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.55rem 0.4rem; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--navy-900);
  margin: 0 -0.4rem 0.15rem;
  transition: background .15s ease;
}
.mega-link:hover { background: var(--paper-50); }
.mega-link .mega-icon {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9px;
  background: var(--grad-brand-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-500); font-size: 0.9rem;
}
.mega-link strong { display: block; font-size: 0.9rem; font-weight: 700; }
.mega-link small { display: block; color: rgba(10,14,17,0.5); font-size: 0.76rem; font-weight: 500; }
.mega-featured {
  padding: 1.5rem 1.3rem;
  background: linear-gradient(160deg, var(--navy-900), var(--violet-600));
  color: #fff;
  display: flex; flex-direction: column;
}
.mega-featured .eyebrow { color: var(--orange-400); }
.mega-featured h5 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin: 0.5rem 0 0.6rem; }
.mega-featured p { color: rgba(255,255,255,0.78); font-size: 0.85rem; margin-bottom: 1.1rem; }
.mega-featured a {
  margin-top: auto;
  color: #fff; font-weight: 700; font-size: 0.88rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.mega-featured a:hover { color: var(--orange-400); }

/* ---------- Offcanvas mobile menu (stylish) ---------- */
.offcanvas-premium {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%);
  color: #fff;
  width: min(86vw, 380px) !important;
  border-left: 2px solid transparent;
  border-image: linear-gradient(180deg, var(--orange-500), var(--violet-600)) 1;
}
.offcanvas-premium .offcanvas-header { border-bottom: 1px solid var(--line-soft); padding: 1.25rem 1.25rem 1rem; }
.offcanvas-premium .offcanvas-body { padding: 1.25rem; }
.offcanvas-nav .nav-link {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
}
.offcanvas-nav .nav-link i { color: var(--orange-500); font-size: 1.1rem; transition: transform .25s ease; }
.offcanvas-nav .nav-link[aria-expanded="true"] i.fa-chevron-down { transform: rotate(180deg); color: var(--gold-400); }
.offcanvas-sub { padding-left: 0.5rem; }
.offcanvas-sub a {
  color: rgba(255,255,255,0.75);
  font-size: 0.98rem;
  font-weight: 500;
  padding: 0.55rem 0.25rem;
  display: block;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.offcanvas-sub a:hover { color: var(--gold-400); }
.offcanvas-cta {
  margin-top: 1.25rem;
  background: var(--grad-brand-soft);
  border: 1px solid rgba(206,33,37,0.35);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.offcanvas-cta small { color: rgba(255,255,255,0.7); display:block; margin-bottom: 0.5rem; }
.btn-close-premium {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.85;
}
.btn-red-solid {
  background: var(--orange-500);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  border: none;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all .18s ease;
}
.btn-red-solid:hover { background: var(--orange-600); color: #fff; transform: translateY(-2px); }
.offcanvas-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.offcanvas-contact a { color: rgba(255,255,255,0.85); text-decoration: none; }
.offcanvas-contact a:hover { color: var(--orange-400); }
.offcanvas-contact i { width: 18px; color: var(--orange-500); }

/* ---------- Sticky mobile call bar ---------- */
.sticky-call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040;
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
  padding: 0.7rem 1rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.35);
}
.sticky-call-bar a {
  color: #fff; text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; gap: 0.6rem;
}
@media (min-width: 992px) { .sticky-call-bar { display: none; } body { padding-bottom: 0; } }

/* Floating desktop call button */
.floating-call-desktop {
  position: fixed; right: 28px; bottom: 28px; z-index: 1030;
}
@media (max-width: 991.98px) { .floating-call-desktop { display: none; } }

/* ---------- Hero ---------- */
.hero-premium {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  padding-top: 10.75rem;
  padding-bottom: 6.75rem;
  overflow: hidden;
}
/* Aurora glow blobs: blue top-right, red bottom-left */
.hero-premium::before {
  content: "";
  position: absolute; inset: -10%;
  background:
    radial-gradient(36% 42% at 88% 6%, rgba(5,92,136,0.45), transparent 70%),
    radial-gradient(36% 42% at 6% 94%, rgba(206,33,37,0.4), transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}
/* Grid-line overlay, masked so it's strongest in the center */
.hero-premium::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(55% 55% at 50% 38%, #000 0%, transparent 78%);
  mask-image: radial-gradient(55% 55% at 50% 38%, #000 0%, transparent 78%);
  pointer-events: none;
}
.hero-premium .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  font-weight: 700; font-size: 0.82rem;
  border-radius: 999px; padding: 0.45rem 0.95rem;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 rgba(34,197,94,0.6);
  animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero-title { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.hero-title .accent { color: var(--gold-400); }
.hero-title .accent-red { color: var(--orange-400); }

/* Word-by-word headline reveal */
.js-headline-animate.headline-animated { visibility: visible; }
.word-mask { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.word { display: inline-block; transform: translateY(115%); opacity: 0; transition: transform .65s cubic-bezier(.19,.86,.29,1), opacity .5s ease; }
.js-headline-animate.in-view .word { transform: translateY(0); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .word { transform: none; opacity: 1; transition: none; }
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.78); max-width: 46ch; }

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; display:block; }
.hero-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,11,20,0) 40%, rgba(7,11,20,0.75));
}
.hero-media-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(7,11,20,0.75);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  color: #fff; font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
}

.trust-strip {
  border-top: 1px solid var(--line-soft);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.55rem; color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.92rem; }
.trust-item i { color: var(--gold-400); font-size: 1.15rem; }

/* ---------- Centered hero layout ---------- */
.hero-center { max-width: 800px; margin: 0 auto; text-align: center; }
.hero-center .hero-sub { margin-left: auto; margin-right: auto; }
.hero-center .trust-strip,
.hero-center .d-flex.flex-wrap.gap-3 { justify-content: center; }
.hero-showcase {
  max-width: 980px;
  margin: 3rem auto 0;
  position: relative;
}
.hero-glass-frame {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: calc(var(--radius-lg) + 10px);
  padding: 0.6rem;
  box-shadow: var(--shadow-lg);
}
.hero-showcase .hero-media { aspect-ratio: 16/7; border-radius: var(--radius-lg); }
@media (max-width: 767.98px) {
  .hero-showcase .hero-media { aspect-ratio: 4/3; }
}

/* ---------- Emergency cards (What's your emergency) ---------- */
.emergency-card {
  background: var(--paper-0);
  border: 1px solid var(--paper-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
  color: var(--ink-900);
  display: block;
  position: relative;
  will-change: transform;
}
.emergency-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.emergency-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-glow);
  border-color: transparent;
  color: var(--ink-900);
}
.emergency-card:hover::before { opacity: 1; }
.emergency-card .icon-badge {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--grad-brand-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-500); font-size: 1.6rem;
  margin-bottom: 1rem;
  transition: transform .3s ease;
}
.emergency-card:hover .icon-badge { transform: rotate(-8deg) scale(1.08); }
.emergency-card h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.emergency-card p { color: #5b6472; font-size: 0.95rem; margin-bottom: 0.9rem; }
.emergency-card .card-cta { color: var(--orange-500); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 0.35rem; }

/* ---------- Section headers ---------- */
.section-pad { padding-top: 5.5rem; padding-bottom: 5.5rem; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.section-lead { color: #5b6472; max-width: 62ch; }

/* ---------- Why us ---------- */
.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.4rem; border-radius: var(--radius-md);
  background: var(--paper-50);
  height: 100%;
}
.why-item .why-icon {
  flex: 0 0 auto;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy-900); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.why-item h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.why-item p { color: #5b6472; font-size: 0.92rem; margin: 0; }

/* ---------- Services grid ---------- */
.service-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 260px;
  display: block;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}
.service-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-tile:hover img { transform: scale(1.07); }
.service-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,11,20,0.05), rgba(7,11,20,0.92));
}
.service-tile-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.25rem;
}
.service-tile-body h3 { font-size: 1.15rem; margin-bottom: 0.2rem; color: #fff; }
.service-tile-body p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin: 0; }
.service-tile-body .arrow { color: var(--gold-400); }

/* ---------- Service area ---------- */
.zip-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #fff; border: 1px solid var(--paper-100);
  border-radius: 999px; padding: 0.5rem 1rem; font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}
.zip-chip i { color: var(--orange-500); }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 1.75rem; height: 100%;
  border: 1px solid var(--paper-100);
  box-shadow: var(--shadow-md);
}
.testimonial-card .stars { color: #f5b400; letter-spacing: 2px; margin-bottom: 0.75rem; }
.testimonial-card p.quote { color: var(--ink-900); font-size: 0.98rem; }
.testimonial-card .author { display: flex; align-items: center; gap: 0.6rem; margin-top: 1rem; }
.testimonial-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--gold-400));
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700;
}
.testimonial-card .author strong { display: block; font-size: 0.92rem; }
.testimonial-card .author span { font-size: 0.8rem; color: #8a93a3; }

/* ---------- FAQ accordion ---------- */
.accordion-premium .accordion-item {
  border: 1px solid var(--paper-100);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 0.85rem;
}
.accordion-premium .accordion-button {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  padding: 1.15rem 1.25rem;
  color: var(--ink-900);
}
.accordion-premium .accordion-button:not(.collapsed) {
  background: rgba(206,33,37,0.06);
  color: var(--orange-600);
  box-shadow: none;
}
.accordion-premium .accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-premium .accordion-body { color: #5b6472; padding: 0 1.25rem 1.25rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--orange-600), var(--orange-500) 38%, #ff3d6e 68%, var(--violet-600));
  background-size: 180% 180%;
  animation: cta-gradient-shift 10s ease infinite;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@keyframes cta-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.08) 0px, rgba(255,255,255,0.08) 1px, transparent 1px, transparent 70px);
}
.cta-band .btn-call { background: #0b1220; animation: none; box-shadow: 0 12px 28px -8px rgba(0,0,0,0.4); }
.cta-band .btn-call::before { display: none; }
.cta-band .btn-call:hover { background: #141f36; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }
.reveal-stagger > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: .02s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .10s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .18s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: .34s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: .42s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: .50s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: .58s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn-call, .cta-band, .hero-premium::before { animation: none !important; }
}

/* ---------- Stat counters ---------- */
.stat-band {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.stat-band::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange-500), var(--cyan-400), var(--violet-600));
}
.stat-item { text-align: center; padding: 2.25rem 1rem; position: relative; }
.stat-item + .stat-item::before {
  content: "";
  position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px;
  background: var(--line-soft);
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.72); font-weight: 600; font-size: 0.88rem; margin-top: 0.5rem; }

/* ---------- Post-hero stat strip (light, alternating red/blue) ---------- */
.stat-strip {
  background: var(--paper-50);
  border-bottom: 1px solid var(--paper-100);
  position: relative;
}
.stat-strip .stat-item { padding: 2.4rem 1rem; }
.stat-strip .stat-item + .stat-item::before { background: var(--paper-100); }
.stat-strip .stat-number {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--orange-500);
}
.stat-strip [class*="col-"]:nth-child(even) .stat-number { color: var(--violet-600); }
.stat-strip .stat-label { color: rgba(10,14,17,0.6); }

/* ---------- Tilt cards ---------- */
.tilt-card { transform-style: preserve-3d; transition: transform .2s ease; }

/* ---------- Info-graphic strip (icon + stat mini cards) ---------- */
.infographic-card {
  background: #fff;
  border: 1px solid var(--paper-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.infographic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.infographic-card .ig-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--grad-brand-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-500); font-size: 1.3rem; margin-bottom: 0.85rem;
}
.infographic-card h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.infographic-card p { font-size: 0.85rem; color: #5b6472; margin: 0; }
.infographic-card .ig-num {
  position: absolute; right: 14px; top: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  color: var(--paper-100); z-index: 0;
}

/* ---------- Footer ---------- */
.footer-premium { background: var(--navy-950); color: rgba(255,255,255,0.72); }
.footer-premium h5 { color: #fff; font-family: var(--font-display); font-size: 1.15rem; }
.footer-premium a { color: rgba(255,255,255,0.68); text-decoration: none; }
.footer-premium a:hover { color: var(--gold-400); }
.footer-nap i { color: var(--orange-500); width: 20px; }
.footer-bottom { border-top: 1px solid var(--line-soft); font-size: 0.85rem; }
.social-dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all .15s ease;
}
.social-dot:hover { background: var(--orange-500); }

/* ---------- Inner page hero (service pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: #fff;
  padding-top: 8.5rem; padding-bottom: 3rem;
  position: relative;
}
.breadcrumb-premium { font-size: 0.85rem; }
.breadcrumb-premium a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb-premium a:hover { color: var(--gold-400); }
.breadcrumb-premium .sep { color: rgba(255,255,255,0.35); margin: 0 0.4rem; }

.symptom-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.55rem 0; font-weight: 500;
}
.symptom-list li i { color: var(--orange-500); margin-top: 0.2rem; }

.step-num {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--navy-900); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.related-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-radius: var(--radius-md);
  background: var(--paper-50); text-decoration: none; color: var(--ink-900);
  font-weight: 600; transition: all .15s ease;
}
.related-link:hover { background: rgba(206,33,37,0.08); color: var(--orange-600); }

/* ---------- Utility ---------- */
.shadow-soft { box-shadow: var(--shadow-md); }
.rounded-premium { border-radius: var(--radius-lg); }
.divider-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange-500); display:inline-block; }

@media (max-width: 575.98px) {
  .section-pad { padding-top: 3.25rem; padding-bottom: 3.25rem; }
  .hero-premium { padding-top: 6rem; padding-bottom: 3rem; }
  .cta-band { padding: 2.25rem 1.25rem; text-align: center; }
}
