/* ============================================================
   ABSOLUTE DRAIN SERVICE LLC — STYLE.CSS
   ============================================================ */

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

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --navy:        #0a1f44;
  --navy-mid:    #0d2857;
  --navy-dark:   #060f22;
  --navy-muted:  rgba(10,31,68,0.07);
  --orange:      #f97316;
  --orange-dark: #ea6c0a;
  --orange-lt:   #fb923c;
  --orange-glow: rgba(249,115,22,0.18);
  --red:         #dc2626;
  --red-dark:    #b91c1c;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-300:    #d1d5db;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --gray-900:    #111827;

  --font-h: 'Montserrat', sans-serif;
  --font-b: 'Open Sans', sans-serif;

  /* Layered, color-tinted shadows */
  --shd-xs: 0 1px 2px rgba(10,31,68,.08);
  --shd-sm: 0 2px 6px rgba(10,31,68,.10), 0 1px 2px rgba(10,31,68,.06);
  --shd-md: 0 4px 16px rgba(10,31,68,.12), 0 2px 6px rgba(10,31,68,.07);
  --shd-lg: 0 10px 32px rgba(10,31,68,.16), 0 4px 12px rgba(10,31,68,.09);
  --shd-xl: 0 20px 48px rgba(10,31,68,.18), 0 8px 20px rgba(10,31,68,.11);
  --shd-or: 0 4px 20px rgba(249,115,22,.30), 0 2px 8px rgba(249,115,22,.18);
  --shd-or-lg: 0 8px 32px rgba(249,115,22,.35), 0 4px 12px rgba(249,115,22,.20);

  --r-sm:   4px;
  --r:      8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  --nav-h:  80px;
  --nav-hs: 64px;   /* scrolled */
  --em-h:   44px;
  --max-w:  1200px;
}

/* ============================================================
   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-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-b); border: none; background: none; }
input, textarea, select { font-family: var(--font-b); }

/* ============================================================
   Typography
   ============================================================ */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); color: var(--navy); line-height: 1.18; }
h1 { font-size: clamp(2.1rem,5vw,3.6rem); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem,3.5vw,2.5rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.15rem,2.5vw,1.45rem); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { line-height: 1.72; }

/* ============================================================
   Container & Layout
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-label {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-divider {
  width: 44px; height: 4px;
  background: var(--orange);
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.section-divider.c { margin-left: auto; margin-right: auto; }
.section-header    { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }
.section-title  { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.02rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.72;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-h);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1),
              box-shadow .22s ease,
              background-color .18s ease,
              border-color .18s ease,
              color .18s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shd-or); }
.btn-primary:hover  { background: var(--orange-dark); box-shadow: var(--shd-or-lg); color: var(--white); }
.btn-primary:active { background: #d4620a; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: var(--white); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); box-shadow: var(--shd-md); }

.btn-outline-or {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-or:hover { background: var(--orange); color: var(--white); box-shadow: var(--shd-or); }

.btn-sm { padding: 10px 20px; font-size: .80rem; }
.btn-lg { padding: 18px 36px; font-size: .98rem; }

/* ============================================================
   Emergency Banner
   ============================================================ */
