/* ============================================================
   PROCAGO — Modern Design System
   Brand: #0B1F3A (Navy), #F5AB35 (Amber), White
   ============================================================ */

/* ----------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  --navy:        #0B1F3A;
  --navy-mid:    #162D52;
  --navy-light:  #1D4D8C;
  --accent:      #F5AB35;
  --accent-dark: #D4911E;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --light-gray:  #EEF2F7;
  --border:      #E2E8F0;
  --text:        #1A202C;
  --text-mid:    #4A5568;
  --text-muted:  #718096;
  --success:     #38A169;
  --warning:     #DD6B20;
  --danger:      #E53E3E;
  --info:        #3182CE;
  --shadow-sm:   0 1px 4px rgba(11,31,58,0.08);
  --shadow:      0 4px 16px rgba(11,31,58,0.10);
  --shadow-lg:   0 10px 40px rgba(11,31,58,0.16);
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-pill: 50px;
  --transition:  all 0.28s ease;
}

/* ----------------------------------------------------------
   BASE OVERRIDES
   ---------------------------------------------------------- */
* { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { transition: var(--transition); }
a:hover { text-decoration: none; }

img { max-width: 100%; height: auto; }

/* Body offset for fixed header */
body.has-fixed-header { padding-top: 100px; }

/* ----------------------------------------------------------
   FIXED / STICKY HEADER
   ---------------------------------------------------------- */
.header-main {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  box-shadow: 0 2px 20px rgba(11,31,58,0.15);
}

.top-bar {
  background: var(--navy) !important;
  padding: 7px 0 !important;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.top-bar .theme-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar .sign-in {
  background: var(--accent) !important;
  color: var(--navy) !important;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.top-bar .sign-in:hover {
  background: var(--accent-dark) !important;
}

/* Navbar — inner pages (white bg, dark text) */
.menu-bar {
  background: var(--white) !important;
  padding: 0 !important;
  border-bottom: 3px solid var(--accent);
}

/* Navbar — homepage (dark bg over hero, white text) */
.menu-bar.navbar-hero {
  background: rgba(11, 31, 58, 0.97) !important;
  border-bottom: 3px solid rgba(245, 171, 53, 0.5);
}

.menu-bar .navbar-logo img {
  max-height: 46px;
  width: auto !important;
}

.navbar-nav.theme-menu {
  display: flex;
  align-items: center;
  float: right;
}

/* Inner-page nav link color — high specificity to beat theme.css */
.header-main .menu-bar .navbar-nav.theme-menu > li > a,
.navbar-nav.theme-menu > li > a {
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 13px;
  text-transform: capitalize;
  padding: 22px 14px !important;
  letter-spacing: .2px;
  position: relative;
}

/* Homepage hero nav keeps white text */
.menu-bar.navbar-hero .navbar-nav.theme-menu > li > a {
  color: #fff !important;
}

.navbar-nav.theme-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--accent);
  transition: var(--transition);
}

.navbar-nav.theme-menu > li:hover > a::after,
.navbar-nav.theme-menu > li.active > a::after {
  left: 0; right: 0;
}

/* Nav ::after underline color: accent on white bg, semi-white on dark bg */
.navbar-hero .navbar-nav.theme-menu > li > a::after {
  background: var(--accent);
}

.navbar-nav.theme-menu > li.active > a,
.navbar-nav.theme-menu > li:hover > a {
  color: var(--navy) !important;
}

/* CTA track button in nav */
.nav-track-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill);
  font-size: 13px;
  margin: 12px 0 12px 8px;
  letter-spacing: .3px;
  transition: var(--transition);
}

.nav-track-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245,171,53,0.45);
}

.nav-track-btn::after { display: none !important; }

/* Mobile navbar toggle — inner pages (dark) */
.navbar-toggle {
  border-color: var(--navy) !important;
  margin-top: 14px;
}

.navbar-toggle .icon-bar {
  background: var(--navy) !important;
}

/* Mobile toggle — homepage dark nav (white icon bars) */
.navbar-hero .navbar-toggle {
  border-color: rgba(255,255,255,0.6) !important;
}
.navbar-hero .navbar-toggle .icon-bar {
  background: #fff !important;
}

/* ----------------------------------------------------------
   BREADCRUMB
   ---------------------------------------------------------- */
.theme-breadcrumb {
  background: var(--navy) !important;
  padding: 40px 0 !important;
  position: relative;
  overflow: hidden;
}

