/* ═══════ CUSTOM PROPERTIES ═══════ */
:root {
  --black: #0a0a0a;
  --black-mid: #111111;
  --black-card: #161616;
  --yellow: #f5c518;
  --yellow-bright: #ffe44d;
  --yellow-light: #fff3b0;
  --yellow-dim: rgba(245,197,24,0.10);
  --yellow-hover: rgba(245,197,24,0.06);
  --white: #fafaf8;
  --off-white: #f2f1ed;
  --gray-100: #e8e7e3;
  --gray-200: #d4d3cf;
  --gray-300: #b0afa8;
  --gray-400: #8a8980;
  --gray-500: #6b6a62;
  --gray-600: #4a4940;
  --text: #1a1a18;
  --navy: #003366;
  --navy-light: #004080;
  --navy-dark: #002244;
  --navy-mid: #002d5a;
  --navy-dim: rgba(0,51,102,0.10);
  --navy-hover: rgba(0,51,102,0.06);
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Crimson Pro', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
::selection { background: rgba(245,197,24,0.25); color: var(--black); }
::-moz-selection { background: rgba(245,197,24,0.25); color: var(--black); }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
section[id] { scroll-margin-top: 80px; }
a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ═══════ WP ADMIN BAR ═══════ */
.admin-bar nav { top: 32px; }
.admin-bar .nav-center.open { top: 108px; }
@media (max-width: 782px) {
  .admin-bar nav { top: 46px; }
  .admin-bar .nav-center.open { top: 122px; }
}

/* ═══════ NAV ═══════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(0,51,102,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.nav-logo {
  height: 90px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
  position: relative;
  top: 8px;
  background: radial-gradient(circle, rgba(255,255,255,1) 40%, rgba(255,255,255,0.9) 60%, transparent 71%);
  border-radius: 50%;
  padding: 4px;
}
.mobile-nav-extras {
  display: none !important;
  list-style: none;
}
.nav-brand-text h1 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.nav-brand-text span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.nav-center {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-center a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-center a:hover { color: var(--white); }
.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  border-radius: 1px;
  transition: width 0.25s;
}
.nav-center a:hover::after { width: 100%; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}
.nav-btn {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 22px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
}
.nav-btn:hover {
  background: var(--yellow-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,197,24,0.35);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}
.nav-toggle svg {
  width: 24px; height: 24px;
  color: var(--white);
  transition: transform 0.3s;
}
.nav-toggle.active svg { transform: rotate(90deg); }

/* ═══════ HERO ═══════ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 1;
  background: url(../images/hero-bg.jpg) center/cover no-repeat;
}
.hero-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,34,68,0.72) 0%, rgba(0,51,102,0.62) 50%, rgba(0,34,68,0.78) 100%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-content.vis {
  opacity: 1;
  transform: translateY(0);
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-pill .dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.hero h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h2 em {
  font-style: italic;
  color: var(--yellow);
  text-shadow: 0 0 40px rgba(245,197,24,0.15);
}
.hero-text {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 32px;
  background: var(--yellow);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.35);
}
.btn-outline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-visual.vis {
  opacity: 1;
  transform: translateY(0);
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 20px 0;
}

/* ── Floating badges ── */
.hero-float {
  position: absolute;
  z-index: 2;
  border-radius: 12px;
  animation: floatIn 0.8s ease both;
}
.hero-float-monitoring {
  top: -6px; right: -16px;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.hero-float-monitoring strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.hero-float-monitoring > span:last-child {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  display: none;
}
.hero-float-pulse {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.hero-float-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  animation: pulse-ring 2s ease infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hero-float-credential {
  bottom: -28px; left: -24px;
  background: rgba(0,51,102,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  animation-delay: 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-float-check {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-check svg {
  width: 24px; height: 24px;
  stroke: var(--black);
  stroke-width: 2.5;
}
.hero-float-credential strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.hero-float-credential span {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Main card ── */
.hero-card {
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 28px;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.2),
    0 0 0 1px rgba(245,197,24,0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(245,197,24,0.06), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
.hero-card-badge {
  background: var(--yellow);
  color: var(--black);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--yellow);
}
.hero-card-status::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Operations grid ── */
.hero-ops-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.hero-ops-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0,20,50,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: border-color 0.25s;
}
.hero-ops-row:hover {
  border-color: rgba(255,255,255,0.12);
}
.hero-ops-icon {
  font-size: 0.9rem;
  color: var(--yellow);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.hero-ops-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  flex: 1;
}
.hero-ops-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-ops-status-dot.active {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.4);
}
.hero-ops-status-dot.standby {
  background: var(--yellow);
  box-shadow: 0 0 8px rgba(245,197,24,0.3);
}

/* ── Stats footer ── */
.hero-card-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-card-stat div {
  text-align: center;
  padding: 14px 8px;
  background: rgba(0,20,50,0.5);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-card-stat .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.hero-card-stat .lbl {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════ SERVICES ═══════ */
.services {
  padding: 100px 48px;
  background: var(--white);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 20px;
}
.svc-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 0;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.svc-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-body { padding: 28px 28px 32px; }
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--yellow);
  border-radius: 0 0 2px 0;
  transition: height 0.4s;
  z-index: 2;
}
.svc-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.svc-card:hover::before { height: 100%; }
.svc-icon-wrap {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--yellow);
  margin-bottom: 20px;
}
.svc-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ═══════ WHY ═══════ */
.why {
  padding: 100px 48px;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  right: -10%; top: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.06), transparent 60%);
  border-radius: 50%;
}
.why .section-label { color: rgba(255,255,255,0.45); }
.why .section-label::before { background: rgba(245,197,24,0.4); }
.why .section-title { color: var(--white); }
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.why-item {
  padding: 36px 24px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  transition: all 0.3s;
}
.why-item:hover {
  background: rgba(245,197,24,0.04);
  border-color: rgba(245,197,24,0.1);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--yellow-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
  border: 1px solid rgba(245,197,24,0.15);
}
.why-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-item p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

/* ═══════ STATS ═══════ */
.stats {
  padding: 72px 48px;
  background: var(--navy);
  border-top: none;
  border-bottom: none;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-card {
  text-align: center;
  padding: 28px 16px;
  transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-card .num {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .lbl {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}

/* ═══════ CONTACT ═══════ */
.contact {
  padding: 100px 48px;
  background: var(--white);
}
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-left h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-left h2 em {
  font-style: italic;
  color: var(--yellow);
}
.contact-left > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 32px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-row-icon {
  width: 42px; height: 42px;
  background: var(--yellow-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--yellow);
  flex-shrink: 0;
  border: 1px solid rgba(245,197,24,0.15);
}
.contact-row-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.contact-row-val {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}
.contact-row-val a { color: var(--navy); text-decoration: none; }
.contact-row-val a:hover { color: var(--yellow); }
.contact-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -60%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,0.1), transparent 60%);
  border-radius: 50%;
}
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.contact-card > p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  position: relative;
}
.contact-card .btn-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 16px 40px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
.contact-card .btn-cta:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,197,24,0.25);
}