.emergency-banner {
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  min-height: var(--em-h);
  position: relative;
  z-index: 1010;
}
.emergency-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}
.emergency-banner__tag {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.emergency-banner__tag i { animation: blink 1.6s ease-in-out infinite; }
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(.85); }
}
.emergency-banner__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.30);
  border-radius: var(--r-full);
  padding: 6px 18px;
  font-family: var(--font-h);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--white);
  transition: background .2s ease, transform .2s ease;
}
.emergency-banner__phone:hover { background: rgba(255,255,255,.28); transform: scale(1.02); color: var(--white); }
.emergency-banner__phone:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(10,31,68,.10), 0 1px 4px rgba(10,31,68,.06);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: height .3s ease, box-shadow .3s ease;
}
.navbar.scrolled {
  height: var(--nav-hs);
  box-shadow: 0 4px 24px rgba(10,31,68,.15), 0 2px 6px rgba(10,31,68,.08);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.navbar__logo { flex-shrink: 0; display: flex; align-items: center; }
.navbar__logo img {
  height: 52px;
  width: auto;
  transition: height .3s ease;
}
.navbar.scrolled .navbar__logo img { height: 42px; }

.navbar__nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.navbar__nav a {
  font-family: var(--font-h);
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 8px 12px;
  border-radius: var(--r);
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}
.navbar__nav a:hover         { color: var(--navy); background: var(--navy-muted); }
.navbar__nav a.active        { color: var(--orange); }
.navbar__nav a:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.navbar__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-muted);
  border: 1px solid rgba(10,31,68,.12);
  border-radius: var(--r-full);
  padding: 6px 12px;
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.navbar__badge i { color: var(--orange); font-size: .7rem; }

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--r);
  transition: color .2s ease, background .2s ease;
}
.navbar__phone:hover { color: var(--orange); background: var(--orange-glow); }
.navbar__phone:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.navbar__phone i { color: var(--orange); }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r);
  margin-left: auto;
  transition: background .2s ease;
}
.navbar__hamburger:hover { background: var(--gray-100); }
.navbar__hamburger:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.navbar__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.navbar__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__inner {
  padding: 96px 32px 40px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.mobile-menu__close {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--white);
  font-size: 1.4rem;
  padding: 8px;
  border-radius: var(--r);
  transition: background .2s ease;
}
.mobile-menu__close:hover { background: rgba(255,255,255,.10); color: var(--white); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 36px; }
.mobile-menu nav a {
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s ease, padding-left .2s ease;
}
.mobile-menu nav a:hover { color: var(--orange); padding-left: 12px; }
.mobile-menu nav a:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.mobile-menu__footer {
  margin-top: auto;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}
.mobile-menu__footer p { margin-bottom: 10px; }
.mobile-menu__phone-big {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.mobile-menu__phone-big i { color: var(--orange); }

/* ============================================================
   Hero (Home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark) url('Website_images/RenoGettyImages-1395807707.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(6,15,34,.88) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 25%, rgba(249,115,22,.07) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 85%, rgba(10,31,68,.75) 0%, transparent 60%),
    linear-gradient(135deg, rgba(6,15,34,.87) 0%, rgba(10,31,68,.78) 45%, rgba(6,18,41,.90) 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
  z-index: 1;
}
.hero__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero__ring-1 {
  width: 600px; height: 600px;
  border: 80px solid rgba(249,115,22,.04);
  right: -80px; top: 50%; transform: translateY(-50%);
}
.hero__ring-2 {
  width: 360px; height: 360px;
  border: 40px solid rgba(255,255,255,.02);
  right: 80px; top: 50%; transform: translateY(-50%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  width: 100%;
}
.hero__inner { max-width: 720px; }
.hero__logo { margin-bottom: 32px; max-width: 340px; }
.hero__logo img {
  width: 100%; height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.45));
}
.hero__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-h);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem,5vw,3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero__title em { color: var(--orange); font-style: normal; }
.hero__subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,.72);
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.65);
  font-size: .80rem;
  font-family: var(--font-h);
  font-weight: 600;
  letter-spacing: .02em;
}
.hero__trust-item i { color: var(--orange); font-size: .85rem; }

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(249,115,22,.07) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(13,40,87,.5) 0%, transparent 50%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .78rem; font-family: var(--font-h); font-weight: 600;
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s ease; }
.page-hero__breadcrumb a:hover { color: var(--orange); }
.page-hero__breadcrumb i { font-size: .65rem; }
.page-hero__title    { color: var(--white); margin-bottom: 14px; }
.page-hero__subtitle { color: rgba(255,255,255,.68); font-size: 1.02rem; max-width: 540px; }

/* ============================================================
   Services Grid (Home)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1),
              box-shadow .25s ease,
              border-color .25s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shd-lg); border-color: var(--gray-100); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(249,115,22,.12) 0%, rgba(249,115,22,.05) 100%);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform .25s ease, background .25s ease;
}
.service-card:hover .service-card__icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(249,115,22,.20) 0%, rgba(249,115,22,.10) 100%);
}
.service-card__icon i { font-size: 1.45rem; color: var(--orange); }
.service-card__title { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: -.01em; }
.service-card__desc  { font-size: .87rem; color: var(--gray-500); line-height: 1.72; margin-bottom: 20px; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-h); font-size: .80rem; font-weight: 700;
  color: var(--orange); letter-spacing: .02em;
  transition: gap .2s ease, color .2s ease;
}
.service-card__link:hover { gap: 12px; color: var(--orange-dark); }
.service-card__link:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 2px; }

/* ============================================================
   Services Page — Detail Sections
   ============================================================ */
.service-section { padding: 60px 0; border-bottom: 1px solid var(--gray-100); }
.service-section:last-of-type { border-bottom: none; }
.service-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-section__inner.rev { direction: rtl; }
.service-section__inner.rev > * { direction: ltr; }
.service-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(249,115,22,.08);
  border: 1px solid rgba(249,115,22,.20);
  color: var(--orange-dark);
  font-family: var(--font-h); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-full);
  margin-bottom: 16px;
}
.service-section__title { margin-bottom: 16px; }
.service-section__desc  { color: var(--gray-600); font-size: .93rem; margin-bottom: 16px; }
.service-features       { margin-bottom: 24px; }
.service-features li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0;
  font-size: .88rem; color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.service-features li:last-child { border-bottom: none; }