.theme-breadcrumb::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(to left, rgba(29,77,140,0.4), transparent);
}

.theme-breadcrumb .section-title {
  color: var(--white) !important;
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.theme-breadcrumb p {
  color: rgba(255,255,255,0.7) !important;
  margin: 6px 0 0;
}

.breadcrumb-menubar {
  float: right;
  padding: 12px 0 0;
}

.breadcrumb-menubar li {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.breadcrumb-menubar li a {
  color: var(--accent);
}

.breadcrumb-menubar li a:hover {
  color: var(--white);
}

.breadcrumb-menubar li + li::before {
  content: ' / ';
  color: rgba(255,255,255,0.4);
  margin: 0 6px;
}

.breadcrumb-menubar li.active {
  color: var(--white);
}

/* ----------------------------------------------------------
   MODERN HERO (HOMEPAGE)
   ---------------------------------------------------------- */
.hero-modern {
  min-height: 100vh;
  background: linear-gradient(135deg, #0B1F3A 0%, #162D52 60%, #1D4D8C 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,171,53,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-modern::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(29,77,140,0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,171,53,0.15);
  border: 1px solid rgba(245,171,53,0.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -1px;
}

.hero-headline .accent { color: var(--accent); }

.hero-subtext {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 540px;
}

/* Hero Tracking Box */
.hero-track-box {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 680px;
}

.hero-track-box h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.hero-track-box h3 span {
  display: inline-block;
  background: var(--accent);
  width: 4px; height: 16px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 2px;
}

.hero-track-input {
  display: flex;
  gap: 10px;
}

.hero-track-input input {
  flex: 1;
  background: rgba(255,255,255,0.12) !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  color: var(--white) !important;
  padding: 14px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 15px;
  height: auto !important;
  transition: var(--transition);
}

.hero-track-input input::placeholder { color: rgba(255,255,255,0.5); }
.hero-track-input input:focus {
  border-color: var(--accent) !important;
  background: rgba(255,255,255,0.16) !important;
  outline: none;
  box-shadow: none !important;
}

.hero-track-input .btn-track {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: .3px;
}

.hero-track-input .btn-track:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,171,53,0.4);
}

.hero-track-hint {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  margin-top: 10px;
}

/* Hero CTA Buttons */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid var(--accent);
}

.btn-primary-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,171,53,0.45);
  color: var(--navy) !important;
}

.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white) !important;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary-cta:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white) !important;
}

/* ----------------------------------------------------------
   TRUST BAR / STATS STRIP
   ---------------------------------------------------------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}

.trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}

.trust-bar-item i {
  color: var(--accent);
  font-size: 18px;
}

.trust-bar-item strong { color: var(--navy); }

/* ----------------------------------------------------------
   SECTION STYLES
   ---------------------------------------------------------- */
.section-modern {
  padding: 80px 0;
}

.section-modern.bg-light { background: var(--off-white); }
.section-modern.bg-navy  { background: var(--navy); }

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

.section-heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -.5px;
}

.section-heading.white { color: var(--white); }
.section-heading .accent { color: var(--accent); }

.section-subtext {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
}

/* ----------------------------------------------------------
   FEATURE CARDS
   ---------------------------------------------------------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  color: var(--accent);
  font-size: 22px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ----------------------------------------------------------
   STATS COUNTER SECTION
   ---------------------------------------------------------- */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 70px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-suffix {
  font-size: 32px;
  color: var(--accent);
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  height: 80px;
  margin: auto;
}

/* ----------------------------------------------------------
   HOW IT WORKS — STEPS
   ---------------------------------------------------------- */
.steps-modern {
  counter-reset: step;
}

.step-modern {
  position: relative;
  padding: 28px 28px 28px 80px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  transition: var(--transition);
}

.step-modern:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.step-modern::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.8;
  line-height: 1;
}

.step-modern-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-modern-icon i { color: var(--navy); font-size: 16px; }

.step-modern h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}

.step-modern p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ----------------------------------------------------------
   SERVICES CARDS (GRID)
   ---------------------------------------------------------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,31,58,0.03) 100%);
  pointer-events: none;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--accent);
}

.service-icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--off-white), var(--light-gray));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.service-icon-wrap i {
  font-size: 28px;
  color: var(--navy);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap i { color: var(--accent); }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  margin-top: 18px;
  transition: var(--transition);
}

.service-card:hover .learn-more { color: var(--accent-dark); }
.service-card .learn-more i { font-size: 11px; }

