/* ============================================================
   JAYPEE EXPRESS — Clean Corporate Design
   Reference: AllCargo Logistics (allcargologistics.com)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- Variables ---- */
:root {
  --primary:       #E84B2A;
  --primary-dark:  #C93D20;
  --primary-light: #FF6B4A;
  --primary-bg:    #FEF0EC;
  --blue:          #2E86AB;
  --blue-light:    #EBF5F9;
  --dark:          #1C1C2E;
  --dark-2:        #2D2D3F;
  --text:          #374151;
  --text-2:        #6B7280;
  --text-3:        #9CA3AF;
  --white:         #FFFFFF;
  --bg:            #F8F9FA;
  --bg-2:          #F0F2F5;
  --border:        #E5E7EB;
  --border-2:      #D1D5DB;
  --shadow-xs:     0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow:        0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.12);
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     22px;
  --radius-full:   9999px;
  --transition:    0.25s ease;
  --transition-md: 0.4s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  padding-top: 112px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; color: var(--dark); line-height: 1.22; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--dark);
  height: 42px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 10000;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
}
.top-contact { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-contact a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.top-contact a:hover { color: var(--primary-light); }
.top-contact i { color: var(--primary); font-size: 11px; }
.top-hours { display: flex; align-items: center; gap: 6px; font-size: 12px; }
.top-hours i { color: #F59E0B; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 42px; left: 0; width: 100%;
  z-index: 9999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition-md), border-color var(--transition-md);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  border-bottom-color: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 12px;
}
.header-inner > nav {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex: 1;
}
.header-inner > nav .main-nav {
  height: 100%;
  align-items: center;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; }
.logo-text { line-height: 1.1; }
.logo-name { font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: -0.3px; display: block; }
.logo-tag  { font-size: 10.5px; font-weight: 500; color: var(--primary); letter-spacing: 1.2px; text-transform: uppercase; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px;
  font-size: 13px; font-weight: 500; color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav > li > a .chev { font-size: 9px; opacity: 0.45; transition: transform var(--transition); }
.main-nav > li:hover > a .chev { transform: rotate(180deg); opacity: 1; }
.main-nav > li > a:hover, .main-nav > li > a.active { color: var(--primary); background: var(--primary-bg); }
.main-nav > li > a.active { font-weight: 600; }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  overflow: hidden; z-index: 100;
}
.main-nav > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; font-size: 13.5px; font-weight: 500;
  color: var(--text); border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--primary); background: var(--primary-bg); padding-left: 22px; }
.dropdown li a i { color: var(--primary); width: 16px; font-size: 13px; }

/* Quick Track (header right) */
.header-track { display: flex; align-items: center; flex-shrink: 0; align-self: center; }
.header-track input {
  border: 1.5px solid var(--border); border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 8px 12px; font-size: 13px; font-family: inherit;
  width: 160px; outline: none; background: var(--bg); color: var(--text);
  transition: all var(--transition);
  height: 38px; box-sizing: border-box;
}
.header-track input:focus { border-color: var(--primary); background: white; }
.header-track button {
  background: var(--primary); color: white; border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0 16px; font-size: 13px; font-weight: 600;
  transition: background var(--transition); white-space: nowrap;
  height: 38px; box-sizing: border-box; display: flex; align-items: center; gap: 5px;
}
.header-track button:hover { background: var(--primary-dark); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border: none; background: none; border-radius: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.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 Nav */
.mobile-nav {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: white; box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  border-top: 2px solid var(--primary); max-height: 80vh; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav li a { display: block; padding: 13px 24px; font-size: 14px; font-weight: 500; color: var(--dark); border-bottom: 1px solid var(--border); transition: all var(--transition); }
.mobile-nav li a:hover { color: var(--primary); background: var(--primary-bg); padding-left: 30px; }
.mobile-track { padding: 14px 24px 20px; display: flex; }
.mobile-track input { flex: 1; border: 1.5px solid var(--border); border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); padding: 11px 14px; font-family: inherit; font-size: 14px; outline: none; }
.mobile-track button { background: var(--primary); color: white; border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 11px 18px; font-weight: 600; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; font-family: inherit;
  border: 2px solid transparent; white-space: nowrap; line-height: 1;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: white; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,75,42,0.30); }

.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: white; transform: translateY(-1px); }

.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: white; color: var(--dark); border-color: white; transform: translateY(-1px); }

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