/* ═══════ NAV ACTIVE STATE ═══════ */
.nav-center a.active { color: var(--white); }
.nav-center a.active::after { width: 100%; }

/* ═══════ SERVICE CARD LINKS ═══════ */
a.svc-card { text-decoration: none; display: block; }
.svc-card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--yellow);
  transition: color 0.25s, letter-spacing 0.3s;
}
a.svc-card:hover .svc-card-link { color: var(--navy); letter-spacing: 0.02em; }

/* ═══════ PAGE HERO (Inner Pages) ═══════ */
.page-hero {
  padding: 140px 48px 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-compact { padding: 130px 48px 60px; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(245,197,24,0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(245,197,24,0.04) 0%, transparent 40%);
}
.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--yellow);
  text-shadow: 0 0 40px rgba(245,197,24,0.2);
}
.page-hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto 32px;
}
.page-hero-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  background: var(--yellow-dim);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--yellow);
}
.page-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.btn-outline-light:hover {
  border-color: var(--yellow);
  background: rgba(245,197,24,0.1);
  color: var(--yellow);
}

/* ═══════ BREADCRUMBS ═══════ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0.78rem;
  font-weight: 500;
}
.breadcrumbs a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s;
}
.breadcrumbs a:hover { color: var(--yellow); }
.breadcrumbs .sep { color: rgba(255,255,255,0.2); }
.breadcrumbs .current { color: rgba(255,255,255,0.65); }

/* ═══════ SERVICE PAGE CONTENT ═══════ */
.svc-page-content { padding: 80px 48px; background: var(--white); }
.svc-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.svc-page-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
}
.svc-page-intro p { margin-bottom: 20px; }
.svc-page-intro p:last-child { margin-bottom: 0; }
.svc-page-hero-img {
  margin: 40px 0 0;
  border-radius: 10px;
  overflow: hidden;
}
.svc-page-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}
.svc-page-features { margin-top: 56px; }
.svc-page-features h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  transition: all 0.3s;
}
.feature-item:hover {
  background: var(--white);
  border-color: var(--gray-200);
  transform: translateX(4px);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* Benefits */
.svc-page-benefits { margin-top: 56px; }
.svc-page-benefits h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefit-card {
  display: flex;
  gap: 14px;
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  transition: all 0.3s;
}
.benefit-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
}
.benefit-check {
  width: 28px; height: 28px;
  background: var(--yellow-dim);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--yellow);
  flex-shrink: 0;
  font-weight: 700;
}
.benefit-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.benefit-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* Sidebar */
.svc-page-sidebar { position: sticky; top: 100px; }
.sidebar-cta {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 24px;
}
.sidebar-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.sidebar-cta p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.sidebar-cta .btn-cta {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 24px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 12px;
}
.sidebar-cta .btn-cta:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.3);
}
.sidebar-phone {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.25s;
}
.sidebar-phone:hover { color: var(--yellow); }