/* ----------------------------------------------------------
   TESTIMONIAL (MODERN)
   ---------------------------------------------------------- */
.testimonial-modern {
  background: var(--navy);
  padding: 80px 0;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,171,53,0.3);
}

.quote-mark {
  font-size: 60px;
  color: var(--accent);
  line-height: .8;
  font-family: Georgia, serif;
  margin-bottom: 16px;
  display: block;
}

.testimonial-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px; height: 46px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.testimonial-author-info span {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.star-rating { color: var(--accent); font-size: 12px; margin-bottom: 4px; }

/* ----------------------------------------------------------
   CTA BANNER SECTION
   ---------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 70px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 14px;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(11,31,58,0.72);
  margin: 0 0 32px;
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid var(--navy);
}

.btn-cta-dark:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(11,31,58,0.35);
  color: var(--white) !important;
}

.btn-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy) !important;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  border: 2px solid var(--navy);
  transition: var(--transition);
  text-decoration: none;
  margin-left: 14px;
}

.btn-cta-light:hover {
  background: var(--navy);
  color: var(--white) !important;
}

/* ----------------------------------------------------------
   GENERAL MODERN BUTTON
   ---------------------------------------------------------- */
.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-modern.primary {
  background: var(--accent);
  color: var(--navy);
}
.btn-modern.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,171,53,0.4);
  color: var(--navy);
}

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

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

/* ----------------------------------------------------------
   TRACKING PAGE — MODERN UI
   ---------------------------------------------------------- */
.tracking-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 70px 0 50px;
}

.tracking-hero h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 10px;
}

.tracking-hero p { color: rgba(255,255,255,0.65); margin: 0; }

.tracking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 40px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.tracking-form-card label {
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.tracking-form-card .form-control {
  height: 50px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  padding: 0 18px;
  transition: var(--transition);
}

.tracking-form-card .form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.08);
  outline: none;
}

.tracking-form-card .btn-track-submit {
  height: 50px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  padding: 0 28px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.tracking-form-card .btn-track-submit:hover {
  background: var(--navy-mid);
  box-shadow: var(--shadow);
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
}

.status-badge.pending       { background: #FFF5E5; color: #C05621; }
.status-badge.picked_up     { background: #EBF8FF; color: #2B6CB0; }
.status-badge.in_transit    { background: #E6FFFA; color: #276749; }
.status-badge.out_for_delivery { background: #FAF5FF; color: #553C9A; }
.status-badge.delivered     { background: #F0FFF4; color: #22543D; }
.status-badge.failed        { background: #FFF5F5; color: #C53030; }
.status-badge .status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* Progress Stepper */
.tracking-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
  overflow-x: auto;
}

.tracking-stepper::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: var(--border);
  z-index: 0;
}

.tracking-stepper-progress {
  position: absolute;
  top: 35px;
  left: 5%;
  height: 3px;
  background: linear-gradient(to right, var(--success), var(--accent));
  z-index: 1;
  transition: width 1s ease;
}

.tracking-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  min-width: 90px;
}

.tracking-step-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 3px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: var(--transition);
}

.tracking-step-icon i { font-size: 15px; color: var(--text-muted); }

.tracking-step.completed .tracking-step-icon {
  border-color: var(--success);
  background: var(--success);
}
.tracking-step.completed .tracking-step-icon i { color: var(--white); }

.tracking-step.active .tracking-step-icon {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(245,171,53,0.25);
}
.tracking-step.active .tracking-step-icon i { color: var(--navy); }

.tracking-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}
.tracking-step.completed .tracking-step-label,
.tracking-step.active .tracking-step-label { color: var(--navy); }

/* Tracking Result Card */
.tracking-result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.tracking-result-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.tracking-result-header .tracking-id {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-bottom: 4px;
}

.tracking-result-header .tracking-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
}

.tracking-result-body { padding: 28px; }

.tracking-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
  .tracking-info-grid { grid-template-columns: 1fr; }
}

.tracking-info-item label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.tracking-info-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

/* Tracking timeline */
.timeline-modern { list-style: none; padding: 0; margin: 0; }

.timeline-modern li {
  position: relative;
  padding: 0 0 24px 44px;
}

.timeline-modern li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-modern li:last-child { padding-bottom: 0; }
.timeline-modern li:last-child::before { display: none; }

.timeline-dot {
  position: absolute;
  left: 6px;
  top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 3px solid var(--border);
  background: var(--white);
}

