/* All Star Bail Bonds - simple static website styles */
:root {
  --blue: #00007c;
  --blue-dark: #000052;
  --blue-bright: #1010c8;
  --white: #ffffff;
  --ink: #0d1224;
  --muted: #5f6678;
  --soft: #f5f7ff;
  --line: rgba(0,0,124,.14);
  --shadow: 0 24px 70px rgba(0,0,124,.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rajdhani', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .035;
  background-image: radial-gradient(var(--blue) .75px, transparent .75px);
  background-size: 7px 7px;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

body { cursor: auto; }
a, button, .menu-toggle, .drop-trigger { cursor: pointer; }
input, textarea { cursor: text; }
.hidden-field { display: none !important; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 20px; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 4px solid var(--blue);
  box-shadow: 0 8px 36px rgba(0,0,124,.13);
  transition: height .25s ease, box-shadow .25s ease;
}
.site-nav.scrolled { height: 64px; box-shadow: 0 12px 45px rgba(0,0,124,.22); }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 205px;
}
.brand img { width: 68px; height: auto; }
.brand span {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 28px;
  letter-spacing: 1.5px;
  color: var(--ink);
  line-height: .9;
}
.brand strong { color: var(--blue); font-weight: 400; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a,
.drop-trigger {
  font: 700 13px/1 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 22px 0;
  position: relative;
}
.nav-links a::after,
.drop-trigger::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after,
.dropdown:hover .drop-trigger::after { width: 100%; }
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 12px 20px !important;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: 0 10px 24px rgba(0,0,124,.25);
  transition: transform .25s ease, background .25s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--blue-bright) !important; }
.nav-cta::after { display: none !important; }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translate(-50%, 12px);
  width: 285px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  box-shadow: var(--shadow);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown-menu a {
  display: block;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(0,0,124,.08);
}
.dropdown-menu a:last-child { border-bottom: 0; }
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--soft); color: var(--blue); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--ink);
  margin: 6px auto;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

main { padding-top: 76px; }
.section { padding: 96px 40px; position: relative; overflow: hidden; }
.container { max-width: 1220px; margin: 0 auto; position: relative; z-index: 1; }
.section-header { text-align: center; max-width: 780px; margin: 0 auto 58px; }
.section-label {
  display: inline-block;
  font: 800 11px/1 'Montserrat', Arial, sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 13px;
}
.section-title,
h1, h2, h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 2px;
  font-weight: 400;
}
.section-title { font-size: clamp(42px, 5vw, 78px); line-height: .92; }
.section-line { width: 72px; height: 5px; background: var(--blue); margin: 22px auto 0; }
.section-copy { color: var(--muted); font-size: 18px; line-height: 1.75; margin-top: 18px; }
.blue { color: var(--blue); }
.outline {
  -webkit-text-stroke: 2px currentColor;
  color: transparent;
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 15%, rgba(0,0,124,.12), transparent 28%),
    linear-gradient(90deg, #fff 0%, #fff 53%, #f2f4ff 53%, #f2f4ff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: 'ALL STAR';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(120px, 22vw, 315px);
  letter-spacing: 12px;
  color: rgba(0,0,124,.045);
  white-space: nowrap;
  pointer-events: none;
}
.hero-stripe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(var(--blue-bright), var(--blue-dark));
}
.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 68px;
  padding: 76px 60px 70px 82px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 9px 18px;
  font: 800 11px/1 'Montserrat', Arial, sans-serif;
  letter-spacing: 2.7px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeInDown .75s ease both;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}
.hero h1 {
  font-size: clamp(60px, 7vw, 108px);
  line-height: .88;
  margin-bottom: 18px;
  animation: fadeInUp .75s ease .08s both;
}
.hero-subtitle {
  max-width: 560px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(19px, 2vw, 24px);
  color: #47506a;
  line-height: 1.45;
  margin-bottom: 30px;
  animation: fadeInUp .75s ease .16s both;
}
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  animation: fadeInUp .75s ease .24s both;
}
.stat { min-width: 108px; }
.stat-num {
  display: block;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 47px;
  line-height: 1;
  color: var(--blue);
}
.stat-label {
  display: block;
  font: 800 11px/1.25 'Montserrat', Arial, sans-serif;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-actions,
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; animation: fadeInUp .75s ease .32s both; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  padding: 16px 30px;
  text-decoration: none;
  border: 2px solid transparent;
  font: 800 13px/1 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 14px 34px rgba(0,0,124,.34); }