.sidebar-services {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-services h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.sidebar-services ul { list-style: none; }
.sidebar-services li { margin-bottom: 4px; }
.sidebar-services li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.25s;
}
.sidebar-services li a:hover {
  background: var(--white);
  color: var(--navy);
}
.sidebar-services li.active a {
  background: var(--yellow-dim);
  color: var(--navy);
  font-weight: 600;
}
.sidebar-svc-icon {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.sidebar-stats {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px;
}
.sidebar-stat {
  text-align: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.sidebar-stat .lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

/* ═══════ SERVICES OVERVIEW PAGE ═══════ */
.svc-featured { padding: 80px 48px 0; background: var(--white); }
.svc-featured-inner { max-width: 1200px; margin: 0 auto; }
.svc-featured-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 24px;
}
.svc-featured-img {
  width: 100%;
  max-height: 340px;
  overflow: hidden;
}
.svc-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-featured-card > .svc-featured-content,
.svc-featured-card > .svc-featured-stats {
  padding-left: 48px;
  padding-right: 48px;
}
.svc-featured-content { padding-top: 40px; }
.svc-featured-stats { padding-bottom: 40px; }
.svc-featured-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.svc-featured-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.svc-featured-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.svc-featured-list {
  list-style: none;
  margin-bottom: 28px;
}
.svc-featured-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-featured-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--yellow-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
}
.svc-featured-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-featured-stat {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}
.svc-featured-stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.svc-featured-stat .lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

.svc-overview { padding: 80px 48px; background: var(--white); }
.svc-overview-inner { max-width: 1200px; margin: 0 auto; }
.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 20px;
}
a.svc-overview-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 0;
  text-decoration: none;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.svc-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
a.svc-overview-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body {
  padding: 28px 28px 32px;
}
a.svc-overview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--yellow);
  border-radius: 0 0 2px 0;
  transition: height 0.4s;
}
a.svc-overview-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
a.svc-overview-card:hover::before { height: 100%; }
a.svc-overview-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
a.svc-overview-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ═══════ ABOUT PAGE ═══════ */
.about-story { padding: 80px 48px; background: var(--white); }
.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.about-story-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.about-story-content h2 em {
  font-style: italic;
  color: var(--yellow);
}
.about-story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.about-story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.about-stat-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.about-stat-card.highlight {
  background: var(--navy);
  border-color: #222;
}
.about-stat-card.highlight .num { color: var(--yellow); }
.about-stat-card.highlight .lbl { color: rgba(255,255,255,0.5); }
.about-stat-card .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.about-stat-card .lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
  display: block;
}

.about-values { padding: 80px 48px; background: var(--off-white); }
.about-values-inner { max-width: 1200px; margin: 0 auto; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}
.about-value-card:hover {
  transform: translateY(-4px);
  border-color: var(--gray-200);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.about-value-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
}
.about-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.about-value-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray-500);
}

.about-credentials {
  padding: 48px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.about-credentials-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.25s;
}
.credential-item:hover { color: var(--navy); }
.credential-icon {
  width: 28px; height: 28px;
  background: var(--yellow-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════ CONTACT PAGE ═══════ */
.contact-page { padding: 80px 48px; background: var(--white); }
.contact-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.contact-form-wrap > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.form-group .req { color: var(--yellow); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 13px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  color: var(--text);
  transition: all 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8980' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.full { grid-column: 1 / -1; }
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-submit {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 40px;
  background: var(--navy);
  color: var(--yellow);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,10,10,0.2);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-note {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.5;
}
.form-note a { color: var(--navy); font-weight: 600; text-decoration: none; }
.form-note a:hover { color: var(--yellow); }
.form-feedback {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  animation: feedbackIn 0.3s ease;
}
@keyframes feedbackIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-feedback.success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #15803d;
}
.form-feedback.error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #b91c1c;
}

/* Contact Info Sidebar */
.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 36px 28px;
  margin-bottom: 24px;
}
.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-row:last-child { margin-bottom: 0; }

.contact-emergency-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  margin-bottom: 24px;
}
.emergency-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-emergency-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.emergency-phone {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.25s;
}
.emergency-phone:hover { color: var(--yellow-bright); }

