/* =============================================
   DRI-MAX RESTORATION — BOLD REDESIGN
   Colors: #961C23 (red) | #4D4D4D (gray) | #151515 (black) | #fff
   Display: Bebas Neue | Body: Inter
   ============================================= */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #4D4D4D; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === VARIABLES === */
:root {
  --red: #961C23;
  --red-dark: #720e15;
  --gray: #4D4D4D;
  --black: #151515;
  --white: #ffffff;
  --off-white: #f4f4f4;
  --border: #e0e0e0;
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--black);
  color: var(--white);
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.3px;
  gap: 8px;
  border-bottom: 2px solid var(--red);
}
.topbar .creds { font-weight: 600; opacity: 0.5; letter-spacing: 1.5px; text-transform: uppercase; font-size: 13px; }
.topbar .cta { font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--red); font-size: 15px; }
.topbar .phones { display: flex; gap: 24px; }
.topbar .phones a { color: var(--white); font-weight: 700; letter-spacing: 0.5px; transition: color 0.2s; }
.topbar .phones a:hover { color: var(--red); }

/* =============================================
   HEADER / NAV
   ============================================= */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 4px solid var(--red);
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo-img {
  display: flex;
  align-items: center;
}
.logo-img-tag {
  height: 48px;
  width: auto;
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  line-height: 1;
}
.logo-text em {
  font-style: normal;
  color: var(--gray);
}

/* Nav */
nav ul { display: flex; align-items: center; gap: 0; }
nav > ul > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  transition: color 0.2s;
  white-space: nowrap;
}
nav > ul > li > a:hover,
nav > ul > li > a.active { color: var(--red); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: 0.5; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  border-top: 4px solid var(--red);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 300;
}
.dropdown li a {
  display: block;
  padding: 14px 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--off-white); color: var(--red); padding-left: 32px; }
.has-dropdown:hover .dropdown { display: block; }

/* CTA Nav Button */
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  margin-left: 12px;
  transition: background 0.2s !important;
  letter-spacing: 1.5px;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 400;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* =============================================
   HERO — HOMEPAGE
   ============================================= */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 32px;
  color: var(--white);
  width: 100%;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--red);
  margin-bottom: 20px;
}
.eyebrow.light { color: rgba(255,255,255,0.6); }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 13vw, 148px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.9;
  margin-bottom: 32px;
  max-width: 900px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 17px;
  opacity: 0.75;
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-phones {
  display: flex;
  gap: 56px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hero-phone .area {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.45;
  margin-bottom: 4px;
}
.hero-phone a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
  transition: color 0.2s;
}
.hero-phone a:hover { color: var(--red); }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* =============================================
   PAGE HERO — INNER PAGES
   ============================================= */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.15) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 32px;
  color: var(--white);
}
.page-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.93;
  margin-bottom: 16px;
  margin-top: 16px;
}
.page-hero-content p {
  font-size: 16px;
  opacity: 0.7;
  max-width: 560px;
  line-height: 1.75;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 18px 44px;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline-white {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 16px 42px;
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: #2a2a2a; transform: translateY(-1px); }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.section { padding: 96px 32px; }
.section-sm { padding: 64px 32px; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--black); color: var(--white); }
.section-red { background: var(--red); color: var(--white); }
.container { max-width: 1120px; margin: 0 auto; }

.section-header { margin-bottom: 64px; }
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  line-height: 0.93;
  margin-top: 16px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 16px;
  color: var(--gray);
  max-width: 580px;
  margin-top: 20px;
  line-height: 1.8;
}
.section-dark .section-header p { color: rgba(255,255,255,0.55); }

/* Diagonal clip */
.clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  padding-bottom: 128px;
}
.clip-top {
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
  padding-top: 128px;
}

/* =============================================
   SERVICE CARDS — HOMEPAGE
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  background: var(--black);
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-bg { transform: scale(1.07); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
  transition: background 0.4s;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(150,28,35,0.9) 0%, rgba(0,0,0,0.25) 100%);
}
.service-card-content {
  position: relative;
  z-index: 2;
  padding: 36px 40px;
  color: var(--white);
  border-left: 5px solid var(--red);
  margin: 0 32px 36px;
  transition: border-color 0.3s;
}
.service-card:hover .service-card-content { border-color: rgba(255,255,255,0.5); }
.service-card-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  line-height: 1;
}
.service-card-content p {
  font-size: 14px;
  opacity: 0.72;
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 380px;
}
.service-link {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.75;
  transition: opacity 0.2s, gap 0.2s;
}
.service-card:hover .service-link { opacity: 1; gap: 18px; }
.service-link::after { content: '→'; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.why-item {
  background: var(--white);
  padding: 44px 36px;
  border-top: 4px solid transparent;
  transition: border-top-color 0.25s, background 0.25s;
}
.why-item:hover { border-top-color: var(--red); }
.why-icon {
  width: 56px;
  height: 56px;
  background: #f5f5f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  transition: background 0.25s, color 0.25s;
}
.why-icon svg {
  width: 28px;
  height: 28px;
}
.why-item:hover .why-icon {
  background: var(--red);
  color: var(--white);
}
.why-item h3 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--black);
  margin-bottom: 12px;
}
.services-rows {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.service-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: baseline;
  padding: 36px 8px;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s, background 0.25s;
}
.service-row:hover {
  background: var(--white);
  padding-left: 20px;
}
.service-row h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--black);
  margin: 0;
  transition: color 0.2s;
}
.service-row:hover h3 { color: var(--red); }
.service-row p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .service-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 8px; }
  .service-row h3 { font-size: 28px; }
}
.why-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

/* =============================================
   STAT BAR
   ============================================= */