.btn-primary:hover { transform: translateY(-3px); background: var(--blue-bright); box-shadow: 0 20px 44px rgba(0,0,124,.42); }
.btn-secondary { color: var(--blue); border-color: var(--blue); background: var(--white); }
.btn-secondary:hover { transform: translateY(-3px); color: var(--white); background: var(--blue); }
.btn-white { color: var(--blue); background: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); transform: translateY(-3px); }

.hero-card-wrap { perspective: 1100px; animation: fadeInRight .9s ease .24s both; }
.hero-card {
  max-width: 455px;
  margin: 0 auto;
  position: relative;
  transition: transform .12s ease-out;
  transform-style: preserve-3d;
}
.hero-card::before,
.hero-card::after {
  content: '';
  position: absolute;
  border: 3px solid var(--blue);
  opacity: .18;
  z-index: -1;
  animation: spinSlow 12s linear infinite;
}
.hero-card::before { width: 92px; height: 92px; right: -24px; top: -28px; }
.hero-card::after { width: 120px; height: 120px; left: -28px; bottom: -35px; animation-direction: reverse; opacity: .11; }
.logo-panel {
  background: linear-gradient(145deg, rgba(0,0,124,.98), rgba(0,0,82,.96));
  padding: 34px;
  border-radius: 6px;
  box-shadow: 26px 28px 70px rgba(0,0,124,.26), -8px -8px 28px rgba(255,255,255,.85);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
}
.logo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.20), transparent 45%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 2px, transparent 2px 46px);
}
.logo-panel img { position: relative; z-index: 2; filter: drop-shadow(0 16px 26px rgba(0,0,0,.24)); }
.card-note {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  color: rgba(255,255,255,.88);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font: 800 11px/1.25 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.card-note span { border: 1px solid rgba(255,255,255,.22); padding: 10px; text-align: center; }
.card-glow {
  position: absolute;
  inset: -36px;
  z-index: -2;
  background: radial-gradient(circle, rgba(0,0,124,.24), transparent 68%);
  animation: pulse 3s ease-in-out infinite;
}

.ticker {
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 34px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  animation: ticker 28s linear infinite;
}
.ticker-track span:nth-child(even) { opacity: .55; }

.emergency {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
}
.emergency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 22px, rgba(255,255,255,.045) 22px 44px);
}
.emergency > * { position: relative; z-index: 1; }
.emergency h2 { font-size: clamp(42px, 6vw, 82px); line-height: .95; }
.emergency p { color: rgba(255,255,255,.78); font-size: 19px; margin: 12px 0 26px; }
.phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: 3px;
  animation: phoneRing 2s ease-in-out infinite;
}
.phone-big:hover { color: #dbe0ff; transform: scale(1.03); }

.services { background: var(--soft); }
.services::before,
.why::before,
.process::before {
  content: attr(data-bg);
  position: absolute;
  right: -24px;
  top: 22px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(92px, 13vw, 190px);
  color: rgba(0,0,124,.04);
  letter-spacing: 8px;
  pointer-events: none;
}
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card,
.why-item,
.contact-card,
.location-card,
.faq-item,
.notice-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,124,.05);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background .32s ease;
}
.service-card::before,
.why-item::before,
.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--blue);
  transition: height .32s ease;
}
.service-card:hover,
.why-item:hover,
.location-card:hover,
.contact-card:hover,
.faq-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,124,.16);
  border-color: rgba(0,0,124,.32);
}
.service-card:hover::before,
.why-item:hover::before,
.location-card:hover::before { height: 100%; }
.service-num {
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 68px;
  color: rgba(0,0,124,.07);
  line-height: 1;
}
.service-icon { display: block; font-size: 34px; margin-bottom: 16px; transition: transform .28s ease; }
.service-card:hover .service-icon { transform: scale(1.15) rotate(4deg); }
.service-title,
.why-title,
.location-title { font-size: 28px; line-height: 1; margin-bottom: 12px; }
.service-desc,
.why-desc,
.location-copy,
.faq-item p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.service-link,
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  text-decoration: none;
  font: 800 11px/1 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: gap .25s ease;
  gap: 8px;
}
.service-link:hover,
.text-link:hover { gap: 14px; }

