
/* Star Bail Bonds — Authoritative Guardian Design System */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0F1923;
  --navy-dark: #0A1218;
  --navy-mid: #0A2540;
  --blue: #1E90FF;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --white: #FFFFFF;
  --gray-100: #F4F6F8;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --text: #1A2332;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility Bar ── */
.utility-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.utility-bar a { color: var(--gold-light); text-decoration: none; font-weight: 600; }
.utility-bar a:hover { color: var(--white); }
.utility-bar .ub-left { display: flex; align-items: center; gap: 16px; }
.utility-bar .ub-right { display: flex; align-items: center; gap: 12px; }

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { background: var(--navy-dark); box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy-dark);
  font-weight: 900;
  font-family: 'Barlow Condensed', sans-serif;
}
.nav-logo .logo-text { line-height: 1.2; }
.nav-logo .logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-logo .logo-sub {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Hero — Homepage ── */
.hero-home {
  position: relative;
  min-height: 55vh;
  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 top;
  background-repeat: no-repeat;
}
.hero-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,18,24,0.88) 0%, rgba(10,18,24,0.65) 50%, rgba(10,18,24,0.45) 100%);
}
.hero-home .gold-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--gold);
}
.hero-home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.hero-h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ── Interior Page Hero ── */
.page-hero {
  position: relative;
  min-height: 40vh;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero .hero-bg-texture {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-hero .gold-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--gold);
  z-index: 2;
}
.page-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  width: 100%;
}
.page-hero-left { max-width: 680px; }
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.page-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.page-category .pill {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.page-category .rule {
  flex: 1;
  max-width: 40px;
  height: 2px;
  background: var(--gold);
}
.page-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.page-subtitle { font-size: 1rem; color: rgba(255,255,255,0.65); }

.dispatch-card {
  background: var(--navy-dark);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 240px;
  max-width: 280px;
}
.dispatch-card .dc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.dispatch-card .dc-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  line-height: 1.5;
}
.dispatch-card .dc-btn {
  display: block;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
}
.dispatch-card .dc-btn:hover { background: var(--gold-light); }

/* ── Quick Answer Box ── */
.quick-answer {
  background: linear-gradient(135deg, #EBF4FF 0%, #F0F9FF 100%);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.quick-answer h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.quick-answer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.quick-answer li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.quick-answer li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Sections ── */
section { padding: 72px 0; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy-dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; line-height: 1.65; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ── Services Grid ── */
.services-section { background: var(--gray-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.25s;
  transform-origin: bottom;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card:hover::before { transform: scaleY(1); }
.service-card .sc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.55; }
.service-card .sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 14px;
  text-decoration: none;
}
.service-card .sc-link:hover { color: var(--navy-mid); }

/* ── Locations Grid ── */
.locations-section { background: var(--white); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.location-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.2s;
}
.location-card:hover { background: var(--navy-mid); color: var(--white); border-color: var(--gold); transform: translateY(-2px); }
.location-card:hover .lc-city { color: var(--white); }
.location-card:hover .lc-state { color: rgba(255,255,255,0.6); }
.location-card:hover .lc-arrow { color: var(--gold); }
.lc-info { flex: 1; }
.lc-city { font-weight: 600; font-size: 0.95rem; color: var(--navy-dark); }
.lc-state { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }
.lc-arrow { color: var(--gray-400); font-size: 0.9rem; }

/* ── Trust / Why Us ── */
.trust-section { background: var(--navy-dark); color: var(--white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.trust-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.3); }
.trust-card .tc-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.trust-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.trust-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.trust-section .section-title { color: var(--white); }

/* ── Process Steps ── */
.process-section { background: var(--gray-100); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 24px;
  width: 30px;
  height: 30px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  text-align: center;
}
.process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-top: 6px;
}
.process-step p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.55; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-100); }
.faq-question.open { background: var(--navy-mid); color: var(--white); }
.faq-question .faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 18px 24px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-100);
}
.faq-answer.open { display: block; }

/* ── Content Layout ── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.content-main h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy-dark);
  text-transform: uppercase;
  margin: 28px 0 12px;
}
.content-main h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy-mid);
  text-transform: uppercase;
  margin: 20px 0 8px;
}
.content-main p { margin-bottom: 16px; font-size: 0.975rem; line-height: 1.7; color: var(--gray-600); }
.content-main p:first-of-type { font-size: 1.05rem; color: var(--text); }

/* ── Sidebar ── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-card .sc-header {
  background: var(--navy-mid);
  color: var(--white);
  padding: 14px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sidebar-card .sc-body { padding: 20px; }
.sidebar-card .sc-body p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 12px; }
.sidebar-card .map-embed { width: 100%; height: 220px; border: none; border-radius: 4px; }
.cta-sidebar {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  color: var(--white);
}
.cta-sidebar h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}
.cta-sidebar p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.cta-sidebar .phone-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}
.nearby-links { display: flex; flex-direction: column; gap: 8px; }
.nearby-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-200);
}
.nearby-links a:last-child { border-bottom: none; }
.nearby-links a:hover { color: var(--navy-mid); }

/* ── Reviews / Ratings ── */
.reviews-section { background: var(--gray-100); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-200);
}
.review-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 10px; }
.review-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.review-author { font-weight: 600; font-size: 0.85rem; color: var(--navy-dark); }
.review-date { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }
.rating-summary {
  background: var(--navy-dark);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  color: var(--white);
  margin-bottom: 36px;
}
.rating-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.rating-stars { font-size: 1.5rem; color: #F59E0B; margin: 8px 0; }
.rating-count { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--gold);
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.cta-banner .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .fb-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.65; margin-bottom: 16px; }
.footer-brand .fb-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  text-decoration: none;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── Floating Call Button (mobile) ── */
.float-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 22px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.float-call:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── Locations Index ── */
.locations-index { padding: 56px 0; }
.county-section { margin-bottom: 48px; }
.county-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy-dark);
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 48px 0; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }
  .hero-home { min-height: 50vh; }
  .hero-stats { gap: 20px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .dispatch-card { max-width: 100%; }
  .float-call { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .utility-bar .ub-left { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
}