.btn-white { background: white; color: var(--primary); border-color: white; font-weight: 700; }
.btn-white:hover { background: var(--bg); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.section { padding: 84px 0; }
.section-sm { padding: 60px 0; }
.bg-gray  { background: var(--bg); }
.bg-gray-2 { background: var(--bg-2); }
.bg-dark  { background: var(--dark); }

/* Section heading */
.sh { margin-bottom: 48px; }
.sh.center { text-align: center; }
.sh.center .sh-desc { margin: 0 auto; }
.sh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px;
}
.sh-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--primary); border-radius: 2px; }
.sh.center .sh-eyebrow { justify-content: center; }
.sh.center .sh-eyebrow::before, .sh.center .sh-eyebrow::after { content: ''; display: block; width: 28px; height: 2px; background: var(--primary); border-radius: 2px; }
.sh-title { font-size: clamp(24px, 3vw, 38px); font-weight: 800; margin-bottom: 14px; color: var(--dark); letter-spacing: -0.4px; }
.sh-title span { color: var(--primary); }
.sh-desc { color: var(--text-2); font-size: 15px; line-height: 1.75; max-width: 560px; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.08;
}
.page-hero::after {
  content: ''; position: absolute;
  right: -80px; top: -100px;
  width: 360px; height: 360px;
  border-radius: 50%; background: var(--primary); opacity: 0.06;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 {
  color: white; font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px;
}
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.45); }
.breadcrumb-nav a { color: rgba(255,255,255,0.45); }
.breadcrumb-nav a:hover { color: var(--primary-light); }
.breadcrumb-nav .sep { font-size: 9px; }
.breadcrumb-nav .current { color: var(--primary-light); font-weight: 500; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-section { position: relative; overflow: hidden; }
.hero-slide {
  min-height: 620px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  position: relative;
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(28,28,46,0.90) 0%, rgba(28,28,46,0.65) 55%, rgba(28,28,46,0.20) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 60px 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,75,42,0.18); border: 1px solid rgba(232,75,42,0.4);
  color: #FF8060; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(34px, 5vw, 60px);
  color: white; font-weight: 800; line-height: 1.08;
  margin-bottom: 18px; letter-spacing: -0.8px;
}
.hero-title span { color: var(--primary-light); }
.hero-sub {
  color: rgba(255,255,255,0.75); font-size: 16px;
  line-height: 1.75; max-width: 500px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Swiper */
.swiper-button-next, .swiper-button-prev {
  width: 48px !important; height: 48px !important; border-radius: 50%;
  background: rgba(255,255,255,0.1) !important; backdrop-filter: blur(8px);
  color: white !important; border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--primary) !important; border-color: var(--primary); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 14px !important; font-weight: 800; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.35) !important; width: 8px !important; height: 8px !important; }
.swiper-pagination-bullet-active { background: var(--primary) !important; width: 26px !important; border-radius: 4px !important; }

/* ============================================================
   QUICK TRACK BAR
   ============================================================ */
.quick-track { background: var(--primary); }
.quick-track-inner { display: flex; align-items: stretch; min-height: 68px; }
.qt-label {
  display: flex; align-items: center; gap: 10px;
  background: var(--primary-dark); padding: 0 28px;
  color: white; font-size: 14px; font-weight: 700;
  white-space: nowrap; flex-shrink: 0;
}
.qt-label i { font-size: 18px; }
.qt-form { display: flex; flex: 1; align-items: center; padding: 12px 20px 12px 0; gap: 0; }
.qt-form input {
  flex: 1; border: none;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 12px 18px; font-size: 14px; font-family: inherit;
  color: white; outline: none; transition: background var(--transition);
}
.qt-form input::placeholder { color: rgba(255,255,255,0.6); }
.qt-form input:focus { background: rgba(255,255,255,0.3); }
.qt-form button {
  background: var(--dark); color: white; border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 22px; font-size: 14px; font-weight: 700;
  font-family: inherit; white-space: nowrap; transition: background var(--transition);
}
.qt-form button:hover { background: var(--dark-2); }

/* ============================================================
   SERVICE CARDS — AllCargo clean style
   ============================================================ */
.svc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  height: 100%;
  transition: all var(--transition-md);
  position: relative;
  overflow: hidden;
}
.svc-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.svc-num {
  position: absolute; top: 18px; right: 22px;
  font-size: 48px; font-weight: 900; color: var(--bg-2);
  line-height: 1; letter-spacing: -2px;
  font-family: 'Inter', sans-serif; transition: color var(--transition);
}
.svc-card:hover .svc-num { color: var(--primary-bg); }
.svc-icon {
  width: 60px; height: 60px; border-radius: var(--radius);
  background: var(--primary-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all var(--transition-md);
}
.svc-icon i { font-size: 24px; color: var(--primary); transition: all var(--transition); }
.svc-card:hover .svc-icon { background: var(--primary); }
.svc-card:hover .svc-icon i { color: white; }
.svc-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--dark); }
.svc-card p { color: var(--text-2); font-size: 13.5px; line-height: 1.75; margin-bottom: 20px; }
.svc-link {
  color: var(--primary); font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--transition);
}
.svc-link:hover { gap: 9px; }

/* ============================================================
   ABOUT SECTION (Home)
   ============================================================ */
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 430px; object-fit: cover;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--primary); color: white;
  border-radius: var(--radius-lg); padding: 20px 24px;
  text-align: center; box-shadow: 0 8px 28px rgba(232,75,42,0.4);
}
.about-badge .num { font-size: 38px; font-weight: 900; line-height: 1; display: block; }
.about-badge .lbl { font-size: 11px; font-weight: 600; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; }

.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 28px; }
.ab-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  transition: all var(--transition-md);
}
.ab-stat:hover { background: var(--primary); border-color: var(--primary); }
.ab-stat:hover .ab-icon, .ab-stat:hover .ab-num, .ab-stat:hover .ab-lbl { color: white; }
.ab-icon { font-size: 20px; color: var(--primary); flex-shrink: 0; transition: color var(--transition); }
.ab-num { font-size: 18px; font-weight: 800; color: var(--dark); display: block; line-height: 1.1; transition: color var(--transition); }
.ab-lbl { font-size: 11px; color: var(--text-2); transition: color var(--transition); }

/* ============================================================
   STATS COUNTER (only dark section)
   ============================================================ */