.timeline-modern li.tl-active .timeline-dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245,171,53,0.2);
}

.timeline-modern li.tl-done .timeline-dot {
  border-color: var(--success);
  background: var(--success);
}

.timeline-date {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.timeline-status {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-location {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.timeline-location i { color: var(--accent); }

.timeline-comment {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-style: italic;
}

/* Info table inside tracking cards */
.info-table { width: 100%; border-collapse: collapse; }

.info-table tr td {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: top;
}

.info-table tr:last-child td { border-bottom: none; }

.info-table .info-label {
  color: var(--text-muted);
  font-weight: 600;
  width: 45%;
  padding-right: 12px;
  font-size: 13px;
}

.info-table .info-value {
  color: var(--navy);
  font-weight: 600;
}

.section-divider {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ----------------------------------------------------------
   PRICING / QUOTE CALCULATOR
   ---------------------------------------------------------- */
.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.quote-card .form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .3px;
  margin-bottom: 8px;
  display: block;
}

.quote-card .form-control,
.quote-card .selectpicker {
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  padding: 0 16px;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}

.quote-card .form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.07);
  outline: none;
}

.quote-result {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  text-align: center;
}

.quote-result .estimate-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.quote-result .estimate-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.quote-result .estimate-note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.pricing-tier-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.pricing-tier-card:hover,
.pricing-tier-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.pricing-tier-card.featured {
  position: relative;
}

.pricing-tier-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.pricing-tier-price {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.pricing-tier-price sup {
  font-size: 20px;
  vertical-align: super;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-tier-unit {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.pricing-tier-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-tier-features li:last-child { border-bottom: none; }
.pricing-tier-features li i { color: var(--success); font-size: 12px; }
.pricing-tier-features li.disabled i { color: var(--text-muted); }
.pricing-tier-features li.disabled { opacity: 0.5; }

/* ----------------------------------------------------------
   FAQ ACCORDION
   ---------------------------------------------------------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(11,31,58,0.2);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  transition: var(--transition);
}

.faq-question:hover { background: var(--off-white); }

.faq-question h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}

.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-toggle i {
  font-size: 12px;
  color: var(--navy);
  transition: var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--accent);
  transform: rotate(180deg);
}

.faq-item.open .faq-toggle i { color: var(--navy); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
}

.faq-answer.show { display: block; }

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* FAQ Category Tabs */
.faq-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.faq-tab {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.faq-tab:hover,
.faq-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ----------------------------------------------------------
   COVERAGE / LOCATIONS
   ---------------------------------------------------------- */
.map-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-text {
  text-align: center;
  color: rgba(255,255,255,0.6);
}

.map-placeholder-text i { font-size: 48px; color: var(--accent); margin-bottom: 16px; }
.map-placeholder-text p { font-size: 14px; }

/* World grid pattern */
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.region-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.region-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.region-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.region-flag {
  width: 40px; height: 40px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.region-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.region-count {
  font-size: 12px;
  color: var(--text-muted);
}

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.country-tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
}

/* ----------------------------------------------------------
   SHIPMENT PROCESS — TIMELINE
   ---------------------------------------------------------- */
.process-timeline {
  position: relative;
  padding: 0;
  max-width: 860px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--navy));
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 48px;
  position: relative;
}

.process-step:nth-child(odd) { flex-direction: row; }
.process-step:nth-child(even) { flex-direction: row-reverse; }

.process-content {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-content:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.process-step-center {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--off-white);
}

.process-step-center i { font-size: 22px; color: var(--navy); }

.process-step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.process-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.process-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* Mobile process timeline */
@media (max-width: 767px) {
  .process-timeline::before { left: 24px; }
  .process-step,
  .process-step:nth-child(even) { flex-direction: row !important; }
  .process-step-center { margin-right: 8px; }
}

/* ----------------------------------------------------------
   ABOUT PAGE
   ---------------------------------------------------------- */
.about-mission-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
}

.about-mission-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
}

.about-mission-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0;
}

.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--accent);
  font-weight: 800;
}

.team-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}

.team-card .role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ----------------------------------------------------------
   CONTACT PAGE
   ---------------------------------------------------------- */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}

.contact-info-card .subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(245,171,53,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i { color: var(--accent); font-size: 16px; }

.contact-detail-text strong {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-detail-text span {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 24px;
}

.contact-form-card .form-group { margin-bottom: 20px; }

.contact-form-card label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .3px;
  margin-bottom: 8px;
  display: block;
}

.contact-form-card .form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  padding: 12px 16px;
  color: var(--text);
  transition: var(--transition);
  height: auto;
  background: var(--white);
}

