/* =====================================================
   MILLION DOLLAR TRANSPORT — GLOBAL STYLESHEET
   Design: Navy #0d1f3c / Gold #c9a024 / White / Steel Gray
   ===================================================== */

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

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1a1f2e;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy:        #0d1f3c;
  --navy-dark:   #060e1e;
  --navy-mid:    #162d52;
  --steel:       #3d4f6b;
  --steel-light: #6b7a94;
  --gold:        #c9a024;
  --gold-light:  #e8b830;
  --gold-dark:   #a07e18;
  --white:       #ffffff;
  --off-white:   #f4f6f9;
  --border:      #dde3ed;
  --text-dark:   #1a1f2e;
  --text-muted:  #6b7a94;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   14px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
  --shadow:      0 4px 18px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.18);

  --transition:  all .22s ease;
  --max-width:   1240px;
  --section-py:  80px;
}

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.75; color: var(--steel); }

.gold    { color: var(--gold); }
.navy    { color: var(--navy); }
.white   { color: var(--white); }
.muted   { color: var(--text-muted); }
.bold    { font-weight: 700; }
.small   { font-size: .875rem; }

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-py) 0;
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: #a8b4c8; }

.section--gray {
  background: var(--off-white);
}
.section--border-top {
  border-top: 1px solid var(--border);
}

/* ---------- GRID HELPERS ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }
.align-center { align-items: center; }
.flex-col { flex-direction: column; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }

/* ---------- SECTION LABELS ---------- */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: none;
  white-space: nowrap;
  font-family: inherit;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,160,36,.35);
}

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

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

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
}

.btn--sm { padding: 9px 20px; font-size: .85rem; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* ---------- CARDS ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.card--dark {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,.08);
  color: var(--white);
}
.card--dark h3, .card--dark h4 { color: var(--white); }
.card--dark p { color: #a8b4c8; }

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,160,36,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2; }
.card--dark .card-icon { background: rgba(201,160,36,.15); }

/* ---------- GOLD DIVIDER ---------- */
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 20px;
}
.gold-rule--center { margin: 16px auto 20px; }

/* ---------- STAT ITEMS ---------- */
.stat-item { text-align: center; padding: 8px; }
.stat-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .85rem;
  color: #a8b4c8;
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- BADGE / TAG ---------- */
.badge {
  display: inline-block;
  background: rgba(201,160,36,.15);
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.badge--navy {
  background: rgba(13,31,60,.08);
  color: var(--navy);
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,14,30,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,160,36,.15);
  transition: box-shadow .3s;
}
.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.08);
  box-shadow: 0 0 14px rgba(201,160,36,0.6);
}
.footer-logo-img {
  width: 44px;
  height: 44px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.brand-emblem-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.brand-emblem-img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 24px rgba(201,160,36,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-emblem-img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 44px rgba(0,0,0,0.6), 0 0 32px rgba(201,160,36,0.55);
}
.brand-emblem-sm {
  width: 64px;
  height: 64px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--navy-dark);
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-line1 {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.nav-logo-line2 {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

.nav-cta { margin-left: 12px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,160,36,.15);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
}

/* Industrial grid / texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,31,60,.98) 40%, rgba(6,14,30,.85) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,.012) 60px,
      rgba(255,255,255,.012) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,.012) 60px,
      rgba(255,255,255,.012) 61px
    );
  z-index: 1;
}

/* Gold accent line bottom */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 3;
}

/* Decorative highway lines */
.hero-road {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  z-index: 2;
  opacity: .07;
  background:
    repeating-linear-gradient(
      -15deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,.4) 80px,
      rgba(255,255,255,.4) 82px
    );
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
}
.hero-emblem-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.hero-emblem-img {
  width: 260px;
  height: 260px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 16px 45px rgba(0,0,0,0.65), 0 0 35px rgba(201,160,36,0.35);
  animation: emblemFloat 6s ease-in-out infinite;
}
.hero-emblem-badge-tag {
  margin-top: 14px;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  background: rgba(13,31,60,.8);
  border: 1px solid rgba(201,160,36,.4);
  padding: 4px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
@keyframes emblemFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-emblem-showcase {
    display: none;
  }
}

.hero-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 24px;
}
.hero-headline em {
  color: var(--gold);
  font-style: normal;
  display: block;
}

.hero-subhead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { }
.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.hero-stat .lbl {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  background: var(--navy-dark);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg, transparent, transparent 60px,
      rgba(255,255,255,.01) 60px, rgba(255,255,255,.01) 61px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 60px,
      rgba(255,255,255,.01) 60px, rgba(255,255,255,.01) 61px
    );
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.62); max-width: 560px; font-size: 1.05rem; }
.page-hero .section-label { margin-bottom: 16px; }

/* =====================================================
   SERVICES OVERVIEW
   ===================================================== */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card h3 { margin: 16px 0 10px; }