.stats-band { background: var(--dark); padding: 64px 0; position: relative; overflow: hidden; }
.stats-band::before { content: ''; position: absolute; inset: 0; background: url('../img/counter/counter-bg.jpg') center/cover; opacity: 0.05; }
.stats-band-inner { position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 16px; }
.stat-icon { font-size: 32px; color: var(--primary); margin-bottom: 14px; }
.stat-num { font-size: clamp(40px, 5vw, 56px); font-weight: 900; color: white; line-height: 1; margin-bottom: 8px; letter-spacing: -2px; }
.stat-num .suf { color: var(--primary); }
.stat-lbl { color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 500; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all var(--transition-md);
}
.process-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.process-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary-bg); border: 2px solid rgba(232,75,42,0.2);
  color: var(--primary); font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; transition: all var(--transition);
}
.process-card:hover .process-num { background: var(--primary); border-color: var(--primary); color: white; }
.process-icon { font-size: 34px; color: var(--text-3); margin-bottom: 16px; transition: color var(--transition); }
.process-card:hover .process-icon { color: var(--primary); }
.process-card h4 { font-size: 15.5px; margin-bottom: 10px; color: var(--dark); }
.process-card p { color: var(--text-2); font-size: 13.5px; line-height: 1.7; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.choose-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center; height: 100%;
  transition: all var(--transition-md);
}
.choose-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.choose-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--primary-bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; transition: all var(--transition-md);
}
.choose-icon i { font-size: 28px; color: var(--primary); transition: all var(--transition); }
.choose-card:hover .choose-icon { background: var(--primary); }
.choose-card:hover .choose-icon i { color: white; }
.choose-card h4 { font-size: 16px; margin-bottom: 9px; color: var(--dark); }
.choose-card p { color: var(--text-2); font-size: 13.5px; line-height: 1.7; }

/* ============================================================
   ZERO DAMAGE POLICY SECTION
   ============================================================ */
.zdp-section { background: linear-gradient(135deg, #FEF0EC 0%, #FFF8F6 60%, var(--bg) 100%); }

.zdp-badge-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
.zdp-shield {
  width: 180px; height: 180px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 56px rgba(232,75,42,0.18), 0 4px 16px rgba(232,75,42,0.10);
  border: 6px solid rgba(232,75,42,0.10);
}
.zdp-shield i { font-size: 72px; color: var(--primary); }

.zdp-guarantee-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: white;
  padding: 10px 22px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 700;
  box-shadow: 0 6px 20px rgba(232,75,42,0.30);
}
.zdp-guarantee-badge i { font-size: 15px; }

.zdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.zdp-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 18px;
  transition: all var(--transition-md);
}
.zdp-item:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.zdp-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--primary-bg); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.zdp-icon i { font-size: 18px; color: var(--primary); transition: color var(--transition); }
.zdp-item:hover .zdp-icon { background: var(--primary); }
.zdp-item:hover .zdp-icon i { color: white; }
.zdp-item h5 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.zdp-item p { font-size: 12.5px; color: var(--text-2); line-height: 1.65; margin: 0; }

/* ZDP inline badge (for about/services pages) */
.zdp-inline-banner {
  background: white; border: 1.5px solid rgba(232,75,42,0.25);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.zdp-inline-banner i.shield { font-size: 32px; color: var(--primary); flex-shrink: 0; }
.zdp-inline-banner h5 { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.zdp-inline-banner p { font-size: 13.5px; color: var(--text-2); margin: 0; line-height: 1.6; }

@media (max-width: 767px) {
  .zdp-grid { grid-template-columns: 1fr; }
  .zdp-shield { width: 140px; height: 140px; }
  .zdp-shield i { font-size: 54px; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(110deg, var(--primary) 0%, #BF3318 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06);
}
.cta-band::before { width: 380px; height: 380px; top: -120px; right: -60px; }
.cta-band::after  { width: 260px; height: 260px; bottom: -90px; left: -50px; }
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 { color: white; font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 10px; }
.cta-band p  { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 28px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.fact-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 22px; text-align: center; transition: all var(--transition-md);
}
.fact-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.fact-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--primary-bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 24px; color: var(--primary);
  transition: all var(--transition-md);
}
.fact-card:hover .fact-icon { background: var(--primary); color: white; }
.fact-num { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.fact-lbl { color: var(--text-2); font-size: 13px; }

.fleet-item {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px; transition: all var(--transition-md);
}
.fleet-item:hover { background: var(--primary); border-color: var(--primary); }
.fleet-item:hover .fi-icon, .fleet-item:hover .fi-name, .fleet-item:hover .fi-cap { color: white; }
.fi-icon { font-size: 26px; color: var(--primary); flex-shrink: 0; transition: color var(--transition); }
.fi-name { font-size: 15px; font-weight: 700; color: var(--dark); transition: color var(--transition); }
.fi-cap  { font-size: 12.5px; color: var(--text-2); transition: color var(--transition); }

.client-chip {
  display: inline-block;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-full); padding: 7px 20px;
  font-size: 13.5px; font-weight: 600; color: var(--dark);
  transition: all var(--transition); cursor: default;
}
.client-chip:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-detail-sec { padding: 80px 0; }
.svc-detail-sec:nth-child(even) { background: var(--bg); }
.svc-detail-img {
  width: 100%; height: 380px; object-fit: contain;
  border-radius: var(--radius-xl); box-shadow: var(--shadow);
  background: white; padding: 28px;
  border: 1px solid var(--border);
}
.feature-list .fi {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text);
}
.feature-list .fi:last-child { border-bottom: none; }
.feature-list .fi i { color: var(--primary); font-size: 14px; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.info-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; height: 100%; transition: all var(--transition-md);
}
.info-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.info-icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--primary-bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: all var(--transition-md);
}
.info-icon i { font-size: 24px; color: var(--primary); transition: all var(--transition); }
.info-card:hover .info-icon { background: var(--primary); }
.info-card:hover .info-icon i { color: white; }
.info-card h4 { font-size: 15px; margin-bottom: 10px; color: var(--dark); }
.info-card a, .info-card p { color: var(--text-2); font-size: 13.5px; line-height: 1.85; display: block; }
.info-card a:hover { color: var(--primary); }

.contact-form-wrap {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 40px; box-shadow: var(--shadow);
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: 14px; font-family: inherit; color: var(--text);
  outline: none; transition: all var(--transition); background: white;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,75,42,0.07); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

/* ============================================================
   LR TRACKING
   ============================================================ */
.track-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 44px; box-shadow: var(--shadow-md);
  max-width: 760px; margin: 0 auto;
}
.track-card-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.track-icon-wrap { width: 54px; height: 54px; background: var(--primary-bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.track-icon-wrap i { font-size: 22px; color: var(--primary); }
.track-card h3 { font-size: 21px; margin-bottom: 4px; }
.track-card p { color: var(--text-2); font-size: 13.5px; }

.track-input-row { display: flex; }
.track-input-row input {
  flex: 1; border: 1.5px solid var(--border); border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 13px 18px; font-size: 14.5px; font-family: inherit; color: var(--text); outline: none;
  transition: border-color var(--transition);
}
.track-input-row input:focus { border-color: var(--primary); }
.track-input-row button {
  background: var(--primary); color: white; border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 13px 26px; font-size: 14px; font-weight: 700;
  font-family: inherit; display: flex; align-items: center; gap: 7px;
  transition: background var(--transition); white-space: nowrap;
}
.track-input-row button:hover { background: var(--primary-dark); }

/* Results */
.track-results { display: none; margin-top: 36px; animation: fadeUp 0.35s ease; }
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

.track-id-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  background: var(--bg); border-radius: var(--radius); border-left: 4px solid var(--primary);
  padding: 14px 20px; margin-bottom: 28px;
}
.tid-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-2); font-weight: 700; }
.tid-val { font-size: 19px; font-weight: 800; color: var(--dark); }
.badge-live {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,75,42,0.09); color: var(--primary);
  border: 1px solid rgba(232,75,42,0.2);
  padding: 5px 14px; border-radius: var(--radius-full);
  font-size: 12.5px; font-weight: 700;
}
.badge-live::before { content:''; width:7px; height:7px; border-radius:50%; background:var(--primary); animation:blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.25} }

