/*
 * EXACT token extraction from live site Elementor CSS (post-258, post-127)
 * --e-global-color-primary:    #03308F  (deep navy blue)
 * --e-global-color-secondary:  #010918  (near-black, heading/link color)
 * --e-global-color-text:       #3E4752  (body text)
 * --e-global-color-accent:     #E66523  (orange CTAs)
 * background-color (body):     #FFFFFF  (white)
 * --e-global-color-59d9c5e:    #F3F6FF  (light blue-gray alt sections)
 * --e-global-color-cad974b:    #CFD8E3  (muted text on dark sections)
 * Hero section bg:             #010918  with linear-gradient(157deg,#0D0902 49%,#130D03 51%) overlay 0.8
 * Hero section desktop bg:     images-7-geotagged.jpg (house photo)
 * Hero section mobile bg:      autumn-leaves-on-shingled-roof.jpg
 * Header bg:                   #000000
 * Stats band bg:               #0C1015
 * Stats numbers color:         #E66523 / Outfit 42px 800
 * Stats title color:           #CFD8E3 / Inter 14px 500
 * H1: Outfit 56px 700 color #010918 (on hero: #E66523 per .elementor-element-4a09827c)
 *   → Hero H1 is actually ORANGE (#E66523) 46px 800 Outfit
 * H2: Outfit 36px 700 color #010918
 * Body text: Inter 15px 400 color #3E4752
 * Nav font: Poppins
 * Container max-width: 1240px
 * Eyebrow (divider text): #FFFFFF 600 with orange divider line
 * "Who We Are" section bg: WHITE
 * "Who We Are" card (right side): white bg, border-top 4px #E66523, box-shadow 0px 18px 48px rgba(1,9,24,0.35), border-radius 14px
 * "Who We Are" H2 (.elementor-element-6d75202b): Outfit 28px 800 color #0C1015
 * "Who We Are" body text: Inter 15px 400 color #1c2430
 * Green checkmarks (#1e9e5a) on the checklist
 * Button (primary): #E66523 bg, Outfit 16px 600, radius 8px, white text
 * Button (outline): transparent bg, white text, 2px white border, radius 8px
 * Image (who we are): width 100%, height 347px, object-fit cover, radius 12px
 * Section padding: 80px 10px (desktop), 50px 20px (mobile)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:ital,wght@0,400;0,500;0,600;0,700;0,800&family=Inter:wght@400;500;600&family=Poppins:wght@400;500;600&display=swap');

/* ─── EXACT LIVE SITE TOKENS ────────────────────────────────────── */
:root {
  --c-primary:       #03308F;   /* deep navy - links, primary */
  --c-secondary:     #010918;   /* near-black - headings, body links */
  --c-text:          #3E4752;   /* body text */
  --c-accent:        #E66523;   /* orange CTAs */
  --c-accent-dark:   #C85518;
  --c-muted:         #6E7580;
  --c-light-bg:      #F3F6FF;   /* alt section bg */
  --c-muted-light:   #CFD8E3;   /* text on dark sections */
  --c-dark:          #010918;   /* hero / dark sections */
  --c-dark-alt:      #0C1015;   /* stats band */
  --c-nav-bg:        #000000;   /* header */
  --c-body-bg:       #FFFFFF;
  --c-border:        #E3E9F2;
  --c-card-shadow:   0px 18px 48px rgba(1,9,24,0.35);

  --font-display:    'Outfit', sans-serif;
  --font-body:       'Inter', sans-serif;
  --font-nav:        'Poppins', sans-serif;

  --container:       1240px;
  --radius-btn:      8px;
  --radius-card:     14px;
  --radius-img:      12px;
  --transition:      all 0.2s ease;
}

/* ─── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--c-body-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--c-accent); }
ul { list-style: none; padding: 0; margin: 0; }

/* ─── CONTAINER ──────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── TYPOGRAPHY (exact live site sizes) ─────────────────────────── */
h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-secondary);
}
h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-secondary);
  margin-bottom: 1rem;
}
h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-secondary);
  margin-bottom: 0.5rem;
}
h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-secondary);
}
p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-text);
  margin-bottom: 1.4em;
}
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--c-secondary); }

