/* =====================================================
   Henson PILOT ESCORTING SERVICES - MAIN STYLESHEET
   Color Palette:
   --navy-dark:   #0d1b2e
   --navy:        #1a2f4e
   --blue:        #1e56a0
   --blue-light:  #2d7dd2
   --orange:      #f97316
   --orange-dark: #ea6c0c
   --white:       #ffffff
   --gray-light:  #f4f6f9
   --gray:        #6b7280
   --gray-dark:   #374151
===================================================== */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --navy-dark:   #0d1b2e;
  --navy:        #1a2f4e;
  --blue:        #1e56a0;
  --blue-light:  #2d7dd2;
  --orange:      #f97316;
  --orange-dark: #ea6c0c;
  --white:       #ffffff;
  --gray-light:  #f4f6f9;
  --gray-mid:    #e5e7eb;
  --gray:        #6b7280;
  --gray-dark:   #374151;
  --text:        #1f2937;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.16);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  0.25s ease;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --font-heading:'Montserrat', 'Inter', system-ui, sans-serif;
  --max-width:   1280px;
  --section-pad: 100px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- UTILITY CLASSES ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1440px; }

.section { padding: var(--section-pad) 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 140px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.section-title--white { color: var(--white); }
.section-title--center { text-align: center; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 640px;
  line-height: 1.7;
}

.section-subtitle--white { color: rgba(255,255,255,0.8); }
.section-subtitle--center { text-align: center; margin: 0 auto; }

.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-orange { color: var(--orange); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.4);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}
.btn--outline-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ---------- HEADER / NAVIGATION ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Top bar */
.header-topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.header-topbar a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.header-topbar a:hover { color: var(--orange); }
.header-topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-topbar-contact span {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.header-topbar-contact span svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.header-topbar-inner > span:first-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 28px; height: 28px; fill: var(--white); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background: rgba(255,255,255,0.06);
}

.nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover {
  background: var(--gray-light);
  color: var(--orange);
  padding-left: 26px;
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

/* Geometric accent */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(249,115,22,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(30,86,160,.25) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.18);
  border: 1px solid rgba(249,115,22,.35);
  color: #ffa452;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 820px;
}
.hero-headline .accent { color: var(--orange); }

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-item { text-align: left; }
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 3px solid var(--orange);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ---------- ABOUT SECTION ---------- */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--gray-light);
}
.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-image-badge .number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}
.about-image-badge .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content {}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--gray-light);
  transition: all var(--transition);
}
.about-feature-item:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}
.about-feature-item:hover .about-feature-title,
.about-feature-item:hover .about-feature-text {
  color: var(--white);
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 18px; height: 18px; color: var(--white); }
.about-feature-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.about-feature-text  { font-size: 0.78rem; color: var(--gray); line-height: 1.4; }

/* ---------- SERVICES SECTION ---------- */
.services-section { background: var(--gray-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  border: 1px solid var(--gray-mid);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--orange); }

.service-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
}
.service-card .learn-more svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .learn-more { color: var(--orange); }
.service-card:hover .learn-more svg { transform: translateX(4px); }

/* ---------- WHY CHOOSE US ---------- */
.why-section {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(249,115,22,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(30,86,160,.2) 0%, transparent 50%);
}
.why-section .container { position: relative; z-index: 1; }

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
}
.why-feature:hover {
  background: rgba(249,115,22,.12);
  border-color: rgba(249,115,22,.3);
  transform: translateY(-4px);
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-feature-icon svg { width: 24px; height: 24px; color: var(--orange); }

.why-feature-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.why-feature-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ---------- HOW IT WORKS ---------- */
.how-section { background: var(--white); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0,
    var(--orange) 8px,
    transparent 8px,
    transparent 16px
  );
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 4px solid var(--orange);
  position: relative;
  box-shadow: 0 0 0 8px rgba(249,115,22,.1);
}
.step-number-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}
.step-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-badge svg { width: 13px; height: 13px; color: var(--white); }

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ---------- SERVICE AREAS ---------- */
.areas-section { background: var(--gray-light); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  margin-bottom: 40px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 2px solid var(--gray-mid);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.area-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--navy-dark);
}
.area-card:hover .area-state-name,
.area-card:hover .area-card-title { color: var(--white); }
.area-card:hover .area-services { color: rgba(255,255,255,0.6); }