.steps-row {
  display: flex; justify-content: space-between;
  position: relative; padding: 0 16px; margin-bottom: 36px;
}
.steps-row::before { content:''; position:absolute; top:21px; left:10%; right:10%; height:2.5px; background:var(--border); border-radius:2px; z-index:0; }
.steps-progress { position:absolute; top:21px; left:10%; height:2.5px; background:var(--primary); border-radius:2px; z-index:1; transition:width 0.9s ease; }
.step-item { flex:1; text-align:center; position:relative; z-index:2; }
.step-dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: white; border: 2.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px; font-size: 16px; color: var(--text-3);
  transition: all var(--transition); box-shadow: 0 0 0 4px white;
}
.step-item.completed .step-dot { background:#22c55e; border-color:#22c55e; color:white; box-shadow:0 0 0 4px white,0 0 0 6px rgba(34,197,94,0.15); }
.step-item.active .step-dot { background:var(--primary); border-color:var(--primary); color:white; box-shadow:0 0 0 4px white,0 0 0 6px rgba(232,75,42,0.18); animation:stPulse 1.6s infinite; }
@keyframes stPulse { 0%,100%{transform:scale(1)}50%{transform:scale(1.08)} }
.step-item p { font-size:11px; font-weight:600; color:var(--text-2); }
.step-item.active p { color:var(--primary); }
.step-item.completed p { color:#16a34a; }

.shipment-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 22px 26px; margin-bottom: 22px;
  border: 1px solid var(--border); border-left: 3px solid var(--primary);
}
.sc-title { font-size: 13.5px; font-weight: 700; color: var(--dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.sc-title i { color: var(--primary); }
.shipment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.sf label { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-2); display: block; margin-bottom: 4px; }
.sf .val { font-size: 14px; font-weight: 600; color: var(--dark); }

.timeline-section { padding-left: 30px; position: relative; }
.timeline-section::before { content:''; position:absolute; left:6px; top:44px; bottom:16px; width:2px; background:var(--border); }
.tl-title { font-size:13.5px; font-weight:700; color:var(--dark); margin-bottom:18px; display:flex; align-items:center; gap:8px; }
.tl-title i { color:var(--primary); }
.tl-item {
  background: white; border:1px solid var(--border); border-radius:var(--radius);
  box-shadow:var(--shadow-xs); padding:13px 16px; margin-bottom:12px; position:relative;
}
.tl-item::before { content:''; position:absolute; left:-36px; top:50%; transform:translateY(-50%); width:13px; height:13px; border-radius:50%; background:var(--primary); border:3px solid white; box-shadow:0 0 0 2px var(--primary); }
.tl-item h5 { font-size:13.5px; margin-bottom:4px; }
.tl-item span { font-size:11.5px; color:var(--text-2); display:flex; align-items:center; gap:4px; }

/* ============================================================
   FOOTER — LIGHT (AllCargo style)
   ============================================================ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.footer-top { padding: 64px 0 48px; }

.footer-brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; }
.footer-brand-name { font-size: 17px; font-weight: 800; color: var(--dark); display: block; margin-top: 10px; }
.footer-brand-tag  { font-size: 10.5px; font-weight: 500; color: var(--primary); letter-spacing: 1.2px; text-transform: uppercase; }
.footer-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.8; margin: 14px 0 20px; max-width: 260px; }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: white; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); font-size: 13.5px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-3px); }

.footer-heading { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13.5px; color: var(--text-2); display: flex; align-items: center; gap: 7px; transition: all var(--transition); }
.footer-links a i { font-size: 9px; color: var(--primary); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-list li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 12px; font-size: 13.5px; color: var(--text-2); }
.footer-contact-list .fci { color: var(--primary); font-size: 13.5px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: var(--text-2); }
.footer-contact-list a:hover { color: var(--primary); }

.footer-divider { height: 1px; background: var(--border); margin: 0; }
.footer-bottom {
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: var(--text-2);
}
.footer-bottom a { color: var(--primary); font-weight: 600; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--primary-dark); }
.wolke-credit { display: flex; align-items: center; gap: 6px; }
.wolke-credit i { color: var(--primary); font-size: 11px; }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 26px; right: 26px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; box-shadow: 0 4px 16px rgba(232,75,42,0.38);
  opacity: 0; visibility: hidden; transition: all var(--transition); z-index: 9998;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { background: var(--bg); padding: 84px 0; }

.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 38px 36px 32px;
  height: 100%;
  position: relative;
  transition: all var(--transition-md);
  display: flex; flex-direction: column;
}
.testi-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-5px); }

.testi-quote-mark {
  font-size: 80px; line-height: 0.6; font-weight: 900;
  color: var(--primary-bg); font-family: Georgia, serif;
  margin-bottom: 20px; display: block;
  transition: color var(--transition-md);
}
.testi-card:hover .testi-quote-mark { color: rgba(232,75,42,0.15); }

.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars i { color: #F59E0B; font-size: 14px; }

.testi-text {
  font-size: 15px; color: var(--text); line-height: 1.85;
  font-style: italic; flex: 1; margin-bottom: 28px;
  border-left: 3px solid var(--primary-bg);
  padding-left: 16px;
  transition: border-color var(--transition-md);
}
.testi-card:hover .testi-text { border-color: var(--primary); }

.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: white;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.testi-company { font-size: 12px; color: var(--text-2); font-weight: 500; }

/* Swiper overrides for testimonials */
.testi-swiper { padding-bottom: 48px !important; }
.testi-swiper .swiper-pagination-bullet { background: var(--border-2) !important; width: 8px !important; height: 8px !important; }
.testi-swiper .swiper-pagination-bullet-active { background: var(--primary) !important; width: 24px !important; border-radius: 4px !important; }
.testi-swiper .swiper-button-next, .testi-swiper .swiper-button-prev {
  width: 42px !important; height: 42px !important; border-radius: 50%;
  background: white !important; border: 1.5px solid var(--border) !important;
  color: var(--dark) !important; box-shadow: var(--shadow-sm); top: auto !important; bottom: 0;
  transition: all var(--transition);
}
.testi-swiper .swiper-button-next { right: calc(50% - 52px) !important; }
.testi-swiper .swiper-button-prev { left: calc(50% - 52px) !important; }
.testi-swiper .swiper-button-next:hover, .testi-swiper .swiper-button-prev:hover { background: var(--primary) !important; border-color: var(--primary) !important; color: white !important; }
.testi-swiper .swiper-button-next::after, .testi-swiper .swiper-button-prev::after { font-size: 12px !important; font-weight: 900; }

/* Overall rating badge */
.testi-rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 8px 20px;
  font-size: 13.5px; font-weight: 700; color: var(--dark);
  box-shadow: var(--shadow-xs);
}
.testi-rating-badge .stars { color: #F59E0B; letter-spacing: 1px; }
.testi-rating-badge .score { font-size: 20px; font-weight: 900; color: var(--dark); }

@media (max-width: 767px) {
  .testi-section { padding: 56px 0; }
  .testi-card { padding: 26px 22px 24px; }
  .testi-swiper .swiper-button-next, .testi-swiper .swiper-button-prev { display: none !important; }
}

/* ============================================================
   CLIENT LOGO STRIP — Marquee & Grid
   ============================================================ */
.clients-section { padding: 56px 0; background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.clients-label {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-2); white-space: nowrap;
}
.clients-label::after { content: ''; display: block; width: 1px; height: 36px; background: var(--border); }

/* Marquee track */
.logo-marquee-wrap { overflow: hidden; flex: 1; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); }
.logo-marquee-track { display: flex; gap: 20px; width: max-content; animation: marqueeScroll 90s linear infinite; }
.logo-marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 24px;
  min-width: 140px; height: 84px; flex-shrink: 0;
  transition: all var(--transition-md); cursor: default;
  position: relative; overflow: hidden;
}
.logo-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--primary-bg); opacity: 0;
  transition: opacity var(--transition);
}
.logo-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.logo-card:hover::before { opacity: 1; }
.logo-card img {
  max-height: 36px; max-width: 110px;
  object-fit: contain; filter: grayscale(100%); opacity: 0.65;
  transition: all var(--transition-md); position: relative; z-index: 1;
}
.logo-card:hover img { filter: grayscale(0%); opacity: 1; }
.logo-card .lc-name {
  font-size: 10.5px; font-weight: 700; color: var(--text-2);
  letter-spacing: 0.5px; text-transform: uppercase;
  position: relative; z-index: 1; transition: color var(--transition);
}
.logo-card:hover .lc-name { color: var(--primary); }