.service-card p { font-size: .93rem; margin-bottom: 20px; }
.service-card .learn-more {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
}
.service-card:hover .learn-more { gap: 10px; }
.service-card .learn-more::after { content: '→'; }

/* =====================================================
   TRUST STRIP
   ===================================================== */
.trust-strip {
  background: var(--navy);
  padding: 28px 0;
  border-top: 1px solid rgba(201,160,36,.15);
  border-bottom: 1px solid rgba(201,160,36,.15);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
}
.trust-item svg { stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
.trust-item span { font-size: .88rem; font-weight: 500; }

/* =====================================================
   EQUIPMENT CARDS
   ===================================================== */
.equip-card {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.equip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,160,36,.3);
}
.equip-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}
.equip-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 20px,
    rgba(255,255,255,.015) 20px, rgba(255,255,255,.015) 21px
  );
}
.equip-svg {
  width: 200px;
  height: 80px;
  position: relative;
  z-index: 1;
}
.equip-body {
  padding: 28px 24px;
}
.equip-body h3 { color: var(--white); margin-bottom: 8px; }
.equip-body p { color: #a8b4c8; font-size: .92rem; margin-bottom: 16px; }
.equip-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.equip-spec {
  background: rgba(201,160,36,.1);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* =====================================================
   DISPATCH SECTION
   ===================================================== */
.dispatch-option {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
}
.dispatch-option.featured {
  border-color: var(--gold);
}
.dispatch-option .featured-badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.dispatch-option h3 { color: var(--navy); margin: 0 0 8px; }
.dispatch-option .sub { color: var(--text-muted); font-size: .9rem; margin-bottom: 20px; }
.dispatch-option:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.dispatch-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.dispatch-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  color: var(--steel);
}
.dispatch-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(201,160,36,.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a024' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* =====================================================
   HOW IT WORKS — STEPS
   ===================================================== */
.steps {
  counter-reset: step-counter;
}
.step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h4 { margin-bottom: 6px; }
.step-body p { font-size: .93rem; }

/* =====================================================
   ABOUT / MISSION
   ===================================================== */
.mission-block {
  background: var(--navy-dark);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin: 32px 0;
}
.mission-block p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  font-style: italic;
  line-height: 1.7;
}

.value-card {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.value-card:last-child { border-bottom: none; }
.value-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201,160,36,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; }
.value-body h4 { margin-bottom: 4px; }
.value-body p { font-size: .9rem; }

/* =====================================================
   FLEET PAGE
   ===================================================== */
.fleet-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
  margin-top: 16px;
}
.fleet-spec-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.fleet-spec-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--steel);
}
.fleet-spec-table tr:nth-child(even) td { background: var(--off-white); }
.fleet-spec-table td:first-child { font-weight: 600; color: var(--navy); }

/* Coverage map */
.coverage-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coverage-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 24px,
    rgba(255,255,255,.015) 24px, rgba(255,255,255,.015) 25px
  );
}
.coverage-block h3 { color: var(--white); margin-bottom: 16px; position: relative; }
.coverage-block p { color: #a8b4c8; position: relative; }
.coverage-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
  position: relative;
}
.region-tag {
  background: rgba(201,160,36,.15);
  border: 1px solid rgba(201,160,36,.25);
  color: var(--gold);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  position: sticky;
  top: 96px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(201,160,36,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.contact-item-text label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.contact-item-text a, .contact-item-text span {
  font-size: .95rem;
  font-weight: 500;
  color: var(--white);
}
.contact-item-text a:hover { color: var(--gold); }

/* Form */
.contact-form { }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .93rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,160,36,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-consent {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.form-consent a { color: var(--gold-dark); text-decoration: underline; }

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { border-top: none; margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 20px 0 8px; color: var(--steel); }
.legal-content p { font-size: .93rem; margin-bottom: 14px; }
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: .93rem;
  color: var(--steel);
  margin-bottom: 6px;
  padding-left: 4px;
}
.legal-content .highlight-box {
  background: rgba(201,160,36,.08);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 20px 0;
  font-size: .93rem;
  color: var(--steel);
}
.legal-content .highlight-box strong { color: var(--navy); }
.legal-effective {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: flex;
  gap: 24px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  align-items: flex-start;
}
.footer-contact-item svg { stroke: var(--gold); flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.5); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--gold); }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  background: linear-gradient(100deg, var(--navy-dark), var(--navy-mid));
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,.01) 40px, rgba(255,255,255,.01) 41px
  );
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto 32px; }
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); font-weight: 500; }

/* =====================================================
   MISC HELPERS
   ===================================================== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}
.divider--dark { background: rgba(255,255,255,.08); }

/* Animated counter */
.count-num { display: inline; }

/* Scroll fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

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

  .cta-band .actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .hero-headline { font-size: 2rem; }
}