.stat-bar {
  background: var(--red);
  padding: 72px 32px;
}
.stat-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; color: var(--white); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 400;
  line-height: 1;
  display: block;
  letter-spacing: 2px;
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.55;
  margin-top: 10px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 100px;
  background: rgba(255,255,255,0.2);
}

/* =============================================
   TWO-COLUMN LAYOUT
   ============================================= */
.two-col {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 88px;
  align-items: center;
}
.col-img {
  position: relative;
}
.col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.col-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 4px solid var(--red);
  z-index: -1;
}
.col-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  line-height: 0.95;
  margin-top: 16px;
  margin-bottom: 24px;
}
.col-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 16px;
}
.col-content p:last-of-type { margin-bottom: 32px; }

/* =============================================
   CHECK LIST
   ============================================= */
.check-list { padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.65;
}
.check-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 7px;
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  opacity: 0.2;
  letter-spacing: 2px;
}
.step-content h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--black);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

/* =============================================
   FAQ
   ============================================= */
.faq { display: flex; flex-direction: column; }
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.4;
}
.faq-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--red);
  padding: 96px 32px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--red-dark);
}
.cta-banner .btn { background: var(--white); color: var(--red); }
.cta-banner .btn:hover { background: var(--off-white); }
.cta-banner .cta-phone a:hover { color: var(--black); }
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  line-height: 0.95;
}
.cta-banner p {
  font-size: 16px;
  opacity: 0.55;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.cta-phones {
  display: flex;
  justify-content: center;
  gap: 72px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.cta-phone { text-align: center; }
.cta-phone .area {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.4;
  margin-bottom: 6px;
}
.cta-phone a {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  transition: color 0.2s;
}
.cta-phone a:hover { color: var(--red); }

/* =============================================
   INSURANCE STRIP
   ============================================= */
.insurance-strip { padding: 72px 32px; background: var(--off-white); }
.insurance-strip-header {
  max-width: 1120px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.insurance-strip-header h2 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gray);
}
.insurance-logos {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 40px;
  align-items: center;
}
.insurance-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  pointer-events: none;
}
.insurance-logo-item img {
  max-height: 46px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
}

/* =============================================
   CONTACT FORM SECTION
   ============================================= */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 88px;
  align-items: start;
}
.contact-info-block {}
.contact-info-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 0.95;
}
.contact-info-block > p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 44px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail .area {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 6px;
}
.contact-detail a, .contact-detail span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 1px;
  display: block;
  line-height: 1.1;
}
.contact-detail a:hover { color: var(--red); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 50% 50%; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--border);
  font-family: inherit;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 148px; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.9);
  padding: 80px 32px 36px;
  border-top: 4px solid var(--red);
}
.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 36px;
}
.footer-logo-img {
  height: 38px;
  width: auto;
  margin-bottom: 24px;
}
.footer-desc {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
}
.footer-creds {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 0.85;
  text-transform: uppercase;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-phones { display: flex; flex-direction: column; gap: 20px; }
.footer-phone .f-area {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.6;
  margin-bottom: 4px;
}
.footer-phone a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-phone a:hover { color: var(--red); }
.footer-email { margin-top: 4px; }
.footer-email a {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.footer-email a:hover { color: var(--white); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: rgba(255,255,255,0.9); display: inline-flex; transition: color 0.2s; }
.footer-social a:hover { color: var(--red); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.pay-now-link {
  display: inline-block;
  margin-top: 24px;
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 10px 22px;
  transition: all 0.2s;
}
.pay-now-link:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0.4;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 52px; }
  .contact-split { gap: 52px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .menu-toggle { display: flex; }
  .hero h1 { font-size: clamp(44px, 12vw, 76px); }
  nav {
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px 32px;
    overflow-y: auto;
    border-top: 4px solid var(--red);
    z-index: 300;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  nav > ul > li > a { padding: 18px 0; border-bottom: 1px solid var(--border); font-size: 13px; letter-spacing: 1.5px; }
  .has-dropdown > a::after { display: none; }
  .dropdown { display: block; position: static; box-shadow: none; border-top: none; border-left: 4px solid var(--red); margin: 0 0 8px 16px; }
  .dropdown li a { padding: 13px 16px; border-bottom: none; }
  .nav-cta { background: var(--red) !important; display: inline-block; margin: 24px 0 0; padding: 16px 32px !important; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col .col-img::before { display: none; }
  .col-img img { height: 300px; }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero-bg { background-position: 70% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.4) 42%, rgba(0,0,0,0.82) 100%); }
  .hero-phones { gap: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-phones { gap: 36px; }
  .stat-divider { display: none; }
  .stat-inner { gap: 40px; }
  .section { padding: 64px 20px; }
  .section-sm { padding: 48px 20px; }
  .header-inner { padding: 0 20px; }
  .cta-banner { padding: 72px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: 1px; }
  .services-grid { gap: 2px; }
  .insurance-logos { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-phone a { font-size: 30px; }
  .cta-phone a { font-size: 40px; }
}

/* =============================================
   MOBILE CALL BAR (fixed bottom, mobile only)
   ============================================= */
.mobile-callbar { display: none; }
@media (max-width: 768px) {
  .mobile-callbar {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 150;
    background: var(--red);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.28);
  }
  .mobile-callbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 12px;
    color: var(--white);
    line-height: 1;
  }
  .mobile-callbar a + a { border-top: 1px solid rgba(255,255,255,0.28); }
  .mobile-callbar svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
  .mobile-callbar span {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 21px;
    letter-spacing: 0.5px;
  }
  .mobile-callbar small {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
  }
  body { padding-bottom: 90px; }
}