/* Text-based logo badge (when no image) */
.logo-initials {
  width: 44px; height: 44px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; letter-spacing: -0.5px;
  position: relative; z-index: 1;
  transition: all var(--transition-md);
}

/* About page logo grid */
.client-logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.client-logo-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 18px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  text-align: center; transition: all var(--transition-md);
  min-height: 110px;
}
.client-logo-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.client-logo-card img { max-height: 44px; max-width: 100px; object-fit: contain; filter: grayscale(100%); opacity: 0.65; transition: all var(--transition-md); }
.client-logo-card:hover img { filter: grayscale(0%); opacity: 1; }
.client-logo-card .cl-badge {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; letter-spacing: -0.5px;
  transition: all var(--transition-md);
}
.client-logo-card:hover .cl-badge { transform: scale(1.08); }
.client-logo-card .cl-name { font-size: 12px; font-weight: 700; color: var(--text-2); letter-spacing: 0.5px; text-transform: uppercase; transition: color var(--transition); }
.client-logo-card:hover .cl-name { color: var(--primary); }
.client-logo-card .cl-sector { font-size: 10.5px; color: var(--text-3); margin-top: -4px; }

@media (max-width: 991px) { .client-logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .client-logo-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   PORTAL NAV BUTTONS
   ============================================================ */
.nav-portal-group { display: flex; align-items: center; gap: 6px; margin-left: 6px; padding-left: 10px; border-left: 1px solid var(--border); flex-shrink: 0; }
.nav-portal-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0 14px; border-radius: var(--radius-full);
  font-size: 12.5px; font-weight: 600;
  border: 1.5px solid var(--border-2); color: var(--text);
  transition: all var(--transition); white-space: nowrap; line-height: 1;
  background: white; height: 38px; box-sizing: border-box;
}
.nav-portal-btn i { font-size: 11px; }
.nav-portal-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.nav-portal-btn.filled { background: var(--primary); border-color: var(--primary); color: white; }
.nav-portal-btn.filled:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: white; }