.coverage {
  background: var(--blue-dark);
  color: var(--white);
}
.coverage-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.coverage .section-title { color: var(--white); }
.coverage .section-copy { color: rgba(255,255,255,.76); }
.counties-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.county-tag {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--white);
  text-decoration: none;
  font: 800 12px/1.2 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
  position: relative;
}
.county-tag:hover { transform: translateY(-4px) scale(1.02); background: var(--white); color: var(--blue); }
.county-tag span {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 9px;
  letter-spacing: .7px;
  opacity: .65;
}
.coverage-card {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.075);
  padding: 34px;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
}
.coverage-card::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
}
.coverage-card h3 { font-size: 40px; margin-bottom: 14px; }
.coverage-card p { color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.75; }
.mini-list { display: grid; gap: 10px; margin-top: 22px; }
.mini-list li { list-style: none; padding-left: 25px; position: relative; color: rgba(255,255,255,.82); }
.mini-list li::before { content: '✓'; position: absolute; left: 0; color: var(--white); font-weight: 800; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.why-item { box-shadow: none; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-label { color: var(--blue); font: 800 12px/1 'Montserrat', Arial, sans-serif; letter-spacing: 2px; margin-bottom: 14px; }
.why-item:hover { background: var(--blue); color: var(--white); }
.why-item:hover .why-label,
.why-item:hover .why-desc { color: rgba(255,255,255,.82); }
.why-item:hover .why-title { color: var(--white); }

.process { background: var(--soft); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  left: 11%;
  right: 11%;
  top: 47px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}
.step { text-align: center; padding: 0 18px; position: relative; z-index: 1; }
.step-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--blue);
  background: var(--white);
  color: var(--blue);
  border-radius: 999px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 34px;
  box-shadow: 0 14px 34px rgba(0,0,124,.18);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.step:hover .step-circle { transform: scale(1.09); background: var(--blue); color: var(--white); }
.step-title { font-size: 26px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 16px; line-height: 1.6; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.blue-panel {
  background: var(--blue);
  color: var(--white);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.blue-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 50px);
}
.blue-panel > * { position: relative; z-index: 1; }
.blue-panel h2 { font-size: clamp(42px, 5vw, 72px); line-height: .95; margin-bottom: 16px; }
.blue-panel p { color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.75; }
.notice-card {
  border-left: 6px solid var(--blue);
  background: linear-gradient(90deg, rgba(0,0,124,.06), #fff);
}
.notice-card h3 { color: var(--blue); font-size: 34px; margin-bottom: 10px; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-item h3 { font-size: 24px; color: var(--blue); margin-bottom: 8px; }

.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.16), transparent 26%),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: 118px 40px 74px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-bg);
  position: absolute;
  right: -14px;
  bottom: -36px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(100px, 18vw, 240px);
  color: rgba(255,255,255,.065);
  letter-spacing: 10px;
}
.page-hero .container { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; }
.page-hero h1 { font-size: clamp(54px, 7vw, 100px); line-height: .9; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 20px; line-height: 1.6; max-width: 680px; }
.page-logo { width: 200px; filter: drop-shadow(0 16px 30px rgba(0,0,0,.25)); }
.breadcrumb { font: 800 11px/1 'Montserrat', Arial, sans-serif; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px; color: rgba(255,255,255,.75); }
.breadcrumb a { color: var(--white); text-decoration: none; }

.city-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.city-tags span {
  background: var(--soft);
  color: var(--blue);
  border: 1px solid var(--line);
  padding: 9px 13px;
  font: 800 12px/1 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.location-card a { color: var(--blue); text-decoration: none; }

.contact-section { background: var(--soft); }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.contact-list { display: grid; gap: 14px; margin-top: 18px; }
.contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 17px;
}
.contact-row strong { color: var(--ink); display: block; font-family: 'Montserrat', Arial, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 2px; }
.contact-row .icon { width: 42px; height: 42px; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; border-radius: 999px; }
.contact-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 15px 16px;
  font: 600 16px/1.3 'Rajdhani', Arial, sans-serif;
  color: var(--ink);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,0,124,.08); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--muted); font-size: 14px; line-height: 1.55; }