/* ─── EYEBROW LABEL ──────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 12px;
}
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.eyebrow-line::before {
  content: '';
  display: block;
  width: 39%;
  max-width: 120px;
  height: 1px;
  background: var(--c-accent);
}
.eyebrow-line span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  line-height: 1.3;
  padding: 14px 20px;
  border-radius: var(--radius-btn);
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-accent {
  background: var(--c-accent);
  color: #fff !important;
}
.btn-accent:hover {
  background: var(--c-accent-dark);
  color: #fff !important;
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: #fff !important;
  border: 2px solid #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
}
.btn-primary-navy {
  background: var(--c-primary);
  color: #fff !important;
}
.btn-primary-navy:hover { background: #022575; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ─── SITE HEADER ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 24px;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo img {
  max-width: 151px;
  height: auto;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1.25;
  max-width: 150px;
}
.logo-text:hover { color: var(--c-accent); }

/* desktop nav (center) */
.nav-center { flex: 1; display: flex; justify-content: center; }
.nav-primary {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-primary > a,
.nav-dropdown > .dropdown-trigger {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 15px 7px;
  margin: 0 10px;
  display: inline-block;
  transition: color 0.18s;
}
.nav-primary > a:hover,
.nav-dropdown > .dropdown-trigger:hover { color: var(--c-accent); }

/* dropdown */
.nav-dropdown { position: relative; display: inline-block; }
.dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dropdown-trigger::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
}
.nav-dropdown:hover .dropdown-trigger::after { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -10px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-btn);
  min-width: 210px;
  padding: 6px 0;
  z-index: 200;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 9px 18px;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }

/* header right CTA */
.header-cta-wrap { flex-shrink: 0; }
.header-cta-wrap .btn {
  font-size: 15px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-btn);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin-bottom: 5px;
}
.nav-toggle span:last-child { margin-bottom: 0; }

/* mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  flex-direction: column;
  padding: 70px 24px 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1;
}
.mobile-nav > a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav > a:hover { color: var(--c-accent); }
.mobile-nav-sub { padding-left: 12px; }
.mobile-nav-sub a {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-sub a:hover { color: var(--c-accent); }
.mobile-nav-cta { margin-top: 20px; }

/* ─── HERO SECTION ───────────────────────────────────────────────── */
.hero {
  position: relative;
  background-color: #010918;
  /* desktop bg image applied via inline style */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: -22px; /* matches live site */
  padding: 90px 40px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(157deg, #0D0902 49%, #130D03 51%);
  opacity: 0.8;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left { max-width: 600px; }
.hero-h1 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--c-accent); /* ORANGE on live site */
  line-height: 1.2;
  margin: 12px 0 16px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: #ffffff !important;
  line-height: 1.5;
  margin-bottom: 24px;
}
.hero-sub strong, .hero-sub b {
  color: #ffffff !important;
  font-weight: 700;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted-light);
}
.hero-badge-icon { color: #4ade80; font-size: 13px; }

/* hero right card (the white card on the right side) */
.hero-card {
  background: #fff;
  border-top: 4px solid var(--c-accent);
  border-radius: var(--radius-card);
  box-shadow: var(--c-card-shadow);
  padding: 30px 30px 30px 30px;
}
.hero-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #0C1015;
  margin-bottom: 8px;
}
.hero-card p {
  font-size: 15px;
  color: #1c2430;
  margin-bottom: 16px;
}
.hero-card .btn { width: 100%; margin-bottom: 20px; text-align: center; }
.hero-card-divider { height: 1px; background: #e3e9f2; margin: 16px 0; }
.hero-card-list { display: flex; flex-direction: column; gap: 8px; }
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1c2430;
}
.hero-card-list li .check { color: #1e9e5a; font-size: 13px; }

/* ─── STATS BAND ─────────────────────────────────────────────────── */
.stats-band {
  background: #0C1015;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 34px 10px;
}
.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
}
.stat-item .stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted-light);
  line-height: 2.5;
}