.area-flag {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.area-card-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.area-state-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.area-services {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 6px;
}

.areas-cta-wrap {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: var(--navy-dark);
  border-radius: var(--radius-md);
  color: var(--white);
}
.areas-cta-wrap p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--white); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  min-width: calc(33.333% - 19px);
  border: 1px solid var(--gray-mid);
  position: relative;
  flex-shrink: 0;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  font-family: Georgia, serif;
  opacity: 0.4;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars svg { width: 18px; height: 18px; color: #f59e0b; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-dark);
}
.author-company {
  font-size: 0.8rem;
  color: var(--gray);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--navy-dark);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover {
  background: var(--navy-dark);
  color: var(--white);
}
.slider-btn svg { width: 18px; height: 18px; }

.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-mid);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(105deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3a6b 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.cta-banner-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-banner-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
}

.cta-banner-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  margin-top: 16px;
}
.cta-banner-phone svg { width: 24px; height: 24px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #080f1a;
  color: rgba(255,255,255,0.7);
}

.footer-main {
  padding: 80px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}

.footer-brand .footer-logo { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ---------- INNER PAGE STYLES ---------- */
.page-hero {
  background: linear-gradient(105deg, var(--navy-dark), var(--navy));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}
.page-hero--no-overlay::after { display: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero-breadcrumb a:hover { color: var(--orange); }
.page-hero-breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
}

/* Content area */
.content-section { padding: 80px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
.content-main h2 { margin: 40px 0 16px; font-size: 1.6rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--gray-dark); font-size: 0.95rem; }
.content-main ul {
  list-style: none;
  margin: 16px 0 24px;
}
.content-main ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-mid);
}
.content-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f97316'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- ESCORT SERVICES GRID (service area pages) ---------- */
.escort-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 14px;
  margin: 24px 0 36px;
}

.escort-service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.escort-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.escort-service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.escort-service-card:hover::after {
  transform: scaleX(1);
}

.escort-service-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.escort-service-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.escort-service-card__title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.escort-service-card__desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .escort-services-grid { grid-template-columns: 1fr; }
}

/* ---------- PILOT CAR REQUIREMENTS BLOCK (service area pages) ---------- */
.reqs-block {
  margin: 28px 0 32px;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.reqs-block__header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.reqs-block__header svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

.reqs-block__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
}

.reqs-dim-card {
  padding: 22px 18px;
  border-right: 1px solid var(--gray-mid);
  text-align: center;
  transition: background var(--transition);
}

.reqs-dim-card:last-child {
  border-right: none;
}

.reqs-dim-card:hover {
  background: var(--gray-light);
}

.reqs-dim-card__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.reqs-dim-card__value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}

.reqs-dim-card__note {
  font-size: 0.73rem;
  color: var(--gray);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .reqs-block__grid { grid-template-columns: 1fr 1fr; }
  .reqs-dim-card:nth-child(2) { border-right: none; }
  .reqs-dim-card:nth-child(1),
  .reqs-dim-card:nth-child(2) { border-bottom: 1px solid var(--gray-mid); }
}

/* ---------- WHY CHOOSE CARDS (service area pages) ---------- */
.why-choose-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}

.why-choose-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: all var(--transition);
}

.why-choose-card:hover {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-choose-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.why-choose-card__body {}

.why-choose-card__title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 5px;
  line-height: 1.3;
}

.why-choose-card__desc {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .why-choose-cards { grid-template-columns: 1fr; }
}

