/* ═══════════════════════════════════════════════════════════
   FASTRUX — Master Shared Stylesheet
   Single source of truth for ALL pages.
   Mirrors fastrux_logistics.html exactly.
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --background:             #f6faff;
  --foreground:             #0b2545;
  --border:                 #00000014;
  --input:                  #ffffff;
  --primary:                #0b6fff;
  --primary-foreground:     #ffffff;
  --secondary:              #eaf3ff;
  --secondary-foreground:   #09325a;
  --muted:                  #f1f5f9;
  --muted-foreground:       #6b7280;
  --success:                #16a34a;
  --success-foreground:     #ffffff;
  --accent:                 #ffb020;
  --accent-foreground:      #09121a;
  --destructive:            #e02424;
  --destructive-foreground: #ffffff;
  --warning:                #f59e0b;
  --warning-foreground:     #081018;
  --card:                   #ffffff;
  --card-foreground:        #0b2545;
  --radius-sm:              4px;
  --radius-md:              6px;
  --radius-lg:              8px;
  --radius-xl:              12px;
  --font-family-body:       "Inter", system-ui, sans-serif;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(11,111,255,.08);
  --shadow-lg:   0 8px 32px rgba(11,111,255,.12);
  --shadow-xl:   0 20px 48px rgba(0,0,0,.10);
}

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

html,
body {
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-family-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Spin animation (used by loading buttons) ──────────── */
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════ */
.container {
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════════════════════ */
.text-primary  { color: var(--primary); }
.text-muted    { color: var(--muted-foreground); }
.text-center   { text-align: center; }
.font-bold     { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-family-body);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transition: opacity .2s ease, background-color .2s ease, transform .1s ease, box-shadow .2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover  { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); opacity: 1; }

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover { box-shadow: 0 4px 14px rgba(11,111,255,.35); }

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  opacity: 1;
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background-color: var(--secondary);
  border-color: var(--primary);
  color: var(--primary);
  opacity: 1;
}

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

.btn:disabled,
.btn[disabled] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
.section {
  padding: 96px 0;
}
.section-alt {
  background-color: var(--secondary);
}
.section-dark {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  color: var(--foreground);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 18px;
  color: var(--muted-foreground);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.65;
}

/* ── Page Hero (inner pages only) ──────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0950c7 100%);
  padding: 80px 0;
  color: var(--primary-foreground);
  text-align: center;
}
.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero p {
  font-size: 18px;
  opacity: .88;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════ */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   BADGE / TAG
═══════════════════════════════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--secondary);
  color: var(--primary);
}
.badge-green   { background: #e6f9ee; color: var(--success); }
.badge-orange  { background: #fff7e6; color: var(--accent); }
.badge-red     { background: #fef2f2; color: var(--destructive); }

/* ═══════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════ */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--foreground);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-family-body);
  font-size: 15px;
  background-color: var(--input);
  color: var(--foreground);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,111,255,.12);
}
.form-control::placeholder { color: var(--muted-foreground); }

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

textarea.form-control { resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form feedback banners */
.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.form-feedback.success {
  background: #e6f9ee;
  border: 1px solid #a7f0c4;
  color: var(--success);
  display: flex;
}
.form-feedback.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--destructive);
  display: flex;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.header {
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color .2s ease;
  position: relative;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.header-actions { display: flex; gap: 16px; align-items: center; }

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

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu .nav-link:last-of-type { border-bottom: none; }
.mobile-menu .header-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 12px;
  gap: 10px;
}
.mobile-menu .btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   SERVICE CARDS (shared across home + service pages)
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px; height: 48px;
  background-color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-foreground);
  flex-shrink: 0;
}
.service-title { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--card-foreground); }
.service-desc  { font-size: 15px; color: var(--muted-foreground); margin-bottom: 24px; flex-grow: 1; line-height: 1.65; }
.service-link  {
  color: var(--primary); font-weight: 500; font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s ease; text-decoration: none;
}
.service-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   FEATURE CARDS (used on service detail pages)
═══════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: var(--foreground); }
.feature-card p  { font-size: 14px; color: var(--muted-foreground); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   STATS BANNER (gradient strip used on service pages)
═══════════════════════════════════════════════════════════ */
.stats-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0950c7 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  color: var(--primary-foreground);
}
.stats-banner h3 { font-size: 40px; font-weight: 800; margin-bottom: 8px; }
.stats-banner p  { font-size: 14px; opacity: .85; }

/* ── Stats strip (home page flat row) ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item h3 { font-size: 44px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.stat-item p  { color: var(--muted-foreground); font-size: 15px; }

/* ═══════════════════════════════════════════════════════════
   "OTHER SERVICES" cross-link cards
═══════════════════════════════════════════════════════════ */
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.other-service-link {
  display: flex; gap: 16px; align-items: center;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.other-service-link:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.other-service-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.other-service-link h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--foreground); }