/* ─── WHO WE ARE ─────────────────────────────────────────────────── */
.who-section { padding: 80px 10px; background: #fff; }
.who-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.who-image img {
  width: 100%;
  height: 347px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-img);
}
.who-text .eyebrow { color: var(--c-accent); }
.who-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0C1015;
  margin-bottom: 16px;
}
.who-text p {
  font-size: 16px;
  color: #1c2430;
}
.who-checklist { margin: 20px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.who-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #1c2430;
}
.who-checklist li .check { color: #1e9e5a; flex-shrink: 0; }

/* ─── SECTION SHARED ─────────────────────────────────────────────── */
.section-light { padding: 80px 10px; background: #fff; }
.section-alt   { padding: 80px 10px; background: var(--c-light-bg); }
.section-dark  { padding: 80px 10px; background: var(--c-dark); }
.section-dark2 { padding: 80px 10px; background: var(--c-dark-alt); }
.section-center { text-align: center; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-dark  h2, .section-dark  h3 { color: #fff; }
.section-dark  p { color: var(--c-muted-light); }
.section-dark2 h2, .section-dark2 h3 { color: #fff; }
.section-dark2 p { color: var(--c-muted-light); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 560px; margin: 0 auto; color: var(--c-muted); }

/* ─── SERVICE CARDS ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(1,9,24,0.12);
}
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--c-light-bg);
}
.service-card-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.service-card-body h3 a { color: #0C1015; }
.service-card-body h3 a:hover { color: var(--c-accent); }
.service-card-body p {
  font-size: 14px;
  color: var(--c-muted);
  flex: 1;
  margin-bottom: 14px;
}
.service-card-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent) !important;
  margin-top: auto;
}
.service-card-link:hover { color: var(--c-accent-dark) !important; }
.services-cta-wrap { text-align: center; margin-top: 40px; }

/* ─── SPLIT SECTION (2-col text + image) ─────────────────────────── */
.split-section { padding: 80px 10px; }
.split-section.bg-alt { background: var(--c-light-bg); }
.split-section.bg-dark { background: var(--c-dark); }
.split-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-inner.reversed { direction: rtl; }
.split-inner.reversed > * { direction: ltr; }
.split-image img {
  width: 100%;
  height: 347px;
  object-fit: cover;
  border-radius: var(--radius-img);
}
.split-text h2 { margin-bottom: 16px; }
.split-text.on-dark h2 { color: #fff; }
.split-text.on-dark p { color: var(--c-muted-light); }

/* ─── WARNING SIGNS ──────────────────────────────────────────────── */
.warnings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.warning-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-accent);
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.warning-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(1,9,24,0.1); }
.warning-card h3 { font-size: 17px; color: #0C1015; margin-bottom: 10px; }
.warning-card p { font-size: 14px; color: var(--c-muted); margin: 0; }
.warning-cta { text-align: center; margin-top: 40px; }

/* ─── HOW IT WORKS ───────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.step-card {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  transition: transform 0.2s;
}
.step-card:hover { transform: translateY(-2px); }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--c-muted); margin: 0; }

/* ─── MATERIALS ──────────────────────────────────────────────────── */
.material-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.material-col h3 {
  font-size: 18px;
  color: #fff;
  border-bottom: 2px solid var(--c-accent);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.material-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 15px;
  color: var(--c-muted-light);
}
.material-list li strong { color: #e2e8f0; }

/* ─── SERVICE AREAS ──────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  transition: transform 0.2s, border-color 0.2s;
}
.area-card:hover { transform: translateY(-2px); border-color: var(--c-accent); }
.area-card h3 { font-size: 17px; color: #0C1015; margin-bottom: 8px; }
.area-card p { font-size: 14px; color: var(--c-muted); margin: 0; }
.areas-cta { text-align: center; margin-top: 32px; }

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq-section { padding: 80px 10px; background: var(--c-light-bg); }
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: #0C1015;
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--c-accent);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--c-accent); }
.faq-answer {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.6;
}

/* ─── FINAL CTA BAND ─────────────────────────────────────────────── */
.cta-band { background: var(--c-accent); padding: 70px 20px; text-align: center; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-band p { color: rgba(255,255,255,0.9); font-size: 17px; max-width: 600px; margin: 0 auto 28px; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── PAGE HERO (service/inner pages) ────────────────────────────── */
.page-hero { background: #010918; padding: 60px 20px; }
.page-hero .container { max-width: 860px; }
.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  font-family: var(--font-nav);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb a:hover { color: var(--c-accent); }
.page-hero h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

/* ─── PAGE BODY ──────────────────────────────────────────────────── */
.page-body { padding: 60px 20px; }
.page-body .container { max-width: 860px; }
.page-body h2 { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--c-border); }
.page-body h3 { margin-top: 1.5rem; }
.page-body ul { margin: 1rem 0 1.5rem 1.5rem; }
.page-body ul li { list-style: disc; color: var(--c-text); margin-bottom: 6px; }
.page-body img,
.service-main-content img,
.city-content img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  margin: 28px 0;
  box-shadow: 0 10px 32px rgba(1, 9, 24, 0.16);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-body img:hover,
.service-main-content img:hover,
.city-content img:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(1, 9, 24, 0.22);
}
.page-body a[href^="tel:"],
.page-body a[href$="/contact/"] {
  display: inline-flex;
  align-items: center;
  background: var(--c-accent);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: var(--radius-btn);
  margin: 8px 0;
  transition: var(--transition);
}
.page-body a[href^="tel:"]:hover,
.page-body a[href$="/contact/"]:hover { background: var(--c-accent-dark); }

/* Where We Repair */
.where-we-repair { background: var(--c-light-bg); border-radius: var(--radius-card); padding: 32px; margin-top: 40px; }
.where-we-repair h2 { font-size: 22px; border: 0; padding: 0; margin-bottom: 16px; margin-top: 0; }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.cities-grid a {
  display: block;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-btn);
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: #0C1015;
  text-align: center;
  transition: var(--transition);
}
.cities-grid a:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ─── CITY PAGES ─────────────────────────────────────────────────── */
.city-content { padding: 40px 20px; }
.city-content .container { max-width: 900px; }
.services-grid.page-services {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-top: 20px;
}
.services-grid.page-services a {
  display: block;
  background: var(--c-light-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-btn);
  padding: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #0C1015;
  text-align: center;
  transition: var(--transition);
}
.services-grid.page-services a:hover { border-color: var(--c-accent); color: var(--c-accent); }
.services-provided { margin-top: 40px; border-top: 1px solid var(--c-border); padding-top: 24px; }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.site-footer { background: #0a0f1a; border-top: 3px solid var(--c-accent); padding: 60px 20px 0; }
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1.4fr 1fr;
  gap: 30px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}
.footer-tagline { color: #ffffff; font-size: 14px; line-height: 1.6; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  margin-bottom: 16px;
}
.footer-contact-list li { margin-bottom: 8px; }
.footer-contact-list a,
.footer-contact-list span { color: #ffffff; font-size: 14px; }
.footer-contact-list a:hover { color: var(--c-accent); }
.footer-links-col a {
  display: block;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-links-col a:hover { color: var(--c-accent); }
.footer-bottom {
  max-width: var(--container);
  margin: 40px auto 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: #ffffff; font-size: 13px; margin: 0; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 600px; }
  .hero-card { display: none; } /* hide right card on tablet/mobile, live site does too */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .site-header { padding: 14px 20px; }
  .nav-center, .header-cta-wrap { display: none; }
  .nav-toggle { display: flex; }
  .hero {
    background-image: url('/images/gutter-leaves-shingled-roof.jpg') !important;
    background-position: top center;
    padding: 50px 20px;
  }
  .hero-h1 { font-size: 38px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .who-inner, .split-inner, .split-inner.reversed { grid-template-columns: 1fr; direction: ltr; }
  .split-inner.reversed > * { direction: ltr; }
  .services-grid { grid-template-columns: 1fr; }
  .warnings-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .material-cols { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .who-image { order: -1; }
}

@media (max-width: 480px) {
  h1 { font-size: 30px; }
  .hero { padding: 50px 20px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .cta-band h2 { font-size: 26px; }
  .cta-band-btns { flex-direction: column; align-items: stretch; }
}

/* ─── SERVICE & LOCATION PAGES STYLING ──────────────────────────── */
.service-hero {
  background: #010918;
  padding: 60px 0 50px;
  border-bottom: 3px solid var(--c-accent);
}
.service-hero .breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  font-family: var(--font-nav);
}
.service-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.service-hero .breadcrumb a:hover { color: var(--c-accent); }
.service-hero .breadcrumb span { color: rgba(255,255,255,0.9); font-weight: 500; }
.service-hero-content h1 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.city-hero-lead {
  font-size: 17px;
  color: var(--c-muted-light);
  max-width: 720px;
  margin-bottom: 24px;
}
.service-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.service-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted-light);
}
.trust-pill .check { color: #4ade80; font-size: 14px; }

.service-body-section { padding: 60px 0; background: #ffffff; }
.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}
.service-content-body {
  max-width: 900px;
  margin: 0 auto;
}
.service-content-body h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #0C1015;
  margin: 48px 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-accent);
}
.service-content-body h2:first-of-type { margin-top: 0; }
.service-content-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #0C1015;
  margin: 28px 0 12px;
}
.service-content-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  margin-bottom: 20px;
}
.service-content-body ul {
  margin: 16px 0 24px 20px;
}
.service-content-body ul li {
  font-size: 16px;
  color: var(--c-text);
  margin-bottom: 8px;
  line-height: 1.5;
}
.service-content-body img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: var(--c-card-shadow);
}
.service-content-body blockquote,
.pricing-band {
  background: var(--c-light-bg);
  border-left: 4px solid var(--c-accent);
  padding: 24px;
  border-radius: var(--radius-card);
  margin: 32px 0;
  font-size: 16px;
}
.post-article {
  max-width: 760px;
  margin: 0 auto;
}

/* Sidebar styling */
.service-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-widget {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(1,9,24,0.06);
}
.emergency-widget {
  background: #010918;
  color: #ffffff;
  border-top: 4px solid var(--c-accent);
  text-align: center;
}
.emergency-widget .widget-icon { font-size: 32px; margin-bottom: 12px; }
.emergency-widget h3 { color: #ffffff; font-size: 20px; margin-bottom: 8px; }
.emergency-widget p { color: var(--c-muted-light); font-size: 14px; margin-bottom: 20px; }
.widget-subtext { display: block; margin-top: 12px; font-size: 12px; color: #4ade80; font-weight: 500; }

.widget-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #0C1015;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-accent);
}
.widget-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--c-text);
  margin-bottom: 10px;
}
.widget-check-list li .check { color: #1e9e5a; font-weight: 700; flex-shrink: 0; }

.sidebar-service-links { display: flex; flex-direction: column; gap: 6px; }
.sidebar-service-links a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: #0C1015;
  background: var(--c-light-bg);
  transition: var(--transition);
}
.sidebar-service-links a:hover {
  background: var(--c-accent);
  color: #ffffff !important;
  transform: translateX(4px);
}

/* Location / City Specific Styles */
.city-meta-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  background: var(--c-light-bg);
  padding: 20px;
  border-radius: var(--radius-card);
  border: 1px solid var(--c-border);
}
.meta-badge-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.meta-badge-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #0C1015; }
.badge-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.zip-pill, .hood-pill {
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
}

.city-info-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(1,9,24,0.06);
}
.housing-card { border-left: 4px solid var(--c-primary); }
.failure-card { border-left: 4px solid var(--c-accent); background: #FFF8F5; }
.city-info-card .card-icon { font-size: 28px; flex-shrink: 0; margin-top: 4px; }
.city-info-card h2 { font-size: 20px; color: #0C1015; margin: 0 0 8px 0; padding: 0; border: 0; }
.city-info-card p { font-size: 15px; margin: 0; }

.city-services-section { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--c-border); }
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.city-service-box {
  display: flex;
  flex-direction: column;
  background: var(--c-light-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 20px;
  transition: var(--transition);
  text-decoration: none;
}
.city-service-box:hover {
  border-color: var(--c-accent);
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(1,9,24,0.1);
}
.city-service-box .box-icon { font-size: 24px; margin-bottom: 8px; }
.city-service-box .box-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #0C1015; margin-bottom: 4px; }
.city-service-box .box-desc { font-size: 13px; color: var(--c-muted); }

.where-we-repair-section { padding: 60px 0; background: var(--c-light-bg); }
.where-we-repair-box h2 { font-size: 28px; color: #0C1015; margin-bottom: 12px; }
.where-we-repair-box p { color: var(--c-muted); margin-bottom: 24px; }
.all-areas-link { font-weight: 700; color: var(--c-accent) !important; }

@media (max-width: 1024px) {
  .service-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-sidebar { position: static; }
  .city-services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  .hero-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .split-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .services-grid { grid-template-columns: 1fr 1fr !important; }
  .warnings-grid { grid-template-columns: 1fr 1fr !important; }
  .steps-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .warnings-grid { grid-template-columns: 1fr !important; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .hero-h1 { font-size: 28px !important; }
  .split-image img { height: 240px !important; }
}

/* Service Content Body Typography */
.service-content-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
  margin-bottom: 20px;
}
.service-content-body ul, .service-content-body ol {
  margin: 20px 0 28px 24px;
  padding-left: 12px;
}
.service-content-body li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text);
  margin-bottom: 10px;
}
.service-content-body strong, .service-content-body b,
p strong, p b, li strong, li b {
  font-weight: 700;
  color: #0C1015;
}
.service-content-body a {
  color: var(--c-accent);
  font-weight: 600;
  text-decoration: underline;
}
.service-content-body a:hover {
  color: var(--c-accent-dark);
}
.service-content-body a[href^="tel:"]:not(.text-link),
.service-content-body a[href$="/contact/"]:not(.text-link) {
  display: inline-flex;
  align-items: center;
  background: var(--c-accent);
  color: #ffffff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: var(--radius-btn);
  text-decoration: none !important;
  margin: 14px 0;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(230,101,35,0.35);
}
.service-content-body a[href^="tel:"]:not(.text-link):hover,
.service-content-body a[href$="/contact/"]:not(.text-link):hover {
  background: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230,101,35,0.45);
}

.service-content-body li a,
.service-content-body p a.text-link,
a.text-link {
  display: inline !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-transform: none !important;
  color: #ffffff !important;
  text-decoration: underline !important;
  font-weight: 700 !important;
}

/* Metro Hubs Grid Layout */
.metro-hubs-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin-top: 0 !important;
}
.metro-hub-card {
  box-sizing: border-box;
}
.metro-hub-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 24px rgba(1,9,24,0.08) !important;
  border-color: var(--c-accent) !important;
}