/* Mobile portal links */
.mobile-portal-row { display: flex; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--bg); }
.mobile-portal-row a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 12px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border-2); color: var(--text);
  transition: all var(--transition); text-decoration: none;
}
.mobile-portal-row a:hover { border-color: var(--primary); color: var(--primary); }
.mobile-portal-row a.filled { background: var(--primary); border-color: var(--primary); color: white; }
.mobile-portal-row a.filled:hover { background: var(--primary-dark); }

/* ============================================================
   PORTAL LOGIN PAGE
   ============================================================ */
.portal-page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 56px 0 80px; position: relative; overflow: hidden; text-align: center;
}
.portal-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,75,42,0.12) 0%, transparent 65%);
}
.portal-page-hero .phi { position: relative; z-index: 2; }
.portal-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(232,75,42,0.15); border: 1px solid rgba(232,75,42,0.3);
  color: #FF8060; font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: var(--radius-full); margin-bottom: 16px;
}
.portal-page-hero h1 { color: white; font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 10px; }
.portal-page-hero p { color: rgba(255,255,255,0.55); font-size: 15px; }

.portal-card {
  background: white; border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.10);
  padding: 44px 44px 36px;
  max-width: 460px; margin: -44px auto 0; position: relative; z-index: 3;
}
.portal-card-icon {
  width: 64px; height: 64px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px;
}
.portal-card h2 { font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.portal-card .portal-sub { text-align: center; color: var(--text-2); font-size: 14px; margin-bottom: 28px; }
.portal-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.portal-divider::before, .portal-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.portal-divider span { font-size: 12px; color: var(--text-2); white-space: nowrap; }
.portal-footer-note { text-align: center; margin-top: 20px; font-size: 12.5px; color: var(--text-2); }
.portal-footer-note a { color: var(--primary); font-weight: 600; }

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section { background: var(--dark); position: relative; overflow: hidden; padding: 92px 0; }
.founder-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(232,75,42,0.10) 0%, transparent 60%);
}
.founder-bg-text {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-size: clamp(100px, 14vw, 180px); font-weight: 900;
  color: rgba(255,255,255,0.025); line-height: 1; letter-spacing: -8px;
  user-select: none; pointer-events: none;
}

.founder-photo-wrap { position: relative; display: flex; justify-content: center; }
.founder-avatar {
  width: 300px; height: 360px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #2D2D3F 0%, var(--dark-2) 100%);
  border: 3px solid rgba(232,75,42,0.35);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative;
  box-shadow: 0 32px 72px rgba(0,0,0,0.5), 0 0 0 6px rgba(232,75,42,0.1);
}
.founder-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.founder-avatar:hover .founder-photo-img { transform: scale(1.04); }
.founder-avatar-initials {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.founder-initials-circle {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; font-weight: 900; color: white; letter-spacing: -2px;
  box-shadow: 0 8px 32px rgba(232,75,42,0.4);
}
.founder-silhouette {
  width: 120px; height: 120px; margin-top: 20px;
  background: rgba(255,255,255,0.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; color: rgba(255,255,255,0.15);
}

.founder-since-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--primary); color: white;
  border-radius: var(--radius-lg); padding: 14px 18px;
  text-align: center; box-shadow: 0 8px 24px rgba(232,75,42,0.4);
  min-width: 90px;
}
.founder-since-badge .yr { font-size: 22px; font-weight: 900; line-height: 1; display: block; }
.founder-since-badge .yr-lbl { font-size: 10px; font-weight: 600; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; }