.contact-trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
}
.trust-check {
  width: 22px; height: 22px;
  background: var(--yellow-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════ SITE CTA (Inner Pages) ═══════ */
.site-cta {
  padding: 80px 48px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.site-cta::before {
  content: '';
  position: absolute;
  left: 50%; top: -40%;
  width: 600px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(245,197,24,0.06), transparent 60%);
  border-radius: 50%;
}
.site-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.site-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.site-cta p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.site-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════ FOOTER (Updated) ═══════ */
footer {
  background: var(--navy-dark);
  border-top: none;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 48px 40px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo {
  height: 76px;
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
  background: radial-gradient(circle, rgba(255,255,255,1) 40%, rgba(255,255,255,0.9) 60%, transparent 71%);
  border-radius: 50%;
  padding: 4px;
}
.footer-logo-link strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.15;
}
.footer-logo-link span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-col ul a:hover { color: var(--yellow); }
.footer-address,
.footer-hours {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 5px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
}
.footer-bottom .badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ═══════ INDUSTRIES (Homepage) ═══════ */
.industries {
  padding: 100px 48px;
  background: var(--navy);
}
.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.industries .section-label { color: rgba(255,255,255,0.45); }
.industries .section-label::before { background: rgba(245,197,24,0.4); }
.industries .section-title { color: var(--white); }
.industries-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin-bottom: 48px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 0;
  transition: all 0.35s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}
.industry-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.industry-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.4s, transform 0.5s;
}
.industry-card:hover .industry-card-img img { opacity: 0.9; transform: scale(1.06); }
.industry-card-body { padding: 24px 24px 28px; }
.industry-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.industry-icon {
  width: 48px; height: 48px;
  background: var(--yellow-dim);
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--yellow);
  margin-bottom: 18px;
}
.industry-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* ═══════ PROCESS (Homepage) ═══════ */
.process {
  padding: 100px 48px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 600px;
  margin-bottom: 56px;
}
.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  padding: 32px 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  transition: all 0.3s;
}
.process-step:hover {
  background: var(--white);
  border-color: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.process-num {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray-500);
}
.process-connector {
  width: 40px;
  min-width: 40px;
  height: 2px;
  background: var(--gray-200);
  align-self: center;
  margin-top: -20px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -2px; top: -3px;
  width: 8px; height: 8px;
  border-right: 2px solid var(--gray-300);
  border-top: 2px solid var(--gray-300);
  transform: rotate(45deg);
}

/* ═══════ TRUST STRIP (Homepage) ═══════ */
.trust-strip {
  padding: 48px;
  background: var(--navy-dark);
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-strip-icon {
  width: 36px; height: 36px;
  background: var(--yellow-dim);
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--yellow);
  flex-shrink: 0;
  font-weight: 700;
}
.trust-strip-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.trust-strip-item span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

/* ═══════ SERVICE APPROACH (Services Page) ═══════ */
.svc-approach {
  padding: 80px 48px;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
}
.svc-approach-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.svc-approach-text .section-title {
  margin-bottom: 24px;
}
.svc-approach-text .section-title em {
  font-style: italic;
  color: var(--yellow);
}
.svc-approach-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.svc-approach-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-approach-point {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  transition: all 0.3s;
}
.svc-approach-point:hover {
  border-color: var(--gray-200);
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.svc-approach-point-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.svc-approach-point h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.svc-approach-point p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* ═══════ SERVICE INDUSTRIES (Services Page) ═══════ */
.svc-industries {
  padding: 80px 48px;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
}
.svc-industries-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.svc-industries .section-label {
  justify-content: center;
}
.svc-industries .section-title {
  margin-bottom: 16px;
}
.svc-industries-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 40px;
}
.svc-industries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.industry-tag {
  display: inline-block;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.25s;
}
.industry-tag:hover {
  border-color: var(--yellow);
  background: var(--yellow-dim);
  color: var(--navy);
}

/* ═══════ TESTIMONIAL SECTION ═══════ */
.testimonial-section {
  padding: 80px 48px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  left: 50%; top: -30%;
  width: 600px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(245,197,24,0.06), transparent 60%);
  border-radius: 50%;
}
.testimonial-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonial-section .section-label {
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
}
.testimonial-section .section-label::before {
  background: rgba(245,197,24,0.4);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-grid-single {
  grid-template-columns: 1fr;
  max-width: 680px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.8;
  margin-bottom: 8px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
  font-style: normal;
  margin: 0;
}
.testimonial-divider {
  width: 48px;
  height: 2px;
  background: rgba(245,197,24,0.3);
  border-radius: 1px;
  margin: 24px 0;
}
.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.testimonial-location {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Inline testimonial (inside service pages) */
.testimonial-inline {
  margin-top: 56px;
}
.testimonial-inline .testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
}
.testimonial-inline .testimonial-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
}
.testimonial-inline .testimonial-quote-mark { color: var(--navy); }
.testimonial-inline .testimonial-text {
  color: var(--gray-600);
  font-style: italic;
}
.testimonial-inline .testimonial-divider { background: var(--navy); opacity: 0.15; }
.testimonial-inline .testimonial-name { color: var(--navy); }
.testimonial-inline .testimonial-role { color: var(--gray-400); }
.testimonial-inline .testimonial-location { color: var(--navy); opacity: 0.5; }

