/* ============================================================
   SwiftLog Logistics — Main Stylesheet
   Design: Industrial-Refined  |  Palette: Navy + Amber + White
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ─── CSS Variables ────────────────────────────────────────── */
:root {
  --navy:       #0a1628;
  --navy-mid:   #112240;
  --navy-light: #1a3560;
  --amber:      #f5a623;
  --amber-dark: #d4891a;
  --amber-light:#ffc85a;
  --slate:      #64748b;
  --slate-light:#e2e8f0;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --text-dark:  #0f172a;
  --text-mid:   #334155;
  --text-light: #94a3b8;
  --success:    #22c55e;
  --danger:     #ef4444;
  --warning:    #f59e0b;
  --info:       #3b82f6;
  --purple:     #8b5cf6;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.07);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.15), 0 4px 12px rgba(0,0,0,.10);
  --shadow-amber: 0 4px 20px rgba(245,166,35,.30);

  --radius:     12px;
  --radius-lg:  20px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset / Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ─── Utility ──────────────────────────────────────────────── */
.font-mono   { font-family: 'IBM Plex Mono', monospace; }
.text-amber  { color: var(--amber) !important; }
.text-navy   { color: var(--navy) !important; }
.bg-navy     { background: var(--navy) !important; }
.bg-amber    { background: var(--amber) !important; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: .65rem 1.6rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  box-shadow: var(--shadow-amber);
}
.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,.45);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-amber {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber);
}
.btn-outline-amber:hover {
  background: var(--amber);
  color: var(--navy);
  transform: translateY(-2px);
}

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

/* ─── Navbar ───────────────────────────────────────────────── */
#mainNav {
  background: var(--navy);
  padding: .9rem 0;
  transition: var(--transition);
  border-bottom: 2px solid rgba(245,166,35,.15);
}
#mainNav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  padding: .6rem 0;
}
.navbar-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -.5px;
}
.navbar-brand span { color: var(--amber); }
.navbar-brand small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-light);
  margin-top: -4px;
  text-transform: uppercase;
  font-family: 'Barlow', sans-serif;
}

.nav-link {
  color: rgba(255,255,255,.8) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .5rem 1rem !important;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--white) !important;
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.nav-track-btn {
  background: var(--amber);
  color: var(--navy) !important;
  border-radius: 8px;
  padding: .45rem 1.2rem !important;
  font-weight: 700;
  margin-left: .5rem;
}
.nav-track-btn:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}
.nav-track-btn::after { display: none; }

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(245,166,35,.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(26,53,96,.6) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(245,166,35,0.08)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.3);
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
  display: block;
}

.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-label {
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Track Form Hero */
.hero-track-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.hero-track-card h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 1.5rem;
}
.hero-track-card .form-control {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  padding: .75rem 1rem;
  border-radius: 8px;
  letter-spacing: .08em;
}
.hero-track-card .form-control::placeholder { color: rgba(255,255,255,.35); }
.hero-track-card .form-control:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,.2);
  color: var(--white);
  outline: none;
}

.demo-numbers {
  margin-top: 1rem;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.demo-numbers code {
  background: rgba(255,255,255,.08);
  color: var(--amber-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  cursor: pointer;
  transition: var(--transition);
}
.demo-numbers code:hover {
  background: rgba(245,166,35,.2);
}

/* ─── Section Headers ──────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245,166,35,.08);
  border: 1px solid rgba(245,166,35,.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-divider {
  width: 50px; height: 4px;
  background: var(--amber);
  border-radius: 2px;
  margin: 0 0 1.5rem;
}

/* ─── Service Cards ────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(245,166,35,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--amber);
}

.service-card h5 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: .75rem;
}
.service-card p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── Why Us ───────────────────────────────────────────────── */
.why-us { background: var(--navy); }

.feature-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(245,166,35,.2);
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(245,166,35,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feature-item h6 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: .3rem;
}
.feature-item p {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  margin: 0;
}

/* ─── Tracking Page ────────────────────────────────────────── */
.track-header {
  background: var(--navy);
  padding: 80px 0 40px;
}
.track-header h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 56px);
}

.track-search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.track-search-box .form-control {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  letter-spacing: .08em;
  border: 2px solid var(--slate-light);
  border-radius: 10px;
  padding: .85rem 1.2rem;
  text-transform: uppercase;
  transition: var(--transition);
}
.track-search-box .form-control:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245,166,35,.15);
  outline: none;
}

/* Parcel Info Card */
.parcel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--slate-light);
}
.parcel-card-header {
  background: var(--navy);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.parcel-card-header .tracking-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: .1em;
}
.parcel-card-body { padding: 2rem; }

/* Progress Bar */
.shipment-progress {
  margin: 2rem 0;
}
.progress-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.progress-track::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px; right: 18px;
  height: 3px;
  background: var(--slate-light);
  z-index: 0;
}
.progress-fill {
  position: absolute;
  top: 18px;
  left: 18px;
  height: 3px;
  background: var(--amber);
  z-index: 1;
  transition: width 1s ease;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  flex: 1;
}
.progress-dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--slate-light);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--slate-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: .5rem;
  transition: var(--transition);
}
.progress-dot.active {
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,.3);
}
.progress-dot.done {
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}
.progress-step span {
  font-size: 11px;
  color: var(--slate);
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.info-item {
  padding: 1rem 1.2rem;
  background: var(--off-white);
  border-radius: 10px;
  border: 1px solid var(--slate-light);
}
.info-item .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: .25rem;
}
.info-item .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ─── Map ──────────────────────────────────────────────────── */
#trackingMap {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-light);
}