.service-features i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.service-guarantee {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: .83rem; font-family: var(--font-h); font-weight: 600; color: var(--navy);
  margin-bottom: 24px;
}
.service-guarantee i { color: var(--orange); }

.service-section__visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shd-xl);
}
.service-section__visual img { width: 100%; height: 100%; object-fit: cover; }
.service-section__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(10,31,68,.38) 100%);
}

/* ============================================================
   Why Choose Us
   ============================================================ */
.why-us {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(249,115,22,.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(13,40,87,.5) 0%, transparent 60%);
  pointer-events: none;
}
.why-us .container { position: relative; z-index: 1; }
.why-us .section-label   { color: var(--orange); }
.why-us .section-title   { color: var(--white); }
.why-us .section-subtitle{ color: rgba(255,255,255,.62); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.why-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); border-color: rgba(249,115,22,.20); }
.why-card__icon {
  width: 50px; height: 50px;
  background: rgba(249,115,22,.12);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card__icon i { font-size: 1.35rem; color: var(--orange); }
.why-card__title { font-family: var(--font-h); font-size: .97rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card__desc  { font-size: .85rem; color: rgba(255,255,255,.58); line-height: 1.72; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-h);
  font-size: 2.6rem; font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label { font-size: .83rem; color: rgba(255,255,255,.58); font-weight: 500; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shd-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shd-md); }
.testimonial-card__quote { font-size: 3rem; color: var(--orange); opacity: .14; line-height: 1; font-family: Georgia, serif; }
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-card__stars i { color: #f59e0b; font-size: .88rem; }
.testimonial-card__text { font-size: .92rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: .88rem; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.testimonial-card__name { font-family: var(--font-h); font-size: .88rem; font-weight: 700; color: var(--navy); }
.testimonial-card__meta { font-size: .75rem; color: var(--gray-400); margin-top: 2px; }

/* ============================================================
   Service Areas
   ============================================================ */
.areas-flex { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  padding: 10px 16px;
  font-size: .83rem; font-family: var(--font-h); font-weight: 600;
  color: var(--gray-700);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.area-chip i { color: var(--orange); font-size: .72rem; }
.area-chip:hover { background: rgba(249,115,22,.06); border-color: rgba(249,115,22,.25); color: var(--navy); transform: translateY(-2px); }

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(249,115,22,.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(13,40,87,.4) 0%, transparent 50%);
}
.cta-banner__inner { position: relative; z-index: 1; text-align: center; }
.cta-banner__label {
  font-family: var(--font-h); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.cta-banner__title { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; color: var(--white); letter-spacing: -.03em; margin-bottom: 16px; }
.cta-banner__subtitle { color: rgba(255,255,255,.62); font-size: .98rem; max-width: 480px; margin: 0 auto 32px; }
.cta-banner__phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-family: var(--font-h); font-size: 1.45rem; font-weight: 800;
  justify-content: center; margin-bottom: 24px;
}
.cta-banner__phone i { color: var(--orange); }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer__logo { margin-bottom: 18px; max-width: 220px; }
.footer__logo img { width: 100%; height: auto; }
.footer__about {
  font-size: .85rem; line-height: 1.72;
  color: rgba(255,255,255,.50);
  margin-bottom: 20px;
}
.footer__li-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-family: var(--font-h); font-size: .68rem; font-weight: 700;
  color: var(--orange-lt); letter-spacing: .05em; text-transform: uppercase;
}
.footer__li-badge i { color: var(--orange); font-size: .7rem; }
.footer__h {
  font-family: var(--font-h); font-size: .75rem; font-weight: 700;
  letter-spacing: .10em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: .85rem; color: rgba(255,255,255,.50);
  transition: color .2s ease, padding-left .2s ease;
  display: flex; align-items: center; gap: 7px;
}
.footer__links a i { font-size: .60rem; color: rgba(249,115,22,.45); }
.footer__links a:hover { color: var(--orange-lt); padding-left: 4px; }
.footer__links a:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 2px; }

.footer__contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
  font-size: .85rem; color: rgba(255,255,255,.50);
}
.footer__contact-item:last-child { margin-bottom: 0; }
.footer__contact-item i { color: var(--orange); margin-top: 3px; flex-shrink: 0; font-size: .82rem; }
.footer__contact-item a { color: rgba(255,255,255,.72); transition: color .2s ease; }
.footer__contact-item a:hover { color: var(--orange-lt); }