/* ═══════ CASE STUDY PAGE ═══════ */
.cs-page-content { padding: 80px 48px; background: var(--white); }
.cs-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.cs-section {
  margin-bottom: 48px;
}
.cs-section:last-of-type {
  margin-bottom: 0;
}
.cs-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.cs-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--yellow-dim);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--yellow);
  flex-shrink: 0;
}
.cs-section-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
}
.cs-section-body p {
  margin-bottom: 20px;
}
.cs-section-body p:last-child {
  margin-bottom: 0;
}
.cs-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.cs-result-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
.cs-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-color: var(--gray-200);
}
.cs-result-card .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.cs-result-card .lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  display: block;
}
.cs-testimonial {
  margin-top: 56px;
  background: var(--navy);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.cs-testimonial::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,0.08), transparent 60%);
  border-radius: 50%;
}
.cs-testimonial .testimonial-grid {
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}
.cs-testimonial .testimonial-card {
  background: transparent;
  border: none;
  padding: 0;
}
.cs-testimonial .testimonial-card:hover {
  background: transparent;
  transform: none;
}
.cs-testimonial .testimonial-quote-mark { color: var(--yellow); opacity: 0.8; }
.cs-testimonial .testimonial-text { color: rgba(255,255,255,0.92); font-style: italic; }
.cs-testimonial .testimonial-divider { background: rgba(245,197,24,0.3); opacity: 1; }
.cs-testimonial .testimonial-name { color: var(--white); }
.cs-testimonial .testimonial-role { color: rgba(255,255,255,0.75); }
.cs-testimonial .testimonial-location { color: rgba(255,255,255,0.6); }

/* Case Study Sidebar */
.cs-page-sidebar { position: sticky; top: 100px; }
.sidebar-info-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-info-card h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.sidebar-info-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.sidebar-info-row:last-child { border-bottom: none; }
.sidebar-info-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.sidebar-info-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.sidebar-related {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 28px;
}
.sidebar-related h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.sidebar-related ul { list-style: none; }
.sidebar-related li { margin-bottom: 8px; }
.sidebar-related li:last-child { margin-bottom: 0; }
.sidebar-related li a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid transparent;
}
.sidebar-related li a:hover {
  background: var(--white);
  border-color: var(--gray-100);
}
.sidebar-related-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.sidebar-related-desc {
  display: block;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--gray-400);
}

/* ═══════ CASE STUDIES LISTING PAGE ═══════ */
.cs-listing {
  padding: 80px 48px;
  background: var(--white);
}
.cs-listing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.cs-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 24px;
}
a.cs-listing-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 0;
  text-decoration: none;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cs-listing-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.cs-listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
a.cs-listing-card:hover .cs-listing-card-img img { transform: scale(1.05); }
.cs-listing-card-body {
  padding: 32px 32px 36px;
}
a.cs-listing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--yellow);
  border-radius: 0 0 2px 0;
  transition: height 0.4s;
}
a.cs-listing-card:hover {
  background: var(--white);
  border-color: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
a.cs-listing-card:hover::before { height: 100%; }
.cs-listing-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
a.cs-listing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
a.cs-listing-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.cs-listing-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
  transition: color 0.25s, letter-spacing 0.3s;
}
a.cs-listing-card:hover .cs-listing-link {
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* ═══════ SEO LANDING PAGES ═══════ */
.seo-city-info {
  margin-top: 40px;
  padding: 32px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
}
.seo-city-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.seo-city-info p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.seo-city-info p:last-child { margin-bottom: 0; }
.seo-city-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.seo-city-meta-item {
  font-size: 0.82rem;
  color: var(--gray-500);
}
.seo-city-meta-item strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.seo-features-summary {
  margin-top: 40px;
}
.seo-features-summary h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.seo-features-summary p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
}
.seo-county-block {
  margin-top: 40px;
  padding: 32px;
  background: var(--navy);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.seo-county-block::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,24,0.08), transparent 60%);
  border-radius: 50%;
}
.seo-county-block h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.seo-county-block p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.seo-city-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.seo-city-detail {}
.seo-detail-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.seo-detail-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
}
.seo-features {
  margin-top: 40px;
}
.seo-features h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.seo-features p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.seo-learn-more {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.25s, letter-spacing 0.3s;
}
.seo-learn-more:hover {
  color: var(--navy);
  letter-spacing: 0.02em;
}
.seo-county-desc {
  margin-top: 40px;
  padding: 32px;
  background: var(--navy);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.seo-county-desc::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,24,0.08), transparent 60%);
  border-radius: 50%;
}
.seo-county-desc h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.seo-county-desc p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.seo-cross-links {
  margin-top: 40px;
}
.seo-cross-links h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.seo-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-link-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.25s;
}
.seo-link-card:hover {
  border-color: var(--yellow);
  background: var(--yellow-dim);
  color: var(--navy);
}
.seo-link-icon {
  font-size: 0.9rem;
  color: var(--yellow);
}
.seo-link-title {
  font-weight: 500;
}
.seo-nearby {
  margin-top: 32px;
}
.seo-nearby h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.seo-nearby-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.seo-nearby-list a {
  display: block;
  padding: 10px 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.25s;
}
.seo-nearby-list a:hover {
  border-color: var(--yellow);
  background: var(--yellow-dim);
  color: var(--navy);
}
.seo-crosslinks {
  margin-top: 40px;
}
.seo-crosslinks h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.seo-crosslinks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.seo-crosslinks-list a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.25s;
}
.seo-crosslinks-list a:hover {
  border-color: var(--yellow);
  background: var(--yellow-dim);
  color: var(--navy);
}

