/* ============================================================
   RESCUE BAIL BONDS — Authoritative Guardian Design System
   Deep Navy #0A2540 + Burnished Gold #D4A017
   Barlow Condensed headlines | Open Sans body
   ============================================================ */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #f8f7f4;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Design Tokens ---- */
:root {
  --navy:       #0A2540;
  --navy-dark:  #061829;
  --navy-mid:   #0d3058;
  --gold:       #D4A017;
  --gold-light: #f0c040;
  --gold-dark:  #a87c10;
  --cream:      #f8f7f4;
  --white:      #ffffff;
  --gray-100:   #f3f3f3;
  --gray-200:   #e5e5e5;
  --gray-400:   #9ca3af;
  --gray-600:   #4b5563;
  --gray-800:   #1f2937;
  --radius:     6px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.12);
  --shadow-md:  0 4px 16px rgba(0,0,0,.14);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.18);
}

/* ---- Utility Bar ---- */
.utility-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  padding: 6px 0;
  border-bottom: 1px solid rgba(212,160,23,.25);
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.utility-bar a { color: var(--gold); font-weight: 600; }
.utility-bar a:hover { color: var(--gold-light); }
.utility-bar .ub-phone { display: flex; align-items: center; gap: 6px; }
.utility-bar .ub-phone svg { width:13px; height:13px; fill:var(--gold); }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  transition: background .25s;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img { width: 36px; height: 36px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: 6px 12px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--gold); background: rgba(255,255,255,.06); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  font-size: 13px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta svg { width:14px; height:14px; fill:var(--navy-dark); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: .25s; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.btn svg { width:16px; height:16px; }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }

/* ---- Homepage Hero ---- */
.hero-home {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-home .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.hero-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6,24,41,.95) 45%, rgba(6,24,41,.5) 100%);
}
.hero-home .gold-stripe {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--gold);
}
.hero-home .container { position: relative; z-index: 2; padding-top: 48px; padding-bottom: 48px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.hero-eyebrow .rule { width: 32px; height: 2px; background: var(--gold); }
.hero-eyebrow span {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 8vw, 96px);
  line-height: .95;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}
.trust-item svg { width:14px; height:14px; fill:var(--gold); }

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--gold);
  padding: 20px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item { }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--navy-dark);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(10,37,64,.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ---- Section Styles ---- */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-cream { background: var(--cream); }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.section-eyebrow .rule { width: 32px; height: 2px; background: var(--gold); }
.section-eyebrow span {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 12px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.6;
}
.section-subtitle.light { color: rgba(255,255,255,.65); }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-icon {
  width: 44px; height: 44px;
  background: rgba(212,160,23,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg { width:20px; height:20px; fill:var(--gold); }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.55; margin-bottom: 14px; }
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .5px;
  display: flex; align-items: center; gap: 4px;
}
.service-link:hover { color: var(--gold-dark); }
.service-link svg { width:12px; height:12px; fill:var(--gold); }

/* ---- How It Works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step-item { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--navy-dark);
}
.step-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step-item p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.55; }

/* ---- Locations Grid ---- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: border-color .2s, box-shadow .2s;
}
.location-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.location-card .city {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.location-card .county { font-size: 11px; color: var(--gray-400); margin-bottom: 8px; }
.location-card .phone {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  display: flex; align-items: center; gap: 5px;
}
.location-card .phone svg { width:12px; height:12px; fill:var(--gold); }
.location-card .view-link {
  font-size: 11px;
  color: var(--gray-400);
  display: flex; align-items: center; gap: 3px;
  margin-top: 6px;
  transition: color .2s;
}
.location-card:hover .view-link { color: var(--gold); }
.location-card .view-link svg { width:10px; height:10px; fill:currentColor; }

/* ---- FAQ Accordion ---- */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .3px;
}
.faq-question svg { width:14px; height:14px; fill:var(--gold); flex-shrink:0; transition: transform .25s; }
.faq-item.open .faq-question svg { transform: rotate(90deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  border-top: 1px solid var(--gray-100);
}
.faq-answer p { padding-top: 14px; }
.faq-item.open .faq-answer { display: block; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,.65); font-size: 16px; margin-bottom: 28px; }