/* ─── ANCHORS & LINKS PROMINENCE ───────────────────────────────── */
p a, li a, .service-content-body a, .split-text a, .hero-sub a {
  color: #03308F;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #E66523;
  text-underline-offset: 3px;
  transition: var(--transition);
}

p a:hover, li a:hover, .service-content-body a:hover, .split-text a:hover, .hero-sub a:hover {
  color: #E66523;
  text-decoration-color: #03308F;
}

/* Dark Sections Text & Bold Overrides (Prevents Invisible Text Gaps) */
.bg-dark,
.section-dark,
.section-dark2,
.split-section.bg-dark,
.split-text.on-dark,
.hero-left,
.hero-sub,
[style*="background:#010918"],
[style*="background: #010918"] {
  color: #FFFFFF !important;
}

.bg-dark p,
.section-dark p,
.section-dark2 p,
.split-section.bg-dark p,
.split-text.on-dark p,
[style*="background:#010918"] p,
[style*="background: #010918"] p {
  color: #CFD8E3 !important;
}

.bg-dark strong, .bg-dark b,
.section-dark strong, .section-dark b,
.section-dark2 strong, .section-dark2 b,
.split-section.bg-dark strong, .split-section.bg-dark b,
.split-text.on-dark strong, .split-text.on-dark b,
.hero-left strong, .hero-left b,
.hero-sub strong, .hero-sub b,
[style*="background:#010918"] strong, [style*="background:#010918"] b,
[style*="background: #010918"] strong, [style*="background: #010918"] b {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

/* Dark Sections Anchor Links Overrides */
.bg-dark a:not(.btn),
.section-dark a:not(.btn),
.section-dark2 a:not(.btn),
.split-section.bg-dark a:not(.btn),
.split-text.on-dark a:not(.btn),
.hero-left a:not(.btn),
.hero-sub a:not(.btn),
[style*="background:#010918"] a:not(.btn),
[style*="background: #010918"] a:not(.btn) {
  color: #E66523 !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-decoration-color: #ffffff !important;
  text-underline-offset: 3px;
}

.bg-dark a:not(.btn):hover,
.section-dark a:not(.btn):hover,
.section-dark2 a:not(.btn):hover,
.split-section.bg-dark a:not(.btn):hover,
.split-text.on-dark a:not(.btn):hover,
.hero-left a:not(.btn):hover,
.hero-sub a:not(.btn):hover,
[style*="background:#010918"] a:not(.btn):hover,
[style*="background: #010918"] a:not(.btn):hover {
  color: #ffffff !important;
  text-decoration-color: #E66523 !important;
}

/* ─── SITE-WIDE TABLET & MOBILE RESPONSIVENESS AUDIT ────────────────── */

.pricing-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.guide-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

/* Tablet & Mobile Header Breakpoint (<= 991px) */
@media (max-width: 991px) {
  .nav-center,
  .header-cta-wrap {
    display: none !important;
  }
  .nav-toggle {
    display: flex !important;
  }
  .site-header {
    padding: 12px 16px !important;
  }
}

/* Tablet Breakpoint (<= 1024px) */
@media (max-width: 1024px) {
  .hero-inner,
  .pricing-inner,
  .pricing-grid,
  .service-area-layout,
  .split-inner,
  .service-page-grid,
  .guide-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    direction: ltr !important;
  }
  .guide-grid img {
    position: static !important;
    max-height: 280px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: var(--radius-img) !important;
  }
  .split-inner.reversed, .split-inner.reversed > * {
    direction: ltr !important;
  }
  .split-image img {
    height: auto !important;
    max-height: 300px !important;
    width: 100% !important;
  }
  .hero-left, .hero-right, .pricing-left, .pricing-right, .split-text, .split-image, .service-sidebar {
    width: 100% !important;
    max-width: 100% !important;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
  .services-grid, .warnings-grid, .steps-grid, .areas-grid, .metro-hubs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile Breakpoint (<= 768px) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
  }
  h1 { font-size: 32px !important; line-height: 1.25 !important; }
  h2 { font-size: 24px !important; line-height: 1.3 !important; }
  h3 { font-size: 19px !important; }
  .hero-h1 { font-size: 28px !important; line-height: 1.2 !important; }
  .hero { padding: 40px 16px !important; margin-top: 0 !important; }
  .hero-inner, .pricing-inner, .split-inner { padding: 0 !important; }
  .hero-btns { flex-direction: column !important; width: 100% !important; }
  .hero-btns .btn { width: 100% !important; justify-content: center !important; margin: 4px 0 !important; }
  .hero-card { padding: 20px !important; width: 100% !important; margin-top: 24px !important; }
  .split-section { padding: 32px 16px !important; }
  .pricing-right > div { padding: 24px 18px !important; }
  .pricing-right div[style*="font-size: 38px"] { font-size: 28px !important; }
  .region-item {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .services-grid, .warnings-grid, .steps-grid, .areas-grid, .city-services-grid, .metro-hubs-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .container, .section-inner {
    padding: 0 16px !important;
    max-width: 100% !important;
  }
}

/* Small Mobile Breakpoint (<= 480px) */
@media (max-width: 480px) {
  h1 { font-size: 28px !important; }
  h2 { font-size: 22px !important; }
  .hero-h1 { font-size: 26px !important; }
  .stats-inner {
    grid-template-columns: 1fr !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .header-inner {
    padding: 0 8px !important;
  }
  .logo img {
    max-width: 120px !important;
  }
}

/* ─── FIXED MOBILE CALL BAR ──────────────────────────────────────── */
.fixed-mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--c-accent);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  padding: 0;
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: var(--c-accent);
  color: #ffffff !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.3px;
  text-decoration: none !important;
  transition: background 0.2s ease;
  line-height: 1;
}

.mobile-call-btn:hover, .mobile-call-btn:active {
  background: var(--c-accent-dark);
  color: #ffffff !important;
}

.mobile-call-btn .call-icon {
  font-size: 18px;
}

@media (max-width: 768px) {
  .fixed-mobile-call-bar {
    display: block !important;
  }
  body {
    padding-bottom: 54px !important;
  }
}