.contact-form-card .form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.07);
  outline: none;
}

.contact-form-card textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.contact-form-card .btn-send {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .3px;
}

.contact-form-card .btn-send:hover {
  background: var(--navy-mid);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

/* ----------------------------------------------------------
   FOOTER — MODERN
   ---------------------------------------------------------- */
.footer-modern {
  background: var(--navy) !important;
  padding: 70px 0 0 !important;
  color: var(--white);
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  text-decoration: none;
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--navy);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-links li a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding: 20px 0;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--accent); }

/* Override old footer */
.footer-main { display: none !important; }
.footer-bottom { display: none !important; }

/* ----------------------------------------------------------
   TERMS & PRIVACY PAGE
   ---------------------------------------------------------- */
.legal-sidebar {
  position: sticky;
  top: 120px;
}

.legal-nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.legal-nav-item {
  display: block;
  padding: 13px 20px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}

.legal-nav-item:last-child { border-bottom: none; }

.legal-nav-item:hover,
.legal-nav-item.active {
  color: var(--navy);
  background: var(--off-white);
  border-left-color: var(--accent);
}

.legal-section {
  margin-bottom: 48px;
  scroll-margin-top: 120px;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.legal-section p,
.legal-section li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-section ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-section ul li { margin-bottom: 6px; }

.legal-last-updated {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-last-updated strong { color: var(--navy); }

/* ----------------------------------------------------------
   ALERT OVERRIDES
   ---------------------------------------------------------- */
.alert-success-modern {
  background: #F0FFF4;
  border: 1px solid #C6F6D5;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #276749;
  font-size: 14px;
  margin-bottom: 20px;
}

.alert-danger-modern {
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #C53030;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ----------------------------------------------------------
   RESPONSIVE UTILITIES
   ---------------------------------------------------------- */
@media (max-width: 991px) {
  .hero-headline { font-size: 40px; }
  .section-heading { font-size: 28px; }
  .stat-number { font-size: 36px; }
  .hero-modern { padding: 100px 0 60px; min-height: auto; }
  .process-timeline::before { display: none; }
  body.has-fixed-header { padding-top: 90px; }
}

@media (max-width: 767px) {
  .hero-headline { font-size: 30px; }
  .hero-subtext  { font-size: 15px; }
  .hero-track-input { flex-direction: column; }
  .hero-track-input .btn-track { width: 100%; }
  .hero-track-box { padding: 22px; }
  .tracking-stepper { gap: 0; }
  .tracking-step-label { font-size: 10px; }
  .stat-divider { display: none; }
  .cta-banner h2 { font-size: 26px; }
  .btn-cta-dark, .btn-cta-light { width: 100%; margin: 6px 0; justify-content: center; }
  .process-step, .process-step:nth-child(even) { flex-direction: column !important; align-items: flex-start; }
  .process-step-center { width: 44px; height: 44px; margin-bottom: 14px; }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .tracking-info-grid { grid-template-columns: 1fr; }
  .quote-result { margin-top: 24px; }
  .section-modern { padding: 50px 0; }
  .navbar-nav.theme-menu { float: none; }
  .navbar-nav.theme-menu > li > a { padding: 12px 16px !important; }
  .navbar-nav.theme-menu > li > a::after { display: none; }
  .nav-track-btn { margin: 8px 16px; display: block; text-align: center; }
}

/* ----------------------------------------------------------
   PRELOADER
   ---------------------------------------------------------- */
#preloader {
  background: var(--navy);
}

/* ----------------------------------------------------------
   MISC UTILITIES
   ---------------------------------------------------------- */
.text-accent { color: var(--accent); }
.text-navy   { color: var(--navy); }
.bg-navy     { background: var(--navy); }
.bg-accent   { background: var(--accent); }

.fw-800 { font-weight: 800 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-600 { font-weight: 600 !important; }

.rounded-pill-modern { border-radius: var(--radius-pill) !important; }
.rounded-card { border-radius: var(--radius) !important; }

.divider-line {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.no-result-box {
  text-align: center;
  padding: 60px 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
}

.no-result-box i {
  font-size: 48px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.no-result-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.no-result-box p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Shipment photo */
.shipment-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}

.shipment-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Map container override */
.map .map-canvas { border-radius: var(--radius-lg); overflow: hidden; margin: 0 15px; }