.form-note.success { color: #067a33; font-weight: 700; }
.form-note.error { color: #a40000; font-weight: 700; }
.contact-form button[disabled] { opacity: .65; pointer-events: none; }
.map-wrap {
  margin-top: 28px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
  background: var(--white);
}
.map-wrap iframe { width: 100%; height: 365px; border: 0; display: block; }

.cta-section {
  background: var(--blue);
  color: var(--white);
  padding: 88px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 58px, rgba(255,255,255,.055) 58px 60px);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(50px, 7vw, 94px); line-height: .92; margin-bottom: 16px; }
.cta-section p { max-width: 720px; margin: 0 auto 30px; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.65; }
.cta-actions { justify-content: center; }

.footer {
  background: #07091a;
  color: rgba(255,255,255,.72);
  padding: 58px 40px 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.11); }
.footer-logo { width: 160px; margin-bottom: 18px; }
.footer p { font-size: 15px; line-height: 1.7; }
.footer h3 { color: var(--white); font-size: 22px; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.footer h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--white); }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer a { color: rgba(255,255,255,.72); text-decoration: none; transition: color .2s ease; }
.footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.55); }
.footer-notice { color: rgba(255,255,255,.55); }
.footer-credit {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f1d48a !important;
  font-family: 'Satisfy', 'Brush Script MT', cursive;
  font-size: 21px;
  line-height: 1;
  letter-spacing: .4px;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}
.footer-credit:hover { color: #ffffff !important; }
.credit-heart {
  color: #ff1f2d;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  margin: 0 1px;
  text-shadow: 0 0 10px rgba(255,31,45,.35);
}
.sage-name { border-bottom: 1px solid rgba(241,212,138,.65); padding-bottom: 2px; }
.footer-badge { display: inline-block; margin-top: 14px; padding: 6px 12px; background: var(--blue); color: var(--white); font: 800 11px/1 'Montserrat', Arial, sans-serif; letter-spacing: 1.6px; }
.float-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  z-index: 9000;
  box-shadow: 0 14px 35px rgba(0,0,124,.38);
  animation: phoneRing 2s ease-in-out infinite;
}
.float-call:hover { transform: scale(1.1); background: var(--blue-bright); }
.float-label {
  position: fixed;
  right: 96px;
  bottom: 34px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  font: 800 11px/1 'Montserrat', Arial, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  z-index: 8999;
  transition: opacity .2s ease, transform .2s ease;
}
.float-call:hover + .float-label { opacity: 1; transform: translateX(0); }

.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity .7s ease, transform .7s ease; }
.reveal { transform: translateY(42px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0,0); }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes spinSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: .58; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
@keyframes phoneRing {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
  30% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  50% { transform: rotate(0); }
}

@media (max-width: 1050px) {
  .site-nav { padding: 0 22px; }
  .brand span { display: none; }
  .nav-links { gap: 16px; }
  .hero-grid { grid-template-columns: 1fr; padding: 54px 28px 62px 40px; }
  .hero-card-wrap { order: -1; }
  .hero-card { max-width: 380px; }
  .coverage-grid, .split, .contact-layout { grid-template-columns: 1fr; }
  .card-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 42px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .menu-toggle { display: block; }
  .site-nav { height: 70px; }
  main { padding-top: 70px; }
  .brand img { width: 76px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 4px solid var(--blue);
    box-shadow: 0 18px 44px rgba(0,0,124,.18);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a, .drop-trigger { display: block; width: 100%; padding: 15px 0; text-align: left; }
  .nav-links a::after, .drop-trigger::after { display: none; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none;
    border-top: 2px solid var(--blue);
    margin: 5px 0 12px;
    padding: 8px;
    background: var(--soft);
  }
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu { transform: none; }
  .nav-cta { text-align: center !important; margin-top: 8px; }
  .section { padding: 74px 20px; }
  .page-hero { padding: 90px 20px 56px; }
  .page-hero .container { grid-template-columns: 1fr; }
  .page-logo { width: 160px; }
  .counties-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero { background: var(--white); }
  .hero-grid { padding: 38px 20px 54px 30px; gap: 38px; }
  .hero-stats { gap: 18px; }
  .stat { min-width: 92px; }
  .stat-num { font-size: 39px; }
  .card-grid, .why-grid, .steps, .faq-grid, .location-grid { grid-template-columns: 1fr; }
  .service-card, .why-item, .contact-card, .location-card, .notice-card { padding: 28px; }
  .blue-panel { padding: 34px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom div + div, .footer-credit { margin-top: 10px; }
  .footer-credit { margin-left: 0; }
  .float-label { display: none; }
  .map-wrap iframe { height: 305px; }
}