.other-service-link p  { font-size: 13px; color: var(--muted-foreground); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   ROUTES TABLE (ocean / air freight pages)
═══════════════════════════════════════════════════════════ */
.routes-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.routes-table th {
  background: var(--secondary);
  padding: 16px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--foreground);
}
.routes-table td {
  padding: 16px 24px;
  font-size: 14px;
  border-top: 1px solid var(--border);
  color: var(--foreground);
}
.routes-table tr:hover td { background: var(--secondary); }

/* ═══════════════════════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 10%; right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; padding: 0 8px; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border: 4px solid var(--background);
  box-shadow: 0 0 0 2px var(--primary);
}
.step-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--foreground); }
.step-item p  { font-size: 13px; color: var(--muted-foreground); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand p {
  color: var(--muted-foreground);
  margin-top: 16px;
  max-width: 300px;
  font-size: 15px;
  line-height: 1.7;
}
.footer-heading { font-size: 16px; font-weight: 600; margin-bottom: 24px; color: var(--foreground); }
.footer-links   { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--muted-foreground); font-size: 15px; transition: color .2s ease; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-item {
  display: flex; gap: 8px; align-items: center;
  color: var(--muted-foreground); font-size: 15px;
}
.footer-contact-item a { color: inherit; transition: color .2s ease; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted-foreground);
  font-size: 14px;
}
.social-links { display: flex; gap: 16px; }
.social-links a {
  color: var(--muted-foreground);
  display: flex; align-items: center;
  transition: color .2s ease;
}
.social-links a:hover { color: var(--primary); }

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════ */
.breadcrumb {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb nav {
  font-size: 13px;
  color: var(--muted-foreground);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); }

/* ═══════════════════════════════════════════════════════════
   SERVICE INTRO (two-col layout on service pages)
═══════════════════════════════════════════════════════════ */
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-intro-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
  color: var(--foreground);
}
.service-intro-content p {
  color: var(--muted-foreground);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}
.service-intro-illustration {
  background: linear-gradient(135deg, var(--secondary) 0%, #c7dcff 100%);
  border-radius: var(--radius-xl);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   TIER / PLAN CARDS (air freight, warehousing, etc.)
═══════════════════════════════════════════════════════════ */
.tiers-grid,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tier-card,
.plan-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.tier-card:hover,
.plan-card:hover,
.tier-card.featured,
.plan-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.tier-popular,
.plan-popular {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--primary-foreground);
  padding: 4px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.tier-icon {
  width: 64px; height: 64px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin: 0 auto 20px;
}
.tier-card h3,
.plan-card h3  { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--foreground); }
.tier-transit  { font-size: 30px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.tier-sublabel,
.plan-ideal    { font-size: 13px; color: var(--muted-foreground); margin-bottom: 24px; }

.tier-features,
.plan-features,
.level-features { list-style: none; flex: 1; }

.tier-features li,
.plan-features li,
.level-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
  line-height: 1.4;
}
.tier-features li:last-child,
.plan-features li:last-child,
.level-features li:last-child { border-bottom: none; }

/* Service levels (ground transport) */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.level-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.level-card:hover,
.level-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.level-card h3   { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: var(--foreground); }
.level-ideal     { font-size: 13px; color: var(--muted-foreground); margin-bottom: 20px; font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   FLEET CARDS (ground transport)
═══════════════════════════════════════════════════════════ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fleet-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}
.fleet-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.fleet-icon {
  width: 64px; height: 64px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin: 0 auto 16px;
}
.fleet-card h3  { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--foreground); }
.fleet-card p   { font-size: 13px; color: var(--muted-foreground); line-height: 1.5; margin-bottom: 12px; }
.fleet-capacity {
  font-size: 12px; font-weight: 700;
  color: var(--primary); background: var(--secondary);
  padding: 3px 10px; border-radius: 999px;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════
   COVERAGE CARD (ground transport)
═══════════════════════════════════════════════════════════ */
.coverage-card {
  background: linear-gradient(135deg, var(--secondary) 0%, #c7dcff 100%);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
}
.coverage-card h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; color: var(--foreground); }
.coverage-card p  { color: var(--muted-foreground); max-width: 480px; margin: 0 auto 32px; }
.coverage-cities  { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 32px; }
.city-tag {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--foreground);
}

/* ═══════════════════════════════════════════════════════════
   WAREHOUSE SERVICE CARDS
═══════════════════════════════════════════════════════════ */
.warehouse-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ws-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.ws-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.ws-icon {
  width: 56px; height: 56px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}