/* ═══════ ABOUT VALUES 5-GRID ═══════ */
.about-values-grid-5 {
  grid-template-columns: repeat(3, 1fr);
}

/* ═══════ REVEALS ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: min(400px, 100%); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { flex-wrap: wrap; gap: 16px; }
  .process-connector { display: none; }
  .process-step { flex: 1 1 calc(50% - 8px); min-width: 0; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .svc-approach-inner { grid-template-columns: 1fr; }
  /* Inner pages */
  .svc-page-inner { grid-template-columns: 1fr; }
  .svc-page-sidebar { position: static; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .svc-featured-card { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-inner { grid-template-columns: 1fr; }
  /* Case studies */
  .cs-page-inner { grid-template-columns: 1fr; }
  .cs-page-sidebar { position: static; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-values-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-center, .nav-right { display: none; }
  .nav-toggle { display: block; }
  .nav-center.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: rgba(0,34,68,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    z-index: 999;
    animation: mobileMenuIn 0.25s ease;
  }
  .nav-center.open a {
    font-size: 1rem;
    padding: 4px 0;
    color: rgba(255,255,255,0.8);
  }
  /* Mobile menu: show phone + CTA inside nav-center when open */
  .nav-center.open .mobile-nav-extras {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-center.open .mobile-nav-extras .nav-phone {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
  }
  .nav-center.open .mobile-nav-extras .nav-btn {
    display: inline-block;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.88rem;
  }
  .hero { padding: 110px 24px 60px; min-height: auto; }
  .hero h2 { font-size: clamp(2rem, 6vw, 2.8rem); }
  .hero-inner { min-width: 0; width: 100%; }
  .hero-content, .hero-visual { min-width: 0; max-width: 100%; }
  .hero-text { max-width: 100%; }
  .hero-card-stack { max-width: 100%; padding: 10px 0; }
  .hero-card { max-width: 100%; }
  .hero-float-monitoring { right: 0; top: -2px; }
  .hero-float-credential { left: 0; bottom: 0; }
  .services, .why, .contact, .industries, .process { padding: 60px 24px; }
  .stats { padding: 48px 24px; }
  .trust-strip { padding: 36px 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card-img { height: 200px; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: 1fr; }
  .industry-card-img { height: 180px; }
  .process-step { flex: 1 1 100%; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-left h2 { font-size: 2rem; }
  .svc-approach { padding: 48px 24px; }
  .svc-industries { padding: 48px 24px; }
  /* Inner pages */
  .page-hero { padding: 110px 24px 60px; }
  .page-hero-compact { padding: 100px 24px 48px; }
  .page-hero h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .svc-page-content { padding: 48px 24px; }
  .svc-page-sidebar { grid-template-columns: 1fr; }
  .svc-featured { padding: 48px 24px 0; }
  .svc-featured-card > .svc-featured-content,
  .svc-featured-card > .svc-featured-stats { padding-left: 24px; padding-right: 24px; }
  .svc-overview { padding: 48px 24px; }
  .svc-overview-grid { grid-template-columns: 1fr; }
  .about-story { padding: 48px 24px; }
  .about-values { padding: 48px 24px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-values-grid-5 { grid-template-columns: 1fr; }
  .about-credentials { padding: 36px 24px; }
  .about-credentials-inner { gap: 20px; justify-content: flex-start; }
  .contact-page { padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-trust-items { grid-template-columns: 1fr; }
  /* Case studies & testimonials */
  .testimonial-section { padding: 60px 24px; }
  .cs-listing { padding: 48px 24px; }
  .cs-listing-grid { grid-template-columns: 1fr; }
  .cs-page-content { padding: 48px 24px; }
  .cs-page-sidebar { grid-template-columns: 1fr; }
  .cs-results-grid { grid-template-columns: 1fr 1fr; }
  .cs-testimonial { padding: 28px 24px; }
  .site-cta { padding: 60px 24px; }
  .footer-inner { padding: 40px 24px 30px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; text-align: center; }
}

@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 48px; }
  .hero h2 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero-text { font-size: 0.9rem; max-width: 100%; }
  .hero-pill { font-size: 0.65rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
  .hero-card { padding: 20px; }
  .hero-card-stat .num { font-size: 1.2rem; }
  .hero-float { position: relative; top: auto; right: auto; bottom: auto; left: auto; }
  .hero-card-stack { display: flex; flex-direction: column; gap: 10px; padding: 0; }
  .hero-float-monitoring { order: -1; align-self: flex-end; }
  .hero-float-credential { align-self: flex-start; }
  .stat-card .num { font-size: 2.2rem; }
  .contact-left h2 { font-size: 1.7rem; }
  .contact-card { padding: 36px 24px; }
  .contact-card h3 { font-size: 1.5rem; }
  .services, .why, .contact, .industries, .process { padding: 48px 20px; }
  .stats { padding: 40px 20px; }
  .trust-strip { padding: 32px 20px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .svc-approach { padding: 36px 20px; }
  .svc-industries { padding: 36px 20px; }
  /* Inner pages */
  .page-hero { padding: 96px 20px 44px; }
  .page-hero-btns { flex-direction: column; }
  .page-hero-btns a { text-align: center; }
  .svc-page-content { padding: 36px 20px; }
  .feature-item { flex-direction: column; gap: 12px; }
  .svc-featured-content h2 { font-size: 1.6rem; }
  .about-story-content h2 { font-size: 1.8rem; }
  .contact-form-wrap h2 { font-size: 1.6rem; }
  /* Case studies & testimonials */
  .testimonial-section { padding: 48px 20px; }
  .testimonial-card { padding: 28px 24px; }
  .cs-listing { padding: 36px 20px; }
  .cs-page-content { padding: 36px 20px; }
  .cs-results-grid { grid-template-columns: 1fr; }
  .cs-section-label { font-size: 1.3rem; }
  .cs-testimonial { padding: 24px 20px; }
  .site-cta { padding: 48px 20px; }
  .footer-inner { padding: 36px 20px 24px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { padding: 16px 20px; }
}

/* ═══════ FLEET SHOWCASE (HOMEPAGE) ═══════ */
.fleet-showcase {
  padding: 100px 40px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.fleet-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  opacity: 0.6;
}
.fleet-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.fleet-showcase-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fleet-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  position: relative;
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.fleet-img:hover img {
  transform: scale(1.03);
}
.fleet-img-primary {
  grid-row: 1 / 3;
  min-height: 380px;
}
.fleet-img-secondary {
  min-height: 180px;
  align-self: end;
}
.fleet-showcase-content .section-label {
  color: var(--yellow);
}
.fleet-showcase-content h2 {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 12px 0 20px;
}
.fleet-showcase-content h2 em {
  color: var(--yellow);
  font-style: normal;
}
.fleet-showcase-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.fleet-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.fleet-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
}
.fleet-highlight-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 8px;
  color: var(--yellow);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ═══════ ABOUT FLEET BANNER ═══════ */
.about-fleet-banner {
  padding: 0 40px;
  background: var(--off-white);
}
.about-fleet-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.about-fleet-banner-inner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.about-fleet-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(transparent, rgba(0,20,40,0.85));
}
.about-fleet-caption span {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ═══════ SIDEBAR VEHICLE IMAGE ═══════ */
.sidebar-vehicle {
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy);
  margin-bottom: 24px;
}
.sidebar-vehicle img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.sidebar-vehicle-caption {
  display: block;
  padding: 10px 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ═══════ SEO LANDING VEHICLE IMAGE ═══════ */
.seo-vehicle-img {
  margin: 0 0 32px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.seo-vehicle-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.seo-vehicle-caption {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ═══════ VEHICLE IMAGE RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .fleet-showcase { padding: 72px 32px; }
  .fleet-showcase-inner { grid-template-columns: 1fr; gap: 40px; }
  .fleet-showcase-images { max-width: 600px; }
  .fleet-showcase-content h2 { font-size: 2rem; }
  .about-fleet-banner-inner img { height: 320px; }
}
@media (max-width: 768px) {
  .fleet-showcase { padding: 56px 20px; }
  .fleet-showcase-images { grid-template-columns: 1fr; }
  .fleet-img-primary { min-height: 260px; }
  .fleet-img-secondary { min-height: 200px; }
  .fleet-showcase-content h2 { font-size: 1.75rem; }
  .fleet-highlights { gap: 10px; }
  .about-fleet-banner { padding: 0 20px; }
  .about-fleet-banner-inner img { height: 240px; }
  .about-fleet-banner-inner { border-radius: 12px; }
  .seo-vehicle-img img { height: 240px; }
  .sidebar-vehicle img { height: 170px; }
}
@media (max-width: 480px) {
  .fleet-showcase { padding: 44px 16px; }
  .fleet-showcase-content h2 { font-size: 1.5rem; }
  .fleet-highlight { font-size: 0.88rem; }
  .fleet-highlight-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  .about-fleet-banner { padding: 0 16px; }
  .about-fleet-banner-inner img { height: 180px; }
  .about-fleet-caption { padding: 12px 16px; }
  .about-fleet-caption span { font-size: 0.78rem; }
  .seo-vehicle-img img { height: 180px; }
  .sidebar-vehicle img { height: 140px; }
}

/* ═══════ SERVICE AREAS PAGE — INTERACTIVE MAP ═══════ */
.sa-map-section { padding: 80px 48px; background: var(--white); }
.sa-map-inner { max-width: 1200px; margin: 0 auto; }
.sa-map-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-top: 32px;
  align-items: start;
}

/* Mapbox map container */
.sa-map-wrap {
  position: sticky;
  top: 96px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
#sa-map {
  width: 100%;
  height: 540px;
}
/* Mapbox overrides */
.sa-map-wrap .mapboxgl-ctrl-top-left { margin: 10px; }
.sa-map-wrap .mapboxgl-ctrl-bottom-left { margin: 4px 10px; }
.mapboxgl-popup-content {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* County pin markers */
.sa-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.sa-pin-dot {
  width: 16px;
  height: 16px;
  background: var(--navy);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.sa-pin:hover .sa-pin-dot { transform: scale(1.2); }
.sa-pin-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-shadow: 0 0 4px var(--white), 0 0 4px var(--white), 0 0 4px var(--white);
  white-space: nowrap;
  pointer-events: none;
  transition: color 0.2s, transform 0.2s;
}
.sa-pin:hover .sa-pin-label { transform: scale(1.05); }
/* Active pin */
.sa-pin.active .sa-pin-dot {
  background: var(--yellow);
  border-color: var(--navy);
  width: 20px;
  height: 20px;
  box-shadow: 0 2px 10px rgba(245,197,24,0.5);
}
.sa-pin.active .sa-pin-label {
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
}

/* HQ marker */
.sa-hq-marker {
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border: 3px solid var(--navy);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  position: relative;
}
.sa-hq-marker::after {
  content: 'HQ';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 3px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  color: var(--navy);
  text-shadow: 0 0 3px var(--white), 0 0 3px var(--white);
  white-space: nowrap;
  letter-spacing: 0.06em;
}

/* No legend needed for pin-based map */
.sa-map-legend { display: none; }

/* Detail panel */
.sa-detail {
  min-height: 400px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 32px 28px;
}

/* Default state */
.sa-detail-default h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}
.sa-detail-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.sa-detail-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 16px 20px;
  flex: 1;
}
.sa-detail-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.sa-detail-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.sa-detail-intro {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.sa-detail-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sa-region-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.sa-region-btn:hover {
  border-color: var(--navy);
  background: var(--navy-dim);
}
.sa-region-btn-count {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-400);
  background: var(--off-white);
  padding: 2px 7px;
  border-radius: 20px;
}

/* County detail (JS-populated) */
.sa-detail-content {
  transition: opacity 0.25s ease;
}
.sa-detail-head { margin-bottom: 12px; }
.sa-detail-region {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--navy);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.sa-detail-head h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.sa-detail-count {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-400);
}
.sa-detail-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin-bottom: 20px;
}

/* City accordion */
.sa-detail-cities {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sa-detail-city {
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}
.sa-detail-city-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.15s;
}
.sa-detail-city-header:hover { background: var(--navy-hover); }
.sa-detail-city-header svg {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.25s;
}
.sa-detail-city.open .sa-detail-city-header svg { transform: rotate(180deg); }
.sa-detail-city-services {
  display: none;
  padding: 0 14px 12px;
}
.sa-detail-city.open .sa-detail-city-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.sa-detail-svc-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.sa-detail-svc-link:hover {
  background: var(--navy-dim);
  color: var(--navy);
}
.sa-detail-svc-icon { font-size: 0.85rem; width: 16px; text-align: center; }

/* SEO fallback */
.sa-seo-links {
  padding: 64px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.sa-seo-links h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.sa-seo-links h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
  margin: 12px 0 6px;
}
.sa-seo-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.sa-seo-links a {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-decoration: none;
}
.sa-seo-links a:hover { color: var(--navy); }

/* Hide SEO fallback when JS activates the map */
.sa-map-active .sa-seo-links {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Footer link */
.footer-area-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-area-link:hover { color: var(--yellow); }

/* ═══════ SERVICE AREAS RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .sa-map-layout { grid-template-columns: 1.2fr 1fr; gap: 28px; }
  .sa-map-section { padding: 64px 32px; }
  #sa-map { height: 460px; }
  .sa-detail-city.open .sa-detail-city-services { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sa-map-section { padding: 48px 20px; }
  .sa-map-layout { grid-template-columns: 1fr; gap: 24px; }
  .sa-map-wrap { position: static; }
  #sa-map { height: 350px; }
  .sa-detail { min-height: auto; padding: 24px 20px; }
  .sa-detail-stats { gap: 12px; }
  .sa-detail-stat { padding: 12px 14px; }
  .sa-detail-stat-num { font-size: 1.3rem; }
  .sa-detail-default h2 { font-size: 1.25rem; }
  .sa-detail-head h2 { font-size: 1.2rem; }
  .sa-map-legend { gap: 10px 16px; }
}
@media (max-width: 480px) {
  .sa-map-section { padding: 36px 16px; }
  #sa-map { height: 280px; }
  .sa-detail-stats { flex-direction: column; gap: 8px; }
  .sa-detail-stat { flex-direction: row; gap: 8px; padding: 10px 14px; }
  .sa-region-btn { font-size: 0.78rem; padding: 6px 10px; }
  .sa-detail-city-header { font-size: 0.84rem; padding: 8px 10px; }
  .sa-detail-svc-link { font-size: 0.75rem; }
}