.founder-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--primary-light); margin-bottom: 12px;
}
.founder-name { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 6px; letter-spacing: -0.5px; }
.founder-title {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); padding: 6px 16px;
  border-radius: var(--radius-full); font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.founder-bio { color: rgba(255,255,255,0.60); font-size: 15px; line-height: 1.9; margin-bottom: 28px; }

.founder-stat-row { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.founder-stat {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 14px 20px; text-align: center; flex: 1; min-width: 80px;
  transition: all var(--transition);
}
.founder-stat:hover { background: rgba(232,75,42,0.12); border-color: rgba(232,75,42,0.3); }
.founder-stat .fs-num { font-size: 22px; font-weight: 900; color: var(--primary-light); line-height: 1; display: block; }
.founder-stat .fs-lbl { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; display: block; }

.founder-quote {
  border-left: 3px solid var(--primary); padding: 18px 22px;
  background: rgba(232,75,42,0.06); border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 28px;
}
.founder-quote p { color: rgba(255,255,255,0.75); font-size: 15px; font-style: italic; line-height: 1.8; margin: 0; }
.founder-quote cite { font-size: 12px; color: var(--primary-light); font-style: normal; font-weight: 600; margin-top: 8px; display: block; }

.founder-values { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fv-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 11px 14px;
  font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500;
  transition: all var(--transition);
}
.fv-item:hover { background: rgba(232,75,42,0.10); border-color: rgba(232,75,42,0.25); color: white; }
.fv-item i { color: var(--primary); font-size: 13px; flex-shrink: 0; }

@media (max-width: 991px) {
  .founder-bg-text { display: none; }
  .founder-photo-wrap { margin-bottom: 40px; }
}
@media (max-width: 767px) {
  .founder-avatar { width: 220px; height: 270px; }
  .founder-values { grid-template-columns: 1fr; }
  .portal-card { padding: 28px 20px 24px; margin: -32px 16px 0; }
  .nav-portal-group { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  body { padding-top: 112px; }
  .main-nav, .header-track { display: none; }
  .hamburger { display: flex; }
  .about-badge { bottom: -12px; right: -12px; }
  .qt-label { display: none; }
  .qt-form { padding: 10px 14px; }
}
@media (max-width: 767px) {
  body { padding-top: 106px; }
  .site-header { top: 38px; }
  .top-bar { height: 38px; }
  .section { padding: 56px 0; }
  .hero-slide { min-height: 500px; }
  .hero-title { font-size: clamp(28px, 7.5vw, 40px); }
  .track-card { padding: 26px 18px; }
  .steps-row { padding: 0 6px; }
  .step-dot { width: 36px; height: 36px; font-size: 13px; }
  .step-item p { font-size: 10px; }
  .shipment-grid { grid-template-columns: repeat(2,1fr); }
  .contact-form-wrap { padding: 26px 18px; }
  .footer-top { padding: 48px 0 36px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .top-hours { display: none; }
  .about-stats-grid { grid-template-columns: 1fr; }
  .track-input-row { flex-direction: column; }
  .track-input-row input { border-right: 1.5px solid var(--border); border-bottom: none; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
  .track-input-row button { border-radius: 0 0 var(--radius-sm) var(--radius-sm); justify-content: center; }
  .footer-desc { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .shipment-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VEHICLE IMAGE LOGO OVERLAY
   ============================================================ */
.vehicle-img-wrap { position: relative; display: block; }
.vehicle-img-wrap img { display: block; width: 100%; }
.vehicle-logo-badge {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(255,255,255,0.93); backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 8px; padding: 6px 12px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
  pointer-events: none; z-index: 2;
}
.vehicle-logo-badge img { width: 26px; height: 26px; object-fit: contain; border-radius: 4px; }
.vehicle-logo-badge span { font-size: 11px; font-weight: 800; color: var(--dark); letter-spacing: 0.3px; white-space: nowrap; line-height: 1.2; }
.vehicle-logo-badge .vb-tag { font-size: 9px; font-weight: 500; color: var(--primary); display: block; letter-spacing: 0.5px; }

/* ============================================================
   ANNIVERSARY POPUP  — Premium redesign
   ============================================================ */
#anniversaryPopup {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(7,14,26,0.88); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.anniv-card {
  background: linear-gradient(160deg, #0D1B2A 0%, #162437 60%, #0F2040 100%);
  border: 1px solid rgba(232,75,42,0.22);
  border-radius: 24px;
  max-width: 500px; width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes popIn {
  from { transform: scale(0.82) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

/* Close button */
.anniv-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 16px; color: rgba(255,255,255,0.6);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.anniv-close:hover { background: rgba(232,75,42,0.3); color: #fff; }

/* Header band with gradient */
.anniv-header {
  background: linear-gradient(135deg, #E84B2A 0%, #c93820 50%, #F59E0B 100%);
  padding: 32px 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.anniv-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.anniv-trophy { font-size: 52px; line-height: 1; position: relative; }
.anniv-est-badge {
  display: inline-block; margin-top: 10px;
  background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.95);
  padding: 4px 16px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* Circle years badge */
.anniv-years-circle {
  width: 110px; height: 110px; border-radius: 50%;
  background: white;
  border: 5px solid rgba(232,75,42,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 2px rgba(245,158,11,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: -55px auto 0; position: relative; z-index: 2;
}
.anniv-big-num {
  font-size: 40px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #E84B2A, #F59E0B);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.anniv-big-lbl { font-size: 10px; font-weight: 800; color: var(--dark); letter-spacing: 1.5px; text-transform: uppercase; }

/* Body content */
.anniv-body { padding: 28px 36px 32px; text-align: center; }
.anniv-heading {
  font-size: clamp(20px,4vw,26px); font-weight: 800;
  color: #ffffff; margin: 16px 0 6px; letter-spacing: -0.3px; line-height: 1.3;
}
.anniv-heading span { background: linear-gradient(90deg,#E84B2A,#F59E0B); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.anniv-rule {
  width: 48px; height: 3px; margin: 12px auto 18px;
  background: linear-gradient(90deg, #E84B2A, #F59E0B);
  border-radius: 2px;
}
.anniv-message {
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.85; margin-bottom: 24px;
}

/* Signature strip */
.anniv-sig {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 24px;
  text-align: left;
}
.anniv-sig img { height: 34px; flex-shrink: 0; filter: brightness(0) invert(1); opacity:0.9; }
.anniv-sig strong { display: block; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); }
.anniv-sig span { font-size: 11px; color: rgba(255,255,255,0.4); }

/* Buttons */
.anniv-btn-primary {
  display: block; width: 100%;
  background: linear-gradient(135deg, #E84B2A 0%, #F59E0B 100%);
  color: #fff; border: none; border-radius: 50px;
  padding: 14px 28px; font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: opacity 0.2s, transform 0.2s;
  margin-bottom: 10px;
}
.anniv-btn-primary:hover { opacity: 0.9; transform: translateY(-1px); color: #fff; }
.anniv-btn-ghost {
  display: block; width: 100%;
  background: transparent; color: rgba(255,255,255,0.45);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 11px 24px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.anniv-btn-ghost:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.35); }
@media (max-width: 575px) {
  .anniv-header { padding: 28px 24px 24px; }
  .anniv-body { padding: 24px 22px 28px; }
}

/* ============================================================
   NETWORK PAGE
   ============================================================ */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.branch-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px 24px;
  transition: all var(--transition-md);
  position: relative; overflow: hidden;
}
.branch-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--border);
  transition: background var(--transition-md);
}
.branch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.branch-card:hover::before { background: var(--primary); }
.branch-card.hq-card { border-color: rgba(232,75,42,0.3); background: linear-gradient(145deg, #fff 60%, var(--primary-bg) 100%); }
.branch-card.hq-card::before { background: var(--primary); }
.branch-hq-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--primary); color: white;
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; margin-bottom: 10px;
}
.branch-city { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 4px; letter-spacing: -0.3px; }
.branch-state { font-size: 12px; color: var(--text-2); font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 5px; }
.branch-state i { color: var(--primary); font-size: 11px; }
.branch-manager { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; padding: 12px; background: var(--bg); border-radius: var(--radius); }
.branch-manager-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary-bg); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.branch-manager-info .bm-name { font-size: 13.5px; font-weight: 700; color: var(--dark); }
.branch-manager-info .bm-role { font-size: 11.5px; color: var(--text-2); margin-top: 1px; }
.branch-contact { display: flex; flex-direction: column; gap: 7px; }
.branch-contact a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text); font-weight: 500;
  transition: color var(--transition);
}
.branch-contact a:hover { color: var(--primary); }
.branch-contact a i { color: var(--primary); font-size: 12px; width: 16px; }
.branch-card.coming-soon {
  background: var(--bg); border: 1.5px dashed var(--border-2);
  opacity: 0.7;
}
.branch-card.coming-soon:hover { transform: none; box-shadow: none; border-color: var(--border-2); opacity: 0.85; }
.coming-soon-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #F0F2F5; color: var(--text-2);
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; margin-bottom: 10px;
}
.branch-coming-note { font-size: 13px; color: var(--text-2); margin-top: 12px; font-style: italic; }
@media (max-width: 991px) { .branch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .branch-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GROUP OF COMPANIES (About + Footer)
   ============================================================ */
.group-section { background: var(--bg-2); }
.group-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.group-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px 16px 22px;
  text-align: center; transition: all var(--transition-md);
}
.group-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary); }
.group-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-bg); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 14px;
}
.group-card h5 { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 6px; }
.group-card p { font-size: 11.5px; color: var(--text-2); line-height: 1.5; margin: 0; }
.footer-group-list { list-style: none; padding: 0; margin: 0; }
.footer-group-list li { padding: 4px 0; font-size: 13px; color: var(--text-2); display: flex; align-items: center; gap: 7px; transition: color var(--transition); }
.footer-group-list li:hover { color: var(--primary); }
.footer-group-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
@media (max-width: 991px) { .group-cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .group-cards-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   CLIENTS PAGE
   ============================================================ */
.clients-filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 40px;
}
.filter-chip {
  padding: 7px 18px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; border: 1.5px solid var(--border);
  color: var(--text); background: white; cursor: pointer;
  transition: all var(--transition);
}
.filter-chip:hover, .filter-chip.active {
  background: var(--primary); color: white; border-color: var(--primary);
}
.clients-count-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-bg); color: var(--primary);
  padding: 8px 20px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 700; margin-bottom: 32px;
}
.clients-count-badge .cnt { font-size: 22px; font-weight: 900; }