.ws-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--foreground); }
.ws-card p  { font-size: 14px; color: var(--muted-foreground); line-height: 1.65; margin-bottom: 16px; }
.ws-list    { list-style: none; }
.ws-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted-foreground);
  padding: 4px 0;
}

/* ═══════════════════════════════════════════════════════════
   LOCATION CARDS (warehousing)
═══════════════════════════════════════════════════════════ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.location-flag  { font-size: 28px; margin-bottom: 12px; }
.location-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 4px; color: var(--foreground); }
.location-card p  { font-size: 13px; color: var(--muted-foreground); margin-bottom: 10px; line-height: 1.5; }
.location-size  {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: var(--primary); background: var(--secondary);
  padding: 3px 10px; border-radius: 999px;
}
.location-tags  { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.location-tag   {
  font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 999px;
  background: var(--muted); color: var(--muted-foreground);
}

/* ═══════════════════════════════════════════════════════════
   TEAM CARDS (about page)
═══════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card { text-align: center; padding: 40px 24px; }
.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #0950c7 100%);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-foreground);
  font-size: 28px; font-weight: 700;
  letter-spacing: 1px;
}
.team-name { font-size: 18px; font-weight: 600; margin-bottom: 6px; color: var(--foreground); }
.team-role { font-size: 14px; color: var(--muted-foreground); margin-bottom: 12px; }
.team-bio  { font-size: 14px; color: var(--muted-foreground); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   ABOUT / HISTORY TIMELINE
═══════════════════════════════════════════════════════════ */
.timeline-about {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}
.timeline-about::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-about-item { position: relative; margin-bottom: 40px; }
.timeline-about-item:last-child { margin-bottom: 0; }
.timeline-about-dot {
  position: absolute;
  left: -26px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--background);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-about-year {
  font-size: 13px; font-weight: 700;
  color: var(--primary); margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: .5px;
}
.timeline-about-title { font-size: 17px; font-weight: 600; margin-bottom: 6px; color: var(--foreground); }
.timeline-about-desc  { font-size: 14px; color: var(--muted-foreground); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   TRACKING PAGE — results timeline
═══════════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -24px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--background);
}
.timeline-item.done    .timeline-dot { background: var(--primary); }
.timeline-item.current .timeline-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,176,32,.25);
}
.timeline-date  { font-size: 12px; color: var(--muted-foreground); margin-bottom: 2px; }
.timeline-event { font-size: 15px; font-weight: 600; color: var(--foreground); }
.timeline-loc   { font-size: 13px; color: var(--muted-foreground); }

/* ═══════════════════════════════════════════════════════════
   CAREERS PAGE
═══════════════════════════════════════════════════════════ */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.perk-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .2s ease, transform .2s ease;
}
.perk-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.perk-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.perk-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--foreground); }
.perk-card p  { font-size: 14px; color: var(--muted-foreground); line-height: 1.6; }

.dept-filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.dept-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-family: var(--font-family-body);
  font-size: 14px; font-weight: 500;
  cursor: pointer; color: var(--foreground);
  transition: all .2s ease;
}
.dept-btn.active,
.dept-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.job-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}
.job-title { font-size: 17px; font-weight: 600; margin-bottom: 6px; color: var(--foreground); }
.job-meta  { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.job-tag   { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--muted-foreground); }

/* ═══════════════════════════════════════════════════════════
   NEWS PAGE
═══════════════════════════════════════════════════════════ */
.cat-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 48px; justify-content: center;
}
.cat-btn {
  padding: 8px 20px; border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-family: var(--font-family-body);
  font-size: 14px; font-weight: 500;
  cursor: pointer; color: var(--foreground);
  transition: all .2s ease;
}
.cat-btn.active,
.cat-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

.featured-article {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 56px;
}
.featured-body {
  padding: 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.article-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--secondary); color: var(--primary);
  border-radius: 999px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 16px; width: fit-content;
}
.featured-body h2 { font-size: 26px; font-weight: 700; margin-bottom: 14px; line-height: 1.35; color: var(--foreground); }
.featured-body p  { color: var(--muted-foreground); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.article-meta {
  font-size: 13px; color: var(--muted-foreground);
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px;
}
.article-meta span { display: flex; align-items: center; gap: 5px; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.news-card-thumb {
  width: 100%; height: 200px;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
}
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-card-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; line-height: 1.45; color: var(--foreground); flex: 1; }
.news-card-body p  { font-size: 14px; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.read-more {
  color: var(--primary); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s ease; text-decoration: none;
}
.read-more:hover { gap: 10px; }

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.press-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; align-items: center; gap: 16px;
  transition: box-shadow .2s ease;
}
.press-card:hover { box-shadow: var(--shadow-md); }
.press-logo {
  width: 56px; height: 56px; min-width: 56px;
  background: var(--secondary); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: var(--primary);
}
.press-card h4  { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--foreground); }
.press-card p   { font-size: 13px; color: var(--muted-foreground); line-height: 1.5; margin-bottom: 6px; }
.press-card a   { font-size: 13px; color: var(--primary); font-weight: 500; }

