:root {
  --ink: #061428;
  --navy: #0b2a5b;
  --navy-2: #123a73;
  --gold: #c9a227;
  --gold-2: #e0b94a;
  --crimson: #0b2a5b;
  --cream: #f4f0e4;
  --paper: #faf7f0;
  --muted: #5a6270;
  --line: #e8e0d0;
  --white: #fff;
  --shadow: 0 22px 50px rgba(6, 20, 40, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--muted);
  background: var(--paper);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: Outfit, "DM Sans", sans-serif;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.01em;
}
a { text-decoration: none; color: inherit; transition: .25s ease; }
img { max-width: 100%; height: auto; }
.container { max-width: 1240px; }

.topbar {
  background: var(--ink);
  color: #d9d3c5;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 0;
}
.topbar a, .topbar span { color: #d9d3c5; }
.topbar i { color: var(--gold); margin-right: 6px; }
.topbar-contact { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.topbar-links a + a {
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.16);
}
.topbar-links a:hover { color: var(--gold); }

.site-header {
  background: rgba(250,247,240,.96);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 3px solid var(--gold);
}
.navbar { padding-top: 8px; padding-bottom: 8px; }
.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 18px;
  flex-shrink: 0;
}
.navbar-brand img {
  height: 128px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  background: transparent;
  mix-blend-mode: multiply;
}
.navbar-toggler {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--gold);
  flex-shrink: 0;
}
.navbar-toggler .bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.navbar-toggler:focus { box-shadow: none; }
@media (min-width: 992px) {
  .navbar-toggler { display: none; }
}
.navbar-nav .nav-link {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  padding: 10px 16px !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  border-radius: 999px;
  padding: 8px 18px !important;
  margin-left: 8px;
}
.nav-cta:hover, .nav-cta.active { background: var(--gold); color: var(--ink) !important; }
.nav-login {
  border: 1.5px solid var(--gold);
  color: var(--ink) !important;
  border-radius: 999px;
  padding: 8px 18px !important;
  margin-left: 8px;
}
.nav-login:hover, .nav-login.active {
  background: var(--gold);
  color: var(--ink) !important;
}
.dropdown-menu {
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 8px;
}
.dropdown-item { font-weight: 700; font-size: 16px; border-radius: 10px; }
.dropdown-item:hover { background: var(--ink); color: #fff; }

.btn-gold, .btn-ink, .btn-ghost, .btn-ghost-dark, .btn-crimson {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  padding: 12px 24px;
  border: 0;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-2); color: var(--ink); }
.btn-ink { background: var(--navy); color: #fff; }
.btn-ink:hover { background: var(--gold); color: var(--ink); }
.btn-crimson { background: var(--navy); color: #fff; }
.btn-crimson:hover { background: var(--navy-2); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(7,11,22,.2);
}
.btn-ghost-dark:hover { background: var(--ink); color: #fff; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  background: radial-gradient(1200px 500px at 80% 10%, rgba(201,162,39,.22), transparent 50%), var(--ink);
  color: #fff;
  padding: 40px 0 70px;
  overflow: hidden;
}
.hero-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-map canvas { width: 100%; height: 100%; display: block; }
.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(201,162,39,.32), transparent 65%);
  z-index: 1;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 5; }
.hero h1 {
  color: #fff;
  font-size: clamp(1.7rem, 4.4vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}
.hero h1 span {
  display: block;
  color: var(--gold);
}
.hero p.lead-hero {
  color: rgba(255,255,255,.8);
  font-size: 18px;
  max-width: 540px;
  text-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.hero h1 { text-shadow: 0 12px 32px rgba(0,0,0,.4); }
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(240,162,2,.35);
  color: var(--gold);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
}

.hero-track {
  background: rgba(255,253,248,.97);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,.28);
  color: var(--muted);
  max-width: 480px;
  margin-left: auto;
}
.hero-track label { font-size: 12px; font-weight: 700; color: var(--ink); }
.track-title {
  font-size: 22px;
  margin: 0;
  color: var(--ink);
}
.track-copy {
  font-size: 14px;
  margin: 0 0 18px;
}
.track-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(240,162,2,.16);
  color: #b07900;
  font-size: 18px;
  flex-shrink: 0;
}
.hero-track .form-control, .hero-track .form-select,
.form-control, .form-select {
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 48px;
  background: #fff;
}