.map-status-bar {
  background: var(--navy);
  border-radius: 10px 10px 0 0;
  padding: .6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  font-family: 'IBM Plex Mono', monospace;
}
.map-live-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ─── Timeline ─────────────────────────────────────────────── */
.timeline { position: relative; padding: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--amber), var(--slate-light));
}
.timeline-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.timeline-dot {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(245,166,35,.15);
}
.timeline-dot.old {
  border-color: var(--slate-light);
  box-shadow: none;
}
.timeline-content {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  border: 1px solid var(--slate-light);
  flex: 1;
  transition: var(--transition);
}
.timeline-content:hover {
  border-color: rgba(245,166,35,.3);
  box-shadow: var(--shadow-sm);
}
.timeline-content .time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-light);
}
.timeline-content .location-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: .25rem 0;
}
.timeline-content .notes {
  font-size: 14px;
  color: var(--text-mid);
}

/* ─── Admin ────────────────────────────────────────────────── */
.admin-sidebar {
  width: 260px;
  min-height: 100vh;
  background: var(--navy);
  position: fixed;
  top: 0; left: 0;
  z-index: 100;
  transition: transform .3s ease;
  overflow-y: auto;
}
.admin-sidebar .sidebar-logo {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-sidebar .nav-link {
  padding: .7rem 1.5rem !important;
  color: rgba(255,255,255,.65) !important;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-radius: 0;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  color: var(--white) !important;
  background: rgba(245,166,35,.12);
  border-left: 3px solid var(--amber);
  padding-left: calc(1.5rem - 3px) !important;
}
.admin-sidebar .nav-link::after { display: none; }

.admin-main {
  margin-left: 260px;
  padding: 2rem;
  min-height: 100vh;
  background: #f1f5f9;
}
.admin-topbar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stat-card .stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-card .stat-label {
  font-size: 13px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .25rem;
}
.stat-card .stat-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ─── Table ────────────────────────────────────────────────── */
.data-table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-light);
}
.data-table .table {
  margin: 0;
  font-size: 14px;
}
.data-table .table thead th {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  padding: .9rem 1.2rem;
}
.data-table .table tbody td {
  padding: .9rem 1.2rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--slate-light);
}
.data-table .table tbody tr:hover td {
  background: #f8fafc;
}

/* ─── Testimonials ─────────────────────────────────────────── */
.testimonials { background: var(--off-white); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-light);
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-card .stars { color: var(--amber); font-size: 18px; }
.testimonial-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin: 1rem 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
}
.testimonial-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.testimonial-role { font-size: 13px; color: var(--text-light); }

/* ─── CTA ──────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,166,35,.12) 0%, transparent 60%);
}

/* ─── Footer ───────────────────────────────────────────────── */
footer {
  background: #07101f;
  color: rgba(255,255,255,.6);
  padding: 60px 0 30px;
}
.footer-brand { color: var(--white); font-size: 22px; margin-bottom: .5rem; }
.footer-brand span { color: var(--amber); }
footer h6 {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
footer a { color: rgba(255,255,255,.55); font-size: 14px; display: block; margin-bottom: .4rem; transition: color .2s; }
footer a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 13px;
}

/* ─── Badges ───────────────────────────────────────────────── */
.badge.bg-purple { background: var(--purple) !important; }

/* ─── Alerts ───────────────────────────────────────────────── */
.alert-track-error {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25);
  color: #b91c1c;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 15px;
}

/* ─── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--amber), transparent);
}
.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb { background: none; padding: 0; margin: 0; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb-item.active { color: var(--amber); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ─── Contact ──────────────────────────────────────────────── */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.contact-info-card h5 { color: var(--white); margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-item:last-child { border: none; margin: 0; padding: 0; }
.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(245,166,35,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h6 { color: var(--white); font-size: 14px; margin-bottom: 2px; }
.contact-item p { color: rgba(255,255,255,.55); font-size: 13px; margin: 0; }

/* ─── About ────────────────────────────────────────────────── */
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--amber);
}
.mission-card h3 { color: var(--navy); font-size: 28px; margin-bottom: 1rem; }

/* ─── Loading ──────────────────────────────────────────────── */
.tracking-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  color: var(--text-mid);
}
.spinner-amber {
  width: 44px; height: 44px;
  border: 4px solid var(--slate-light);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin-bottom: 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; padding: 1rem; }
  .hero-stats { gap: 1.2rem; }
  .hero-stat-value { font-size: 24px; }
}

@media (max-width: 767px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .section-pad { padding: 60px 0; }
  .progress-track { overflow-x: auto; padding-bottom: .5rem; }
  .progress-step span { font-size: 10px; }
  #trackingMap { height: 300px; }
}