.newsletter-card {
  background: linear-gradient(135deg, var(--primary) 0%, #0950c7 100%);
  border-radius: var(--radius-xl); padding: 56px 48px;
  text-align: center; color: var(--primary-foreground);
}
.newsletter-card h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.newsletter-card p  { font-size: 16px; opacity: .88; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex; max-width: 480px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
}
.newsletter-input {
  flex: 1; border: none; padding: 14px 20px;
  font-size: 15px; font-family: var(--font-family-body);
  background: transparent; color: var(--foreground); outline: none;
}
.newsletter-form .btn { border-radius: 0; padding: 14px 24px; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border); background: var(--card);
  font-family: var(--font-family-body); font-size: 14px; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--foreground); transition: all .2s ease;
}
.page-btn.active,
.page-btn:hover {
  background: var(--primary); border-color: var(--primary);
  color: var(--primary-foreground);
}

/* ═══════════════════════════════════════════════════════════
   AUTH / LOGIN PAGE
═══════════════════════════════════════════════════════════ */
.auth-wrapper {
  min-height: calc(100vh - 80px);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 20px;
  background: linear-gradient(160deg, var(--secondary) 0%, var(--background) 60%);
}
.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px; width: 100%; max-width: 460px;
  box-shadow: 0 16px 48px rgba(11,111,255,.08);
}
.auth-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 22px; font-weight: 800;
  color: var(--primary); margin-bottom: 32px;
}
.auth-title    { font-size: 26px; font-weight: 700; margin-bottom: 8px; text-align: center; color: var(--foreground); }
.auth-subtitle { font-size: 15px; color: var(--muted-foreground); text-align: center; margin-bottom: 36px; }
.auth-footer-text { text-align: center; margin-top: 24px; font-size: 14px; color: var(--muted-foreground); }
.auth-footer-text a { color: var(--primary); font-weight: 500; }
.password-wrapper { position: relative; }
.password-toggle {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--muted-foreground); display: flex; align-items: center;
}
.forgot-link { float: right; font-size: 13px; color: var(--primary); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; color: var(--foreground); }
.contact-info p  { color: var(--muted-foreground); margin-bottom: 40px; font-size: 16px; line-height: 1.7; }
.contact-item    { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-item-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--secondary); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.contact-item h4  { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--foreground); }
.contact-item p,
.contact-item a   { font-size: 15px; color: var(--muted-foreground); line-height: 1.5; text-decoration: none; }
.contact-item a:hover { color: var(--primary); }
.office-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px;
}
.office-card {
  background: var(--secondary); border-radius: var(--radius-lg); padding: 20px;
}
.office-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--foreground); }
.office-card p  { font-size: 13px; color: var(--muted-foreground); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — values grid
═══════════════════════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-icon {
  width: 48px; height: 48px;
  background: var(--secondary); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container        { padding: 0 32px; }
  .section          { padding: 72px 0; }
  .section-title    { font-size: 32px; }
  .section-subtitle { margin-bottom: 48px; }

  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-banner    { grid-template-columns: repeat(2, 1fr); }
  .stats-strip     { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid,
  .plans-grid      { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .levels-grid     { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .fleet-grid      { grid-template-columns: repeat(2, 1fr); }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
  .news-grid       { grid-template-columns: repeat(2, 1fr); }
  .press-grid      { grid-template-columns: repeat(2, 1fr); }
  .perks-grid      { grid-template-columns: repeat(2, 1fr); }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .locations-grid  { grid-template-columns: repeat(2, 1fr); }
  .warehouse-services-grid { grid-template-columns: repeat(2, 1fr); }
  .other-services-grid     { grid-template-columns: repeat(2, 1fr); }
  .contact-grid    { grid-template-columns: 1fr; gap: 48px; }
  .service-intro-grid      { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps   { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .container        { padding: 0 20px; }
  .section          { padding: 56px 0; }
  .section-title    { font-size: 28px; }
  .section-subtitle { font-size: 16px; margin-bottom: 40px; }
  .page-hero        { padding: 56px 0; }
  .page-hero h1     { font-size: 32px; }
  .page-hero p      { font-size: 16px; }

  /* Header */
  .nav-links, .header-actions { display: none; }
  .hamburger { display: flex; }

  /* Grids → single column */
  .services-grid           { grid-template-columns: 1fr; }
  .features-grid           { grid-template-columns: 1fr; }