.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: .82rem;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.footer__social a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-2px); }
.footer__social a:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy    { font-size: .78rem; color: rgba(255,255,255,.32); }
.footer__lic-txt { font-size: .75rem; color: rgba(255,255,255,.32); display: flex; align-items: center; gap: 6px; }
.footer__lic-txt i { color: var(--orange); opacity: .55; }

/* ============================================================
   About Page
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 24px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px 24px;
  box-shadow: var(--shd-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shd-md); }
.team-card__avatar {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.8rem; font-weight: 700; color: var(--white);
  border: 3px solid rgba(249,115,22,.18);
  box-shadow: 0 0 0 5px rgba(249,115,22,.06);
}
.team-card__name { font-family: var(--font-h); font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: .78rem; font-weight: 700; color: var(--orange); font-family: var(--font-h); margin-bottom: 14px; letter-spacing: .02em; }
.team-card__bio  { font-size: .83rem; color: var(--gray-500); line-height: 1.72; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(249,115,22,.08));
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px; top: 6px;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(249,115,22,.2);
}
.timeline-item__year {
  font-family: var(--font-h); font-size: .72rem; font-weight: 700;
  color: var(--orange); letter-spacing: .08em; margin-bottom: 6px;
}
.timeline-item__title { font-family: var(--font-h); font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline-item__desc  { font-size: .88rem; color: var(--gray-500); line-height: 1.72; }

/* Certs */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 20px;
}
.cert-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shd-xs);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cert-card:hover { transform: translateY(-3px); box-shadow: var(--shd-sm); }
.cert-card__icon { font-size: 1.9rem; color: var(--orange); margin-bottom: 12px; }
.cert-card__title  { font-family: var(--font-h); font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cert-card__detail { font-size: .75rem; color: var(--gray-400); }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}
.value-card {
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shd-sm); }
.value-card__num   { font-family: var(--font-h); font-size: 2.4rem; font-weight: 900; color: rgba(249,115,22,.12); line-height: 1; margin-bottom: 8px; letter-spacing: -0.04em; }
.value-card__title { font-family: var(--font-h); font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card__desc  { font-size: .83rem; color: var(--gray-500); line-height: 1.72; }

/* ============================================================
   Blog
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shd-sm);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shd-lg); }
.blog-card__img {
  aspect-ratio: 16/9; overflow: hidden; position: relative;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,31,68,.28) 100%);
}
.blog-card__cat {
  position: absolute; bottom: 12px; left: 12px; z-index: 1;
  background: var(--orange); color: var(--white);
  font-family: var(--font-h); font-size: .66rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-full);
}
.blog-card__body { padding: 24px; }
.blog-card__meta {
  display: flex; align-items: center; gap: 16px;
  font-size: .75rem; color: var(--gray-400);
  font-family: var(--font-h); font-weight: 600;
  margin-bottom: 12px;
}
.blog-card__meta i { color: var(--orange); opacity: .55; font-size: .7rem; }
.blog-card__title {
  font-family: var(--font-h); font-size: 1.02rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px; letter-spacing: -.01em; line-height: 1.32;
  transition: color .2s ease;
}
.blog-card:hover .blog-card__title { color: var(--orange-dark); }
.blog-card__excerpt { font-size: .85rem; color: var(--gray-500); line-height: 1.72; margin-bottom: 18px; }
.blog-card__link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-h); font-size: .80rem; font-weight: 700;
  color: var(--orange);
  transition: gap .2s ease, color .2s ease;
}
.blog-card__link:hover { gap: 12px; color: var(--orange-dark); }
.blog-card__link:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 2px; }

/* Article */
.article { padding: 64px 0; }
.article__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.article__meta {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: .78rem; font-family: var(--font-h); font-weight: 600; color: var(--gray-400);
}
.article__cat {
  background: var(--orange); color: var(--white);
  padding: 4px 10px; border-radius: var(--r-full);
  font-size: .65rem; letter-spacing: .08em; text-transform: uppercase;
}
.article__meta-item { display: flex; align-items: center; gap: 4px; }
.article__meta-item i { color: var(--orange); opacity: .55; font-size: .72rem; }
.article__title { margin-bottom: 24px; }
.article__img {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 16/9; position: relative;
  box-shadow: var(--shd-lg); margin-bottom: 32px;
}
.article__img img { width: 100%; height: 100%; object-fit: cover; }
.article__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(10,31,68,.18) 100%);
}
.article__body h2 { margin: 40px 0 14px; font-size: 1.38rem; }
.article__body h3 { margin: 30px 0 10px; font-size: 1.08rem; }
.article__body p  { margin-bottom: 20px; font-size: .93rem; color: var(--gray-600); }
.article__body ul, .article__body ol { margin-bottom: 20px; padding-left: 24px; }
.article__body ul { list-style: disc; }
.article__body ol { list-style: decimal; }
.article__body li { margin-bottom: 8px; font-size: .93rem; color: var(--gray-600); }
.article__body .callout {
  background: rgba(249,115,22,.06);
  border: 1px solid rgba(249,115,22,.20);
  border-left: 4px solid var(--orange);
  border-radius: var(--r);
  padding: 20px 24px;
  margin: 32px 0;
}
.article__body .callout p { margin: 0; font-size: .88rem; color: var(--gray-700); }