/* ---- Internal Page Hero ---- */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.page-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .17;
}
.page-hero .gold-stripe {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--gold);
  z-index: 2;
}
.page-hero .container {
  position: relative;
  z-index: 3;
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.page-hero-content { }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width:10px; height:10px; fill:rgba(255,255,255,.3); }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.page-hero-badge .rule { width: 28px; height: 2px; background: var(--gold); }
.page-hero-badge span {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}
.page-hero .hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin-bottom: 0;
}

/* Dispatch Card */
.dispatch-card {
  background: var(--navy-dark);
  border: 1px solid rgba(212,160,23,.4);
  border-radius: var(--radius);
  padding: 24px 22px;
  min-width: 220px;
  max-width: 260px;
}
.dispatch-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 5px;
}
.dispatch-label svg { width:11px; height:11px; fill:var(--gold); }
.dispatch-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 2px;
}
.dispatch-card .address {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
  margin-bottom: 14px;
}
.dispatch-card .phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 11px 16px;
  border-radius: var(--radius);
  width: 100%;
  transition: background .2s;
}
.dispatch-card .phone-btn:hover { background: var(--gold-light); }
.dispatch-card .phone-btn svg { width:15px; height:15px; fill:var(--navy-dark); }
.dispatch-card .avail {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.dispatch-card .avail svg { width:11px; height:11px; fill:rgba(255,255,255,.4); }

/* ---- Content Layout ---- */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.content-main h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 14px;
  margin-top: 32px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 24px;
}
.content-main p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 14px;
}
.content-main ul {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-main ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
}
.content-main ul li::before {
  content: '';
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23D4A017' opacity='.15'/%3E%3Cpath d='M9 12l2 2 4-4' stroke='%23D4A017' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Sidebar ---- */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
}
.sidebar-card.dark {
  background: var(--navy);
  border-color: rgba(212,160,23,.3);
  color: var(--white);
}
.sidebar-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sidebar-card.dark h3 { color: var(--white); }
.sidebar-card .phone-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--gold);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 8px;
}
.sidebar-card .phone-big svg { width:18px; height:18px; fill:var(--gold); }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sidebar-links li a {
  font-size: 13px;
  color: var(--gray-600);
  display: flex; align-items: center; gap: 5px;
  padding: 4px 0;
  transition: color .2s;
}
.sidebar-links li a:hover { color: var(--gold); }
.sidebar-links li a svg { width:10px; height:10px; fill:currentColor; }
.map-embed { width: 100%; height: 200px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ---- Areas Tags ---- */
.areas-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.area-tag {
  display: flex; align-items: center; gap: 5px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 13px;
  color: var(--gray-600);
}
.area-tag svg { width:11px; height:11px; fill:var(--gold); }

/* ---- Rating Stars ---- */
.rating-row { display: flex; align-items: center; gap: 6px; margin: 8px 0; }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 1px; }
.rating-text { font-size: 13px; color: var(--gray-600); }

/* ---- Process Steps ---- */
.process-steps { display: flex; flex-direction: column; gap: 24px; margin: 32px 0; }
.process-step { display: flex; gap: 18px; }
.process-step-num {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.process-step-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.process-step-body p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.6);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-name { font-size: 18px; }
.footer-brand p { font-size: 13px; line-height: 1.6; margin-top: 12px; margin-bottom: 16px; }
.footer-brand .footer-phone {
  display: flex; align-items: center; gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.footer-brand .footer-phone svg { width:14px; height:14px; fill:var(--gold); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-links li a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links li a:hover { color: var(--gold); }
.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}
.footer-bottom a { color: var(--gold); }

/* ---- Floating Call Button (mobile) ---- */
.floating-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: pulse-btn 2.5s infinite;
}
.floating-call svg { width:18px; height:18px; fill:var(--navy-dark); }
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,0,0,.35); }
  50% { box-shadow: 0 6px 32px rgba(212,160,23,.6); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .page-hero .container { grid-template-columns: 1fr; }
  .dispatch-card { max-width: 100%; }
}
@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; }
  .main-nav.open { display: flex; }
  .hamburger { display: block; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .floating-call { display: flex; }
  .utility-bar .ub-license { display: none; }
}
@media (max-width: 480px) {
  .locations-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 44px; }
}