.flight-card {
  background: rgba(10, 16, 30, .86);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 22px;
  color: #fff;
  height: 100%;
}
.flight-card h4 { color: #fff; font-size: 16px; }
.route-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 8px;
}
.route-city { font-weight: 800; color: #fff; }
.route-path {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  position: relative;
  overflow: hidden;
  border-radius: 99px;
}
.route-path i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--gold);
  animation: fly 3.2s linear infinite;
}
.lift-row {
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.lift-row p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}
@keyframes fly {
  0% { left: 0; }
  100% { left: calc(100% - 14px); }
}
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.mini-stat {
  background: rgba(0,0,0,.22);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
}
.mini-stat strong { display: block; color: var(--gold); font-size: 18px; }
.mini-stat span { font-size: 11px; color: rgba(255,255,255,.7); }

.ticker {
  background: var(--gold);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  font-weight: 800;
  padding: 12px 0;
  width: 100%;
}
.ticker-track {
  display: inline-flex;
  gap: 42px;
  animation: ticker 28s linear infinite;
  min-width: max-content;
}
.ticker-item { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ticker-item i { color: var(--navy); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section { padding: 88px 0; }
.section-dark { background: var(--ink); color: rgba(255,255,255,.78); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-cream { background: var(--cream); }
.eyebrow {
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
.section-dark .eyebrow, .hero .eyebrow { color: var(--gold); }
.lead-copy { font-size: 16px; line-height: 1.75; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card, .trust-card, .service-card, .step-card, .stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(7,11,22,.05);
  height: 100%;
  border: 1px solid rgba(7,11,22,.04);
}
.icon-bubble {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(240,162,2,.16);
  color: #b07900;
  font-size: 22px;
  margin-bottom: 16px;
}
.icon-bubble.red { background: rgba(11, 42, 91, .1); color: var(--navy); }
.feature-card h4, .trust-card h4, .service-card h3 { font-size: 18px; margin-bottom: 10px; }

.network-shell {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 0;
  background: #0c1220;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow);
}
.network-map { position: relative; min-height: 420px; }
.network-map canvas { width: 100%; height: 100%; display: block; }
.live-feed {
  background: linear-gradient(180deg, #141c2e, #0e1524);
  padding: 28px;
  border-left: 1px solid rgba(255,255,255,.06);
}
.live-feed h3 { color: #fff; font-size: 22px; }
.feed-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.feed-item:last-child { border-bottom: 0; }
.feed-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(240,162,2,.12);
  color: var(--gold);
}
.feed-item strong { display: block; color: #fff; font-size: 14px; }
.feed-item span { font-size: 12px; color: #9aa3b5; }
.feed-time { font-size: 11px; color: var(--gold); font-weight: 800; }

.stats { padding: 20px 0 0; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card {
  background: rgba(255,255,255,.04);
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
}
.stat-card h3 { color: var(--gold); font-size: 38px; margin-bottom: 4px; }
.stat-card p { color: rgba(255,255,255,.72); margin: 0; }

.svc-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: stretch;
  min-height: 460px;
}
.svc-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 10px 12px;
  cursor: pointer;
  transition: .2s ease;
}
.svc-nav-item img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.svc-nav-item strong { display: block; color: var(--ink); font-size: 15px; }
.svc-nav-item em { display: block; font-style: normal; font-size: 12px; color: var(--muted); }
.svc-nav-no {
  font-family: Outfit, sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 15px;
  min-width: 28px;
}
.svc-nav-item:hover,
.svc-nav-item.active {
  background: var(--ink);
  border-color: var(--ink);
}
.svc-nav-item:hover strong,
.svc-nav-item.active strong,
.svc-nav-item:hover em,
.svc-nav-item.active em { color: #fff; }
.svc-nav-item:hover .svc-nav-no,
.svc-nav-item.active .svc-nav-no { color: var(--gold); }
.svc-detail {
  position: relative;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 460px;
}
.svc-detail-panel {
  display: none;
  grid-template-columns: 1fr 1.1fr;
  min-height: 460px;
}
.svc-detail-panel.active { display: grid; }
.svc-detail-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  background: var(--ink);
}
.svc-detail-copy { padding: 36px 32px; }
.svc-detail-copy h3 { font-size: 32px; margin: 8px 0 12px; }
.svc-detail-copy p { margin-bottom: 16px; }
.svc-detail-copy ul { padding-left: 18px; margin-bottom: 22px; }
.svc-detail-copy li { margin-bottom: 8px; }

.svc-bento {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
}
.svc-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 280px;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  scroll-margin-top: 120px;
  box-shadow: var(--shadow);
  isolation: isolate;
  text-decoration: none;
}
.svc-panel:nth-child(1),
.svc-panel:nth-child(4) { min-height: 320px; }
.svc-panel.air {
  grid-column: 1 / -1;
  min-height: 260px;
  background: #0b1c38;
}
.svc-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.svc-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7,11,22,.15) 20%, rgba(7,11,22,.88) 100%);
}
.svc-body { position: relative; z-index: 2; }
.svc-body h3 { color: #fff; font-size: 28px; margin: 8px 0 8px; }
.svc-body p { color: rgba(255,255,255,.86); margin: 0; max-width: 420px; }
.svc-no {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: Outfit, sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: rgba(255,255,255,.18);
  line-height: 1;
  z-index: 2;
}
.svc-panel .days { background: rgba(255,255,255,.14); color: #fff; }
.svc-panel:hover { transform: translateY(-4px); transition: transform .25s ease; }
.svc-panel.ocean { background: #0e1a2e; }
.svc-panel.sea { background: #12324a; }
.svc-panel.customs { background: #1a120f; }
.svc-panel.ecom { background: #24180a; }
.days {
  display: inline-block;
  background: rgba(11, 42, 91, .1);
  color: var(--navy);
  font-weight: 800;
  border-radius: 30px;
  padding: 4px 12px;
  font-size: 12px;
  margin-bottom: 12px;
}

.process-wrap { position: relative; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { text-align: center; position: relative; }
.step-num {
  width: 42px; height: 42px; margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  color: #fff;
  display: grid; place-items: center; font-weight: 800;
}

.dest-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.dest-chip {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
}
.dest-chip i { display: block; color: var(--gold); margin-bottom: 6px; }

.page-hero {
  background: linear-gradient(120deg, rgba(6,20,40,.88), rgba(201,162,39,.28)),
    url("../images/hero-band.svg") center/cover no-repeat;
  color: #fff;
  padding: 78px 0 64px;
  position: relative;
}
.page-hero.about-hero,
.page-hero.services-hero,
.page-hero.track-hero,
.page-hero.contact-hero {
  background-image: linear-gradient(120deg, rgba(6,20,40,.86), rgba(201,162,39,.22)),
    url("../images/hero-band.svg");
}
.page-hero h1 { color: #fff; }
.page-hero p, .page-hero a { color: rgba(255,255,255,.82); }

.about-photo {
  border-radius: 28px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.stat-mini {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 10px;
  text-align: center;
}
.stat-mini b { display: block; color: var(--ink); font-size: 22px; font-family: Outfit, sans-serif; }
.stat-mini span { font-size: 12px; font-weight: 700; }

.flow-line {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.flow-node {
  flex: 1;
  min-width: 110px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 14px 8px;
  border: 1px solid var(--line);
}
.flow-node i { display: block; color: var(--gold); font-size: 18px; margin-bottom: 6px; }
.flow-node strong { display: block; color: var(--ink); font-size: 13px; }

.icon-bubble.mx-auto { margin-left: auto; margin-right: auto; }
.advantage-item { display: flex; gap: 14px; align-items: flex-start; }
.advantage-item i { color: var(--gold); margin-top: 4px; }
.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.info-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 600;
}
.info-list i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.info-list a { color: var(--crimson); }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}
textarea.form-control { min-height: 140px; }

.track-wrap { background: var(--cream); padding: 70px 0 90px; }
.track-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.track-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  margin-top: 22px;
}
.map-panel {
  background: #0c1220;
  border-radius: 22px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.map-panel canvas { width: 100%; height: 100%; display: block; min-height: 280px; }
.map-legend {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(7,11,22,.78);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
}
.shipment-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  margin-top: 24px;
  box-shadow: var(--shadow);
}
.shipment-head { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.shipment-head h3 { font-size: 18px; margin: 0; }
.status-pill {
  background: #fff4d6; color: #8a6200;
  border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 800;
}
.status-pill.delivered { background: #e8f8ee; color: #15803d; }
.status-pill.failed { background: #fdecec; color: #c0392b; }
.fk-tracker { position: relative; margin: 42px 8px 18px; }
.fk-track-rail {
  position: relative; height: 6px; background: #ece4d4; border-radius: 99px; margin: 0 10% 18px;
}
.fk-track-fill {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--crimson)); border-radius: 99px;
}
.fk-truck {
  position: absolute; top: 50%; left: 0; width: 46px; height: 46px;
  background: var(--ink); color: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%); box-shadow: 0 0 0 6px rgba(240,162,2,.2);
}
.fk-truck.blinking { animation: truckBlink .85s ease-in-out infinite; }
.fk-truck.delivered { background: #16a34a; color: #fff; animation: none; }
.fk-truck.failed { background: #111827; color: #fff; }
@keyframes truckBlink {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: .45; transform: translate(-50%, -50%) scale(1.12); }
}
.fk-steps { display: flex; justify-content: space-between; }
.fk-step { width: 20%; text-align: center; }
.fk-dot {
  width: 14px; height: 14px; border-radius: 50%; background: #d1d5db;
  border: 3px solid #fff; box-shadow: 0 0 0 2px #d1d5db; display: inline-block; margin-bottom: 8px;
}
.fk-step.done .fk-dot, .fk-step.active .fk-dot { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.fk-step.active .fk-dot { background: var(--crimson); box-shadow: 0 0 0 2px var(--crimson); }
.fk-label { display: block; font-size: 13px; font-weight: 800; color: #9ca3af; }
.fk-step.done .fk-label, .fk-step.active .fk-label { color: #111827; }
.fk-current-note { text-align: center; color: var(--crimson); font-weight: 700; margin: 4px 0 18px; }
.track-detail-row { display: grid; grid-template-columns: 280px 1fr; gap: 20px; }
.ship-box, .activity-wrap { background: var(--cream); border-radius: 12px; padding: 16px; }
.ship-box h5, .activity-wrap h5 { font-size: 13px; text-transform: uppercase; color: var(--crimson); }
.activity-item { display: grid; grid-template-columns: 18px 1fr; gap: 12px; padding-bottom: 16px; position: relative; }
.activity-item:before {
  content: ""; position: absolute; left: 7px; top: 16px; bottom: 0; width: 2px; background: #e5e7eb;
}
.activity-item:last-child:before { display: none; }
.activity-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); margin-top: 3px; }
.activity-item:first-child .activity-dot { background: var(--crimson); }
.invalid-record { padding: 14px 16px; background: #c0392b; color: #fff; border-radius: 10px; margin-top: 16px; }
.track-loader { display: none; text-align: center; padding: 28px; color: var(--crimson); font-weight: 700; }

.login-choice { padding: 80px 0; background: var(--cream); }
.portal-card {
  background: #fff; border-radius: 24px; padding: 36px; box-shadow: var(--shadow); height: 100%;
}
.portal-card.admin { border-top: 6px solid var(--ink); }
.portal-card.customer { border-top: 6px solid var(--gold); }
.portal-card h2 { font-size: 26px; }
.portal-icon {
  width: 72px; height: 72px; border-radius: 20px; display: grid; place-items: center;
  font-size: 28px; margin-bottom: 18px;
}
.portal-card.admin .portal-icon { background: rgba(7,11,22,.08); color: var(--ink); }
.portal-card.customer .portal-icon { background: rgba(240,162,2,.16); color: #b07900; }

.cta-band { background: linear-gradient(90deg, var(--gold), var(--gold-2)); padding: 0; }
.cta-band-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 36px 0;
}
.cta-band h3 { color: var(--ink); margin-bottom: 6px; }
.cta-band p { color: var(--ink); margin: 0; max-width: 640px; }

.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 60px 0 20px; }
.footer-brand { display: inline-block; margin-bottom: 4px; }
.footer-logo {
  height: 148px;
  width: auto;
  max-width: none;
  object-fit: contain;
  background: transparent;
  display: block;
}
.site-footer h5 { color: #fff; margin-bottom: 16px; font-size: 16px; }
.site-footer a { display: block; color: rgba(255,255,255,.72); margin-bottom: 8px; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 32px; padding-top: 16px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px;
}

.form-alert { display: none; }

.auth-screen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  background: var(--ink);
}
.auth-visual {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.auth-visual canvas { width: 100%; height: 100%; display: block; }
.auth-copy {
  position: absolute;
  left: 40px;
  bottom: 40px;
  color: #fff;
  z-index: 2;
  max-width: 420px;
}
.auth-copy h2 { color: #fff; }
.auth-panel {
  background: var(--paper);
  display: grid;
  place-items: center;
  padding: 40px 24px;
}
.auth-box { width: min(420px, 100%); text-align: center; }
.auth-box img { height: 58px; margin-bottom: 18px; }
.auth-box .btn-gold, .auth-box .btn-ink { width: 100%; margin: 10px 0; }
.auth-box a { display: block; margin-top: 10px; color: #777; font-weight: 700; }
.auth-note { color: #777; font-size: 14px; }
.back-link { display: inline-block; margin-top: 16px; font-weight: 800; color: var(--ink); }
.back-link:hover { color: var(--crimson); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 26px 22px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}
.industry-card i {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}
.industry-card h4 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.industry-card p { color: rgba(255,255,255,.78); margin: 0; font-size: 14px; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(6, 20, 40, .05);
  height: 100%;
}
.quote-card i { color: var(--gold); font-size: 22px; margin-bottom: 12px; }
.quote-card p { color: var(--ink); font-weight: 600; line-height: 1.65; }
.quote-meta { font-size: 13px; font-weight: 800; color: var(--navy); letter-spacing: .04em; }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item .accordion-button {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  color: var(--ink);
  box-shadow: none;
  background: #fff;
}
.faq-item .accordion-button:not(.collapsed) {
  background: var(--cream);
  color: var(--navy);
  box-shadow: none;
}
.faq-item .accordion-button:focus { box-shadow: none; }
.faq-item .accordion-body { color: var(--muted); }
.visit-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}
.visit-map {
  border-radius: 28px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
.visit-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.visit-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.visit-row:last-child { border-bottom: 0; }
.visit-row i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201,162,39,.16);
  color: var(--navy);
  flex-shrink: 0;
}
.visit-row strong { display: block; color: var(--ink); font-size: 14px; }
.visit-row a, .visit-row span { display: block; color: var(--muted); font-weight: 600; overflow-wrap: anywhere; }
.visit-row a:hover { color: var(--gold); }
.feature-card a { color: var(--navy); font-weight: 700; overflow-wrap: anywhere; }
.feature-card a:hover { color: var(--gold); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

@media (max-width: 991px) {
  .feature-grid, .service-grid, .process-grid, .contact-grid, .stat-row { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .industry-grid { grid-template-columns: 1fr 1fr; }
  .quote-grid, .visit-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .network-shell, .track-layout, .track-detail-row, .auth-screen, .svc-bento, .svc-split, .svc-detail-panel.active { grid-template-columns: 1fr; }
  .svc-panel, .svc-panel:nth-child(1), .svc-panel:nth-child(4) { min-height: 240px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .navbar-brand img { height: 100px; }
  .nav-cta, .nav-login { display: inline-block; margin: 8px 0; width: fit-content; }
  .auth-visual { min-height: 280px; }
  .hero-track { margin-left: 0; max-width: none; }
  .hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(7,11,22,.78), rgba(7,11,22,.5) 45%, rgba(7,11,22,.86));
    pointer-events: none;
  }
}
@media (max-width: 575px) {
  .feature-grid, .service-grid, .process-grid, .contact-grid, .stat-row, .dest-grid, .why-grid, .industry-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 0; padding: 36px 0 48px; }
  .hero h1 { font-size: 1.55rem; line-height: 1.18; }
  .hero h1 span { font-size: 1.35rem; }
  .hero p.lead-hero { font-size: 15px; }
  .navbar-brand img { height: 86px; max-width: none; }
  .footer-logo { height: 120px; }
  .hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(7,11,22,.72), rgba(7,11,22,.42) 45%, rgba(7,11,22,.82));
    pointer-events: none;
  }
  .section { padding: 56px 0; }
  .fk-label { font-size: 11px; }
  .mini-stats { grid-template-columns: 1fr; }
}