/* Sidebar */
.sidebar { position: sticky; top: calc(var(--nav-hs) + 20px); }
.sidebar-cta {
  background: var(--navy); border-radius: var(--r-lg); padding: 28px;
  margin-bottom: 20px; position: relative; overflow: hidden;
}
.sidebar-cta::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
}
.sidebar-cta__title { font-family: var(--font-h); font-size: 1.02rem; font-weight: 700; color: var(--white); margin-bottom: 10px; position: relative; }
.sidebar-cta__text  { font-size: .83rem; color: rgba(255,255,255,.62); line-height: 1.72; margin-bottom: 18px; position: relative; }
.sidebar-cta__phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-family: var(--font-h); font-size: 1.08rem; font-weight: 800;
  margin-bottom: 16px; position: relative;
}
.sidebar-cta__phone i { color: var(--orange); }
.sidebar-info {
  background: var(--off-white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 22px;
}
.sidebar-info__title {
  font-family: var(--font-h); font-size: .75rem; font-weight: 700;
  color: var(--navy); letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 18px;
}
.sidebar-info__item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; font-size: .83rem; color: var(--gray-600);
}
.sidebar-info__item:last-child { margin-bottom: 0; }
.sidebar-info__item i { color: var(--orange); margin-top: 2px; flex-shrink: 0; font-size: .82rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shd-md);
}
.contact-form-wrap > h2 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--gray-500); font-size: .88rem; margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-h); font-size: .75rem; font-weight: 700;
  color: var(--navy); letter-spacing: .04em; margin-bottom: 7px;
}
.form-label span { color: var(--orange); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  font-size: .88rem; color: var(--gray-700);
  background: var(--white);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-300); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  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='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-submit { width: 100%; }