/* Sidebar */
.content-sidebar {}
.sidebar-widget {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  margin-bottom: 28px;
}
.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}
.sidebar-cta {
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  margin-bottom: 28px;
}
.sidebar-cta h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.sidebar-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.sidebar-cta .btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.sidebar-cta .btn { font-size: 0.82rem; padding: 11px 16px; }

/* ---------- CONTACT PAGE ---------- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .form-group--full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--orange); }
textarea.form-control { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
  height: fit-content;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; font-size: 1.3rem; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--orange); }
.contact-info-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-info-value { font-size: 0.95rem; color: var(--white); font-weight: 600; margin-top: 2px; }
.contact-info-value a { color: var(--white); }
.contact-info-value a:hover { color: var(--orange); }

/* ---------- FAQ SECTION ---------- */
.faq-section { background: var(--gray-light); }
.faq-list { max-width: 800px; margin: 56px auto 0; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--gray-mid);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--orange); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* ---------- BLOG ARCHIVE ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  overflow: hidden;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-card-cat {
  display: inline-block;
  background: rgba(249,115,22,.1);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--orange); }
.blog-card-excerpt { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- 404 PAGE ---------- */
.error-404-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--gray-mid);
  line-height: 1;
  font-family: var(--font-heading);
}

/* ---------- NOTICE BANNER ---------- */
.notice-banner {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
}
.notice-banner a { color: var(--white); text-decoration: underline; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  border: none;
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--orange-dark); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- ANIMATED ENTRY ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ---------- MOBILE NAV OVERLAY ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-nav-close {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.mobile-nav-close svg { width: 20px; height: 20px; }
.mobile-nav-links { flex: 1; }
.mobile-nav-links a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-nav-links a:hover { color: var(--orange); }
.mobile-nav-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-cta .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  :root { --section-pad: 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .logo-tagline { display: none; }
  .logo-icon { width: 38px; height: 38px; }
  .logo-icon svg { width: 22px; height: 22px; }
  .logo-name { font-size: 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 600px; margin: 0 auto; }
  .why-header { grid-template-columns: 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .header-topbar { display: none; }

  .hero { min-height: 85vh; }
  .hero-stats { gap: 24px; }
  .hero-stat-number { font-size: 1.8rem; }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .how-steps::before { display: none; }

  .why-features { grid-template-columns: 1fr; }

  .testimonial-card { min-width: 90%; }

  .services-grid { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-group--full { grid-column: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .contact-form-wrap { padding: 32px 24px; }

  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  .blog-grid { grid-template-columns: 1fr; }

  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn--lg { padding: 15px 30px; }
}

/* ---------- WP ALIGNMENT HELPERS ---------- */
.aligncenter { margin: 2rem auto; display: block; }
.alignleft  { float: left; margin: 0 2rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 2rem; }
.wp-block-image { margin: 2rem 0; }

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ---------- SCREEN READER ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---------- STATE CTA BANNER ---------- */
.state-cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 52px 44px;
  border-radius: var(--radius-md);
  margin-top: 40px;
  overflow: hidden;
}


.state-cta-banner h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.state-cta-banner p {
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}

/* ---------- SIDEBAR NAV LINKS ---------- */
.sidebar-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--gray-dark);
  padding: 8px 8px 8px 4px;
  border-bottom: 1px solid var(--gray-mid);
  text-decoration: none;
  border-radius: 4px;
  transition: color .2s ease, background .2s ease, padding-left .2s ease;
}

.sidebar-nav-link:hover,
.sidebar-nav-link:focus-visible {
  color: var(--navy-dark);
  background: rgba(0, 91, 187, .06);
  padding-left: 12px;
  text-decoration: none;
}

.sidebar-nav-link:hover .sidebar-nav-chevron,
.sidebar-nav-link:focus-visible .sidebar-nav-chevron {
  transform: translateX(3px);
}

.sidebar-nav-chevron {
  color: var(--orange);
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s ease;
}