.contact-panel { position: sticky; top: calc(var(--nav-hs) + 20px); }
.contact-info-card {
  background: var(--navy); border-radius: var(--r-xl);
  padding: 32px; color: rgba(255,255,255,.78);
  margin-bottom: 20px; position: relative; overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(249,115,22,.10) 0%, transparent 70%);
}
.contact-info-card__title {
  font-family: var(--font-h); font-size: 1.02rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px; position: relative;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px; position: relative;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item__icon {
  width: 36px; height: 36px;
  background: rgba(249,115,22,.15); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item__icon i { color: var(--orange); font-size: .88rem; }
.contact-info-item__lbl {
  font-family: var(--font-h); font-size: .68rem; font-weight: 700;
  color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 3px;
}
.contact-info-item__val { font-size: .88rem; color: rgba(255,255,255,.82); font-weight: 500; }
.contact-info-item__val a { color: var(--orange-lt); transition: color .2s ease; }
.contact-info-item__val a:hover { color: var(--orange); }

.emergency-box {
  background: var(--red); border-radius: var(--r-xl);
  padding: 28px; color: var(--white);
  position: relative; overflow: hidden;
}
.emergency-box::before {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
}
.emergency-box__icon { font-size: 1.9rem; margin-bottom: 12px; position: relative; }
.emergency-box__title { font-family: var(--font-h); font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; position: relative; }
.emergency-box__text  { font-size: .85rem; color: rgba(255,255,255,.82); line-height: 1.72; margin-bottom: 18px; position: relative; }
.emergency-box__phone {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-full);
  padding: 12px 20px;
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 800;
  color: var(--white); width: 100%; justify-content: center;
  transition: background .2s ease, transform .2s ease;
  position: relative;
}
.emergency-box__phone:hover { background: rgba(255,255,255,.24); transform: scale(1.02); color: var(--white); }
.emergency-box__phone:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

.map-placeholder {
  background: var(--gray-100); border-radius: var(--r-xl);
  overflow: hidden; aspect-ratio: 16/7; position: relative;
  border: 1px solid var(--gray-200);
}
.map-placeholder__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.map-placeholder__inner i { font-size: 2.8rem; color: var(--gray-300); }
.map-placeholder__inner p { font-family: var(--font-h); font-size: .88rem; font-weight: 600; color: var(--gray-400); }

/* Hours Table */
.hours-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.hours-table tr { border-bottom: 1px solid var(--gray-100); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 11px 0; color: var(--gray-600); }
.hours-table td:first-child { font-family: var(--font-h); font-weight: 600; color: var(--navy); }
.hours-table td:last-child { text-align: right; }
.hours-open { color: #16a34a !important; font-weight: 600; }
.hours-emerg { color: var(--orange) !important; font-weight: 600; }

/* ============================================================
   Utilities
   ============================================================ */
.bg-white     { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-navy      { background: var(--navy); }
.text-center  { text-align: center; }
.text-navy    { color: var(--navy); }
.text-orange  { color: var(--orange); }
.divider      { height: 1px; background: var(--gray-100); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1060px) {
  .footer__grid       { grid-template-columns: 1fr 1fr; }
  .stats-row          { grid-template-columns: repeat(2, 1fr); }
  .article__layout    { grid-template-columns: 1fr; }
  .sidebar            { position: static; }
  .contact-layout     { grid-template-columns: 1fr; }
  .contact-panel      { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
  .service-section__inner { grid-template-columns: 1fr; gap: 32px; }
  .service-section__inner.rev { direction: ltr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .navbar__nav, .navbar__badge, .navbar__phone { display: none; }
  .navbar__hamburger { display: flex; }
  .mobile-menu       { display: block; }
  .hero              { min-height: 80vh; }
  .hero__ring-1, .hero__ring-2 { display: none; }
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .stats-row         { grid-template-columns: repeat(2, 1fr); }
  .footer__grid      { grid-template-columns: 1fr; gap: 32px; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-panel     { display: block; }
  .contact-panel > * + * { margin-top: 20px; }
  .team-grid         { grid-template-columns: repeat(2, 1fr); }
  .blog-grid         { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid  { grid-template-columns: 1fr; }
  .hero__cta      { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; max-width: 300px; }
  .emergency-banner__inner { flex-direction: column; gap: 8px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .stats-row      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media print {
  .emergency-banner, .navbar, .mobile-menu, .cta-banner, .footer { display: none; }
}
