/* ============================================================
   CrystaLogistics — Design System v2 (Direction D)
   Loaded after style.css. Targets public-facing pages only.
   ============================================================ */

:root {
    --c-primary:        #0f2647;
    --c-primary-2:      #1e3a5f;
    --c-primary-soft:   #1a3a6b;
    --c-secondary:      #f97316;
    --c-secondary-dark: #ea580c;
    --c-amber:          #fbbf24;
    --c-accent:         #0ea5e9;
    --c-success:        #16a34a;
    --c-success-soft:   #dcfce7;
    --c-cream:          #fef6ec;
    --c-bg:             #fafaf7;
    --c-surface:        #ffffff;
    --c-text:           #0f172a;
    --c-text-muted:     #64748b;
    --c-border:         #ebe9e3;
    --c-border-strong:  #d6d4ce;
    --c-shadow-sm:      0 1px 2px rgba(15,38,71,.04), 0 2px 8px rgba(15,38,71,.05);
    --c-shadow:         0 4px 14px rgba(15,38,71,.07), 0 12px 40px rgba(15,38,71,.08);
    --c-shadow-lg:      0 24px 60px rgba(15,38,71,.18);
    --c-radius:         16px;
    --c-radius-sm:      10px;
}

/* Override legacy tokens for consistency on public pages */
body {
    font-family: 'Inter', sans-serif;
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    font-feature-settings: "ss01", "cv11";
}
h1,h2,h3,h4,h5,h6 { font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--c-primary); }
.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.02em; }
.italic-serif { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 600; }
.mono { font-family: 'JetBrains Mono', monospace; font-feature-settings: "ss01"; }
a { transition: all .2s ease; }

/* ============== SCROLL PROGRESS ============== */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--c-secondary), var(--c-amber));
    z-index: 9999;
    transition: width .1s linear;
    box-shadow: 0 0 10px rgba(249,115,22,.5);
}

/* ============== TOPBAR ============== */
.topbar {
    background: var(--c-primary);
    color: rgba(255,255,255,.7);
    font-size: 13px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar a { color: rgba(255,255,255,.75) !important; text-decoration: none; }
.topbar a:hover { color: var(--c-amber) !important; }
.topbar .topbar-pill {
    background: rgba(251,191,36,.12);
    color: var(--c-amber) !important;
    border: 1px solid rgba(251,191,36,.25);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px; font-weight: 600;
    letter-spacing: .4px; text-transform: uppercase;
}
.topbar .btn-outline-light {
    color: var(--c-amber) !important;
    border-color: rgba(251,191,36,.4) !important;
}
.topbar .btn-outline-light:hover {
    background: var(--c-amber);
    color: var(--c-primary) !important;
    border-color: var(--c-amber) !important;
}

/* ============== NAVBAR ============== */
.main-navbar {
    background: var(--c-surface) !important;
    padding: 10px 0 !important;
    box-shadow: 0 1px 0 var(--c-border), 0 8px 30px rgba(15,38,71,.04) !important;
}
.brand-logo {
    display: flex; align-items: center; gap: 12px;
    font-size: 24px; font-weight: 800;
    color: var(--c-primary);
    letter-spacing: -0.025em;
    line-height: 1;
}
.brand-logo i { display: none !important; } /* hide legacy fa truck icon */
.brand-logo .brand-mark {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform .25s ease;
}
.main-footer .brand-logo { font-size: 26px; }
.main-footer .brand-logo .brand-mark { width: 46px; height: 46px; }
.brand-logo:hover .brand-mark { transform: translateX(2px) scale(1.04); }
.brand-logo .brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-logo span strong { color: var(--c-secondary); font-weight: 800; }
.main-footer .brand-logo .brand-mark svg .upper { fill: var(--c-secondary); }
.main-footer .brand-logo .brand-mark svg .lower { fill: #fff; }
.main-navbar .nav-link {
    color: var(--c-text) !important;
    font-weight: 500;
    font-size: 14.5px;
    padding: 8px 14px !important;
    border-radius: 8px !important;
}
.main-navbar .nav-link:hover, .main-navbar .nav-link.active {
    color: var(--c-primary) !important;
    background: var(--c-cream) !important;
    font-weight: 600;
}
.main-navbar .btn-track-nav,
.main-navbar .btn-track-nav:hover,
.main-navbar .btn-track-nav.active {
    color: #fff !important;
    background: linear-gradient(135deg, var(--c-primary), #1a3a6e) !important;
}
.main-navbar .btn-track-nav:hover {
    background: linear-gradient(135deg, #1a3a6e, var(--c-primary)) !important;
}
.btn-track-nav {
    background: linear-gradient(135deg, var(--c-primary), #1a3a6e) !important;
    color: #fff !important;
    padding: 11px 22px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    box-shadow: 0 6px 18px rgba(15,38,71,.32) !important;
    border: none !important;
    letter-spacing: -0.01em;
}
.btn-track-nav:hover, .btn-track-nav.active {
    color: #fff !important;
    background: linear-gradient(135deg, #1a3a6e, var(--c-primary)) !important;
}
.btn-track-nav:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(15,38,71,.45) !important; }
.main-navbar .dropdown-menu {
    border: 1px solid var(--c-border) !important;
    border-radius: 14px !important;
    padding: 10px !important;
    box-shadow: 0 20px 50px rgba(15,38,71,.14) !important;
}
.main-navbar .dropdown-item {
    border-radius: 8px !important;
    padding: 9px 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}
.main-navbar .dropdown-item:hover { background: var(--c-cream) !important; }

@media (min-width: 992px) {
    .main-navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* ============== HERO ============== */
.hero-section {
    background: radial-gradient(1200px 600px at 20% 0%, #1e3a6b 0%, transparent 50%),
                radial-gradient(800px 600px at 90% 100%, #0c4a6e 0%, transparent 60%),
                linear-gradient(135deg, #0a1d3a 0%, #0f2647 60%, #1a3a6b 100%) !important;
    padding: 70px 0 !important;
    overflow: hidden;
    color: #fff;
    position: relative;
    min-height: auto !important;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 100%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: 10%; right: -100px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(251,191,36,.12), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}
.hero-section .container { position: relative; z-index: 2; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(251,191,36,.1);
    color: var(--c-amber);
    border: 1px solid rgba(251,191,36,.28);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12px; font-weight: 600;
    letter-spacing: .5px; text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--c-amber);
    box-shadow: 0 0 0 4px rgba(251,191,36,.2);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 50% { opacity: .5; } }
.hero-content h1 {
    font-size: clamp(2.2rem, 4.4vw, 3.8rem) !important;
    color: #fff !important;
    font-weight: 800;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
    margin-bottom: 18px !important;
}
.hero-content h1 .accent, .hero-content h1 span {
    background: linear-gradient(135deg, var(--c-secondary), var(--c-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    color: transparent !important;
}
.hero-content p {
    font-size: 1.18rem !important;
    color: rgba(255,255,255,.78) !important;
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 400;
}
.hero-trust {
    display: flex; gap: 28px; margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
    flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 10px; }
.hero-trust-item i { color: var(--c-amber); font-size: 18px; }
.hero-trust-item span { font-size: 13px; color: rgba(255,255,255,.7); }

.btn-primary-cta {
    background: linear-gradient(135deg, var(--c-secondary), var(--c-secondary-dark));
    color: #fff;
    border: none;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 12px 28px rgba(249,115,22,.4);
    transition: all .25s ease;
    display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(249,115,22,.5); color: #fff; }
.btn-ghost-cta {
    background: rgba(255,255,255,.06);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.18);
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    backdrop-filter: blur(10px);
    transition: all .25s ease;
    display: inline-flex; align-items: center; gap: 10px;
}
.btn-ghost-cta:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }

/* Hero animated truck on a road */
.hero-road {
    position: absolute;
    bottom: 60px; left: 0; right: 0;
    height: 60px;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    opacity: .55;
}
.hero-road::before {
    content: '';
    position: absolute;
    bottom: 18px; left: 0; right: 0;
    height: 2px;
    background-image: linear-gradient(to right, rgba(251,191,36,.5) 50%, transparent 50%);
    background-size: 24px 2px;
    background-repeat: repeat-x;
}
.hero-truck-svg {
    position: absolute;
    bottom: 8px; left: -120px;
    width: 110px; height: 50px;
    animation: drive-across 14s linear infinite;
}
@keyframes drive-across { 0% { left: -140px; } 100% { left: 100%; } }
.hero-truck-svg .wheel {
    transform-origin: center;
    transform-box: fill-box;
    animation: wheel-spin .4s linear infinite;
}
@keyframes wheel-spin { to { transform: rotate(360deg); } }

/* Hero Track Card */
.track-box {
    background: var(--c-surface) !important;
    border-radius: 24px !important;
    padding: 38px 36px !important;
    box-shadow: 0 30px 80px rgba(0,0,0,.35) !important;
    position: relative;
    border: 1px solid rgba(255,255,255,.08);
    z-index: 2;
}
.track-box .form-control {
    height: 60px !important;
    font-size: 16px !important;
    padding: 0 22px !important;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .5px;
    font-weight: 600;
}
.track-box .btn-track {
    height: 56px !important;
    font-size: 16px !important;
    margin-top: 14px !important;
}
.track-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(251,191,36,.4), transparent 50%, rgba(249,115,22,.3));
    z-index: -1;
}
.track-card-tag {
    position: absolute;
    top: -12px; left: 32px;
    background: linear-gradient(135deg, var(--c-secondary), var(--c-amber));
    color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: .6px;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(249,115,22,.4);
}
.track-box h4 {
    color: var(--c-primary) !important;
    font-size: 22px !important;
    margin-bottom: 6px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    display: block !important;
}
.track-box .sub { color: var(--c-text-muted); font-size: 14px; margin-bottom: 22px; }
.track-box .form-control {
    border: 2px solid var(--c-border) !important;
    border-radius: 12px !important;
    height: 56px !important;
    font-size: 15px !important;
    padding: 0 20px !important;
    transition: all .2s ease;
    font-weight: 500;
    background: var(--c-bg) !important;
}
.track-box .form-control:focus {
    border-color: var(--c-secondary) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(249,115,22,.1) !important;
}
.btn-track {
    background: linear-gradient(135deg, var(--c-secondary), var(--c-secondary-dark)) !important;
    color: #fff !important;
    height: 56px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    border: none !important;
    font-size: 15px !important;
    display: flex !important; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 10px 24px rgba(249,115,22,.32) !important;
    transition: all .25s ease;
}
.btn-track:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(249,115,22,.45) !important; color: #fff !important; }
.track-quick {
    display: flex; gap: 8px; margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed var(--c-border);
    flex-wrap: wrap;
}
.track-quick a {
    font-size: 12.5px;
    color: var(--c-text-muted);
    padding: 5px 11px;
    background: var(--c-cream);
    border-radius: 16px;
    font-weight: 500;
}
.track-quick a:hover { background: var(--c-secondary); color: #fff; }

/* ============== FLOATING STATS CARD ============== */
.stats-float {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--c-shadow-lg);
    padding: 28px 16px;
    margin-top: -50px;
    position: relative;
    z-index: 5;
    border: 1px solid var(--c-border);
}
.stats-float .stat-cell {
    text-align: center;
    padding: 6px 18px;
    border-right: 1px solid var(--c-border);
}
.stats-float .stat-cell:last-child { border-right: none; }
.stats-float .stat-num {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--c-primary);
    letter-spacing: -0.04em;
    line-height: 1;
    display: block;
}
.stats-float .stat-num small { font-size: 22px; color: var(--c-secondary); margin-left: 2px; vertical-align: top; }
.stats-float .stat-label {
    font-size: 12.5px;
    color: var(--c-text-muted);
    margin-top: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .4px;
}

/* ============== SECTIONS ============== */
.section-d { padding: 100px 0; }
.section-d.alt { background: linear-gradient(180deg, var(--c-bg) 0%, #fff 100%); }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--c-secondary);
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-eyebrow::before {
    content: ''; width: 24px; height: 2px;
    background: var(--c-secondary);
}
.section-title-d {
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    font-weight: 800;
    color: var(--c-primary);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.05;
}
.section-title-d .italic {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--c-secondary);
}
.section-sub {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    max-width: 580px;
    margin-bottom: 0;
}

/* ============== SERVICE CARDS V2 ============== */
.svc-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition: all .35s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--clr, var(--c-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.svc-card:hover { box-shadow: var(--c-shadow); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card .svc-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--clr-bg, var(--c-cream));
    color: var(--clr, var(--c-primary));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transform: translateZ(20px);
    transition: transform .3s ease;
}
.svc-card:hover .svc-icon { transform: translateZ(40px) scale(1.05); }
.svc-card h5 {
    font-size: 18px; font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    transform: translateZ(20px);
}
.svc-card p { color: var(--c-text-muted); font-size: 14px; margin-bottom: 16px; line-height: 1.6; transform: translateZ(20px); }
.svc-meta {
    display: flex; align-items: center; gap: 14px;
    padding-top: 16px;
    border-top: 1px dashed var(--c-border);
    font-size: 12.5px;
    color: var(--c-text-muted);
    transform: translateZ(20px);
}
.svc-meta b { color: var(--c-primary); font-weight: 700; }
.svc-meta .arrow {
    margin-left: auto;
    width: 32px; height: 32px;
    background: var(--c-cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-secondary);
    transition: all .25s ease;
    text-decoration: none;
}
.svc-card:hover .svc-meta .arrow { background: var(--c-secondary); color: #fff; transform: translateX(4px); }

.svc-featured {
    background: linear-gradient(135deg, #0f2647 0%, #1a3a6b 100%);
    color: #fff;
    border: none;
    position: relative;
}
.svc-featured::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 30px 30px;
    border-radius: 20px;
    pointer-events: none;
}
.svc-featured > * { position: relative; z-index: 2; }
.svc-featured .svc-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--c-secondary), var(--c-amber));
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.svc-featured .svc-icon { background: rgba(251,191,36,.15); color: var(--c-amber); }
.svc-featured h5 { color: #fff; font-size: 26px; }
.svc-featured p { color: rgba(255,255,255,.75); font-size: 15px; }
.svc-featured .svc-meta { border-top-color: rgba(255,255,255,.12); color: rgba(255,255,255,.7); }
.svc-featured .svc-meta b { color: var(--c-amber); }
.svc-featured .svc-meta .arrow { background: rgba(255,255,255,.1); color: var(--c-amber); }

/* Express card decorations */
.svc-featured .live-pulse {
    position: absolute;
    top: 26px; right: 26px;
    background: rgba(34,197,94,.18);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,.4);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 10px; font-weight: 700;
    letter-spacing: .6px; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
    z-index: 4;
}
.svc-featured .live-pulse .dot {
    width: 6px; height: 6px;
    background: #4ade80; border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(74,222,128,.3);
    animation: pulse-dot 1.4s infinite;
}
.svc-featured .speed-lines {
    position: absolute;
    right: 0; top: 50%;
    width: 60%; height: 100px;
    transform: translateY(-50%);
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.svc-featured .speed-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(251,191,36,.7));
    border-radius: 2px;
    animation: speed-streak 1.6s linear infinite;
    opacity: 0;
}
@keyframes speed-streak {
    0%   { transform: translateX(120%); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateX(-150%); opacity: 0; }
}
.svc-featured .deco-truck {
    position: absolute;
    right: -10px; bottom: 14px;
    width: 200px; height: 110px;
    opacity: .14;
    z-index: 0;
    pointer-events: none;
}
.svc-featured .deco-truck .wheel-spin {
    transform-origin: center;
    transform-box: fill-box;
    animation: wheel-spin .35s linear infinite;
}
.svc-featured .deco-bolts {
    position: absolute;
    top: 80px; right: 80px;
    pointer-events: none;
    z-index: 1;
}
.svc-featured .deco-bolts i {
    color: var(--c-amber);
    font-size: 10px;
    margin-right: 8px;
    opacity: .35;
    animation: bolt-flicker 1.8s ease-in-out infinite;
}
.svc-featured .deco-bolts i:nth-child(2) { animation-delay: .3s; font-size: 14px; }
.svc-featured .deco-bolts i:nth-child(3) { animation-delay: .6s; font-size: 8px; }
@keyframes bolt-flicker { 0%,100%{opacity:.25;transform:scale(1);} 50%{opacity:.65;transform:scale(1.15);} }

/* ============== WHY US (FEATURE GRID) ============== */
.feat-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    transition: all .3s ease;
    display: flex; gap: 16px;
}
.feat-card:hover { border-color: var(--c-secondary); box-shadow: var(--c-shadow-sm); }
.feat-card .feat-icon {
    width: 48px; height: 48px;
    background: var(--c-cream);
    color: var(--c-secondary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.feat-card h6 { font-size: 15px; font-weight: 700; color: var(--c-primary); margin-bottom: 6px; letter-spacing: -0.01em; }
.feat-card p { font-size: 13.5px; color: var(--c-text-muted); margin: 0; line-height: 1.55; }

/* ============== HUB NETWORK ============== */
.hub-network {
    background: linear-gradient(135deg, #0a1d3a 0%, #0f2647 100%);
    border-radius: 22px;
    padding: 38px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hub-network::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 0%, transparent 90%);
}
.hub-network-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; }
.hub-map { position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: none; margin: 0 auto; transform: scale(0.92); transform-origin: center; }
.hub-map svg { width: 100%; height: 100%; }
.hub-pin {
    position: absolute;
    width: 14px; height: 14px;
    background: var(--c-amber);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(251,191,36,.2), 0 0 0 10px rgba(251,191,36,.1);
    animation: hub-pulse 2.5s infinite;
    transform: translate(-50%, -50%);
    z-index: 3;
}
@keyframes hub-pulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(251,191,36,.2), 0 0 0 10px rgba(251,191,36,.1); }
    50% { box-shadow: 0 0 0 8px rgba(251,191,36,.3), 0 0 0 18px rgba(251,191,36,.05); }
}
.hub-label {
    position: absolute;
    background: rgba(255,255,255,.95);
    color: var(--c-primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    transform: translate(-50%, calc(-100% - 14px));
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    pointer-events: none;
    white-space: nowrap;
    z-index: 4;
}
.hub-route { stroke: rgba(251,191,36,.4); stroke-width: 1.5; stroke-dasharray: 4 4; fill: none; }
.hub-route-active {
    stroke: var(--c-amber);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: route-draw 4s ease-in-out infinite;
}
@keyframes route-draw { 0%{stroke-dashoffset:800;} 60%,100%{stroke-dashoffset:0;} }
.hub-parcel { fill: var(--c-secondary); }
.hub-content h2 { color: #fff; font-size: 2rem; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 13px; }
.hub-content h2 .italic { font-family: 'Fraunces', serif; font-style: italic; color: var(--c-amber); font-weight: 600; }
.hub-content p { color: rgba(255,255,255,.7); font-size: 13px; margin-bottom: 22px; }
.hub-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hub-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 14px; border-radius: 12px; }
.hub-stat .num { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--c-amber); line-height: 1; }
.hub-stat .lbl { font-size: 9px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .6px; font-weight: 700; margin-top: 5px; }
@media (max-width: 991px) {
    .hub-network-grid { grid-template-columns: 1fr; }
    .hub-network { padding: 26px 20px; }
    .hub-content h2 { font-size: 1.6rem; }
}

/* ============== WORLD MAP + FLYING PLANE (Why Us section) ============== */
.world-card {
    position: relative;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-soft) 100%);
    border-radius: 24px;
    padding: 36px;
    color: #fff;
    overflow: hidden;
    height: 100%;
    min-height: 440px;
}
.world-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 0%, transparent 90%);
}
.world-card-eyebrow {
    position: relative; z-index: 2;
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--c-amber);
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    margin-bottom: 12px;
}
.world-card-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--c-amber); }
.world-card h3 { color: #fff; font-size: 1.6rem; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 8px; position: relative; z-index: 2; }
.world-card h3 .italic { font-family: 'Fraunces', serif; font-style: italic; color: var(--c-amber); font-weight: 600; }
.world-card p { color: rgba(255,255,255,.7); font-size: 13.5px; margin-bottom: 18px; position: relative; z-index: 2; }
.world-svg-wrap { position: relative; z-index: 2; width: 100%; aspect-ratio: 2 / 1.1; }
.world-svg-wrap svg { width: 100%; height: 100%; }
.world-dot { fill: rgba(255,255,255,.18); }
.world-pin { fill: var(--c-amber); }
.world-pin-pulse { fill: var(--c-amber); transform-origin: center; transform-box: fill-box; animation: pin-pulse 2.4s infinite; }
.flight-path { fill: none; stroke: rgba(251,191,36,.5); stroke-width: 1.5; stroke-dasharray: 4 4; stroke-linecap: round; }
.flight-path-active {
    fill: none; stroke: var(--c-amber); stroke-width: 2; stroke-linecap: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: flight-draw 6s ease-in-out infinite;
}
@keyframes flight-draw { 0%{stroke-dashoffset:600;} 70%,100%{stroke-dashoffset:0;opacity:1;} }
.flying-plane {
    transform-box: fill-box;
    transform-origin: center;
    animation: plane-blink 2s ease-in-out infinite;
}
@keyframes plane-blink { 0%,100%{opacity:1;} 50%{opacity:.7;} }

/* World hub mini-stats below map */
.world-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
    margin-top: 16px;
    position: relative; z-index: 2;
}
.world-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 10px 12px; border-radius: 12px; text-align: center; }
.world-stat .num { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; color: var(--c-amber); line-height: 1; }
.world-stat .lbl { font-size: 10px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px; font-weight: 700; margin-top: 4px; }

/* ============== LIVE ROUTE (Track page) ============== */
.live-route-card {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-soft) 100%);
    border-radius: 22px;
    padding: 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}
.live-route-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 90%);
}
.live-route-h { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.live-route-h h5 { color: #fff; font-size: 18px; margin: 0; display: flex; align-items: center; gap: 10px; }
.live-route-h h5 i { color: var(--c-amber); }
.live-route-h .live-pill {
    background: rgba(34,197,94,.15);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,.35);
    font-size: 11px; font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-flex; align-items: center; gap: 6px;
}
.live-route-h .live-pill .dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 3px rgba(74,222,128,.3); animation: pulse-dot 1.4s infinite; }
/* Live pill special state overrides */
.live-route-h .live-pill.attempted { background: rgba(239,68,68,.18) !important; color: #fca5a5 !important; border-color: rgba(239,68,68,.4) !important; }
.live-route-h .live-pill.attempted .dot { background: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,.3) !important; animation: none !important; }
.live-route-h .live-pill.on-hold   { background: rgba(245,158,11,.18) !important; color: #fcd34d !important; border-color: rgba(245,158,11,.4) !important; }
.live-route-h .live-pill.on-hold   .dot { background: #f59e0b !important; box-shadow: 0 0 0 3px rgba(245,158,11,.3) !important; animation: none !important; }
.live-route-h .live-pill.returned  { background: rgba(139,92,246,.18) !important; color: #c4b5fd !important; border-color: rgba(139,92,246,.4) !important; }
.live-route-h .live-pill.returned  .dot { background: #8b5cf6 !important; box-shadow: 0 0 0 3px rgba(139,92,246,.3) !important; animation: none !important; }
/* Special status prominent banner */
.special-status-banner { display: flex; align-items: center; gap: 18px; padding: 18px 24px; border-radius: 16px; border-left: 4px solid; }
.special-status-banner .ssb-icon { font-size: 30px; flex-shrink: 0; }
.special-status-banner .ssb-title { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.special-status-banner .ssb-sub { font-size: 13px; color: var(--c-text-muted); line-height: 1.55; }
.special-status-banner.attempted { background: rgba(239,68,68,.07); border-color: #ef4444; }
.special-status-banner.attempted .ssb-icon, .special-status-banner.attempted .ssb-title { color: #ef4444; }
.special-status-banner.on-hold   { background: rgba(245,158,11,.07); border-color: #f59e0b; }
.special-status-banner.on-hold   .ssb-icon, .special-status-banner.on-hold   .ssb-title { color: #d97706; }
.special-status-banner.returned  { background: rgba(139,92,246,.07); border-color: #8b5cf6; }
.special-status-banner.returned  .ssb-icon, .special-status-banner.returned  .ssb-title { color: #8b5cf6; }
.live-route-svg-wrap { position: relative; z-index: 2; width: 100%; aspect-ratio: 5 / 2; background: rgba(255,255,255,.03); border-radius: 16px; overflow: hidden; }
.live-route-svg-wrap svg { width: 100%; height: 100%; display: block; }
.lr-path-bg { fill: none; stroke: rgba(255,255,255,.18); stroke-width: 3; stroke-dasharray: 6 6; }
.lr-path-fg {
    fill: none; stroke: url(#lrGrad); stroke-width: 4; stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 400;
    animation: lr-draw 5s ease-in-out infinite;
}
@keyframes lr-draw { 0%{stroke-dashoffset:1000;} 60%,100%{stroke-dashoffset:200;} }
.lr-pin { fill: var(--c-amber); }
.lr-pin-pulse { fill: var(--c-amber); transform-origin: center; transform-box: fill-box; animation: pin-pulse 2s infinite; }
.lr-truck-icon {
    transform-box: fill-box;
    transform-origin: center;
    offset-path: path("M 80 220 Q 240 60 420 130 T 720 80");
    offset-rotate: auto;
    animation: lr-truck-move 7s ease-in-out infinite;
}
@keyframes lr-truck-move { 0%{offset-distance:0%;} 100%{offset-distance:65%;} }
.lr-city-tag {
    position: absolute;
    background: rgba(255,255,255,.96);
    color: var(--c-primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0,0,0,.2);
    display: flex; align-items: center; gap: 6px;
    pointer-events: none;
    z-index: 4;
}
.lr-city-tag i { color: var(--c-secondary); font-size: 11px; }
.lr-city-tag.origin { top: 50%; left: 8%; transform: translateY(-50%); }
.lr-city-tag.dest { top: 22%; right: 6%; }
.lr-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; position: relative; z-index: 2; }
.lr-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 14px 18px; }
.lr-stat .num { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--c-amber); line-height: 1; }
.lr-stat .lbl { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .6px; font-weight: 700; margin-top: 6px; }

@media (max-width: 768px) {
    .lr-stats { grid-template-columns: 1fr; }
    .lr-city-tag { font-size: 10px; padding: 4px 10px; }
}

/* ============== HOW IT WORKS ============== */
.steps-wrap { position: relative; margin-top: 60px; }
.steps-line {
    position: absolute;
    top: 38px; left: 12%; right: 12%;
    height: 2px;
    background-image: linear-gradient(to right, var(--c-border-strong) 50%, transparent 50%);
    background-size: 12px 2px;
    background-repeat: repeat-x;
    z-index: 1;
}
.steps-truck {
    position: absolute;
    top: 22px; left: 12%;
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--c-secondary), var(--c-secondary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(249,115,22,.45);
    animation: travel 6s linear infinite;
    z-index: 3;
}
@keyframes travel { 0% { left: 12%; } 100% { left: calc(88% - 40px); } }
@keyframes travel-mobile {
    0%   { top: 0px; }
    33%  { top: 90px; }
    66%  { top: 180px; }
    99%  { top: 270px; }
    100% { top: 0px; }
}
.step-d { text-align: center; position: relative; z-index: 2; }
.step-circle {
    width: 78px; height: 78px;
    background: #fff;
    border: 2.5px solid var(--c-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: var(--c-primary);
    font-size: 26px;
    transition: all .4s cubic-bezier(.2,.8,.2,1);
    position: relative;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.step-d:hover .step-circle, .step-circle.glow {
    border-color: var(--c-secondary);
    background: linear-gradient(135deg, #fff8ec, #fef3c7);
    color: var(--c-secondary);
    box-shadow: 0 0 0 8px rgba(249,115,22,.15), 0 16px 36px rgba(249,115,22,.28);
    transform: scale(1.08);
}
@keyframes step-glow-lead {
    0%, 6% {
        border-color: var(--c-secondary);
        background: linear-gradient(135deg, #fff8ec, #fef3c7);
        color: var(--c-secondary);
        box-shadow: 0 0 0 8px rgba(249,115,22,.18), 0 16px 36px rgba(249,115,22,.3);
        transform: scale(1.08);
    }
    16%, 100% {
        border-color: var(--c-border); background: #fff; color: var(--c-primary);
        box-shadow: none; transform: scale(1);
    }
}
@keyframes step-glow-tail {
    0%, 84% {
        border-color: var(--c-border); background: #fff; color: var(--c-primary);
        box-shadow: none; transform: scale(1);
    }
    94%, 100% {
        border-color: var(--c-secondary);
        background: linear-gradient(135deg, #fff8ec, #fef3c7);
        color: var(--c-secondary);
        box-shadow: 0 0 0 8px rgba(249,115,22,.18), 0 16px 36px rgba(249,115,22,.3);
        transform: scale(1.08);
    }
}
.steps-wrap .row > div:nth-child(1) .step-circle { animation-name: step-glow-lead; animation-delay: 0s; }
.steps-wrap .row > div:nth-child(2) .step-circle { animation-name: step-glow-lead; animation-delay: -4s; }
.steps-wrap .row > div:nth-child(3) .step-circle { animation-name: step-glow-lead; animation-delay: -2s; }
.steps-wrap .row > div:nth-child(4) .step-circle { animation-name: step-glow-tail; animation-delay: 0s; }
.step-num {
    position: absolute;
    top: -8px; right: -8px;
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-soft));
    color: var(--c-amber);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 800;
    border: 2px solid #fff;
}
.step-d h6 { font-size: 16px; font-weight: 700; color: var(--c-primary); margin-bottom: 6px; letter-spacing: -0.01em; }
.step-d p { font-size: 13px; color: var(--c-text-muted); margin: 0; line-height: 1.55; padding: 0 12px; }

/* ============== TESTIMONIALS V2 ============== */
.test-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 22px;
    padding: 32px;
    height: 100%;
    position: relative;
    transition: all .35s cubic-bezier(.2,.8,.2,1);
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--c-shadow); }
.test-card .quote-mark {
    position: absolute; top: 24px; right: 28px;
    font-family: 'Fraunces', serif;
    font-size: 80px;
    color: var(--c-cream);
    line-height: 1;
    font-weight: 700;
}
.test-card .stars { color: var(--c-amber); font-size: 14px; margin-bottom: 16px; }
.test-card blockquote {
    font-size: 16px;
    color: var(--c-text);
    line-height: 1.65;
    font-weight: 500;
    margin: 0 0 24px;
    position: relative; z-index: 2;
}
.test-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--c-border); }
.test-avatar {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-soft));
    color: var(--c-amber);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px;
    font-family: 'Fraunces', serif;
}
.test-author .name { font-size: 14.5px; font-weight: 700; color: var(--c-primary); }
.test-author .role { font-size: 12.5px; color: var(--c-text-muted); }

/* ============== CTA BAND ============== */
.cta-band {
    background: linear-gradient(135deg, #0a1d3a 0%, #0f2647 50%, #1a3a6b 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(251,191,36,.08), transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(249,115,22,.1), transparent 40%);
}
.cta-band::after {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 60% 100% at 50% 50%, #000 0%, transparent 100%);
}
.cta-band .container { position: relative; z-index: 2; text-align: center; }
.cta-band h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.cta-band h2 .italic { font-family: 'Fraunces', serif; font-style: italic; color: var(--c-amber); font-weight: 600; }
.cta-band p.lead { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 500px; margin: 0 auto 24px; }

/* ====== CUSTOMER LIVE TICKER ====== */
.cust-ticker {
    display: flex;
    align-items: center;
    background: #0f172a;
    color: #e2e8f0;
    height: 38px;
    overflow: hidden;
    position: relative;
    top: auto;
    z-index: 2;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.cust-ticker-badge {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    background: #3b82f6;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 2px 12px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.cust-ticker-badge i { animation: custTickerPulse 1.2s ease-in-out infinite; }
.cust-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: custTickerScroll 35s linear infinite;
    will-change: transform;
    padding-left: 20px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.cust-ticker.paused .cust-ticker-track { animation-play-state: paused; }
@keyframes custTickerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}
@keyframes custTickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.cust-ticker-event {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    padding: 0 30px 0 0;
    gap: 4px;
    color: #cbd5e1;
}
.cust-ticker-event strong { color: #fff; font-weight: 600; }
.cust-ticker-time { font-size: 10px; color: #475569; margin-left: 8px; }
.cust-ticker-pause {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: #475569;
    width: 38px;
    height: 38px;
    cursor: pointer;
    transition: color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.cust-ticker-pause:hover { color: #fff; }

/* ====== ANNOUNCEMENT BAR ====== */
.announcement-bar {
    background: linear-gradient(90deg, #0a1d3a, #1a3a6b);
    color: rgba(255,255,255,.9);
    font-size: 13px;
    padding: 9px 0;
    position: relative;
    z-index: 1040;
    text-align: center;
}
.ann-link { color: #fbbf24; text-decoration: none; font-weight: 700; margin-left: 6px; }
.ann-link:hover { color: #f59e0b; text-decoration: underline; }
.ann-close { background: none; border: none; color: rgba(255,255,255,.45); cursor: pointer; font-size: 13px; padding: 0 0 0 16px; line-height: 1; vertical-align: middle; }
.ann-close:hover { color: #fff; }

/* ====== TRUST BADGES ====== */
.trust-band { background: #fff; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); padding: 40px 0; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--c-bg); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; color: var(--c-navy); }
.trust-item h6 { font-size: 14px; font-weight: 700; margin: 0 0 2px; color: var(--c-navy); }
.trust-item p { font-size: 12px; color: var(--c-muted); margin: 0; line-height: 1.4; }

/* ====== LIVE STATS STRIP ====== */
.live-stats-strip { background: #0f2647; color: #fff; padding: 0; position: relative; overflow: hidden; }
.live-stats-strip::before { content:''; position:absolute; inset:0; background: repeating-linear-gradient(90deg,rgba(255,255,255,.025) 0,rgba(255,255,255,.025) 1px,transparent 1px,transparent 60px); pointer-events:none; }
.live-stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 28px 16px;
    border-right: 1px solid rgba(255,255,255,.07);
}
.live-stat-item:last-child { border-right: none; }
.live-stat-icon { font-size: 18px; color: rgba(251,191,36,.5); margin-bottom: 8px; }
.live-stat-num { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: #fbbf24; line-height: 1; margin-bottom: 6px; }
.live-stat-label { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.live-stat-sub { font-size: 11px; color: rgba(255,255,255,.45); line-height: 1.3; }
.live-pulse-dot { display: inline-block; width: 7px; height: 7px; background: #22c55e; border-radius: 50%; margin-right: 5px; vertical-align: middle; animation: livePulse 1.4s ease-in-out infinite; }
@keyframes livePulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.35;transform:scale(1.4);} }
@media (max-width: 767px) {
    .live-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 20px 12px; }
    .live-stat-item:last-child { border-bottom: none; }
    .live-stat-sub { display: none; }
}

/* ====== B2B SECTION ====== */
.b2b-section { background: linear-gradient(135deg,#0a1d3a 0%,#0f2647 60%,#1e3a5f 100%); padding: 80px 0; position: relative; overflow: hidden; color: #fff; }
.b2b-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 60% at 80% 50%,rgba(251,191,36,.07),transparent); pointer-events:none; }
.b2b-badge { display:inline-flex; align-items:center; gap:6px; background:rgba(251,191,36,.15); border:1px solid rgba(251,191,36,.25); color:#fbbf24; font-size:11px; font-weight:700; letter-spacing:.06em; padding:4px 14px; border-radius:20px; margin-bottom:16px; text-transform:uppercase; }
.b2b-feature { display:flex; align-items:flex-start; gap:14px; margin-bottom:22px; }
.b2b-feature-icon { width:42px; height:42px; border-radius:10px; background:rgba(251,191,36,.12); border:1px solid rgba(251,191,36,.18); display:flex; align-items:center; justify-content:center; font-size:16px; color:#fbbf24; flex-shrink:0; }
.b2b-feature h6 { color:#fff; font-size:14px; font-weight:700; margin:0 0 3px; }
.b2b-feature p { color:rgba(255,255,255,.55); font-size:13px; margin:0; line-height:1.5; }
.b2b-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09); border-radius:16px; padding:28px; height:100%; }
.b2b-card h5 { color:#fbbf24; font-size:15px; font-weight:700; margin-bottom:12px; }
.b2b-card p { color:rgba(255,255,255,.6); font-size:13px; line-height:1.6; }
.b2b-stat { font-size: clamp(2rem,4vw,2.8rem); font-weight:800; color:#fff; line-height:1; margin-bottom:4px; }
.b2b-stat small { font-size:1rem; color:#fbbf24; }

/* ====== COMPARISON TABLE ====== */
.compare-section { background: var(--c-bg); padding: 80px 0; }
.compare-table-wrap { background:#fff; border-radius:16px; border:1px solid var(--c-border); overflow:hidden; box-shadow:0 4px 24px rgba(0,0,0,.06); }
.compare-table { width:100%; border-collapse:collapse; font-size:14px; }
.compare-table th { padding:18px 20px; text-align:center; font-size:13px; font-weight:700; border-bottom:2px solid var(--c-border); background:var(--c-bg); color:var(--c-navy); }
.compare-table th.ours { background:var(--c-navy); color:#fff; }
.compare-table th:first-child { text-align:left; }
.compare-table td { padding:14px 20px; text-align:center; border-bottom:1px solid var(--c-border); color:var(--c-text); }
.compare-table td:first-child { text-align:left; font-weight:500; color:var(--c-navy); }
.compare-table tr:last-child td { border-bottom:none; }
.compare-table tbody tr:hover td { background:rgba(15,38,71,.02); }
.compare-table td.ours { background:rgba(15,38,71,.04); font-weight:600; color:var(--c-navy); }
.compare-check { color:#16a34a; font-size:17px; }
.compare-cross { color:#dc2626; font-size:17px; }
.compare-partial { color:#f59e0b; font-weight:600; font-size:12px; }
.compare-head-tag { display:block; font-size:10px; font-weight:600; color:#fbbf24; margin-top:3px; text-transform:uppercase; letter-spacing:.06em; }

/* ====== APP BANNER ====== */
.app-banner { background:linear-gradient(135deg,#fff 0%,var(--c-bg) 100%); padding:60px 0; border-top:1px solid var(--c-border); border-bottom:1px solid var(--c-border); }
.app-badge-btn { display:inline-flex; align-items:center; gap:10px; background:#0f172a; color:#fff; border-radius:10px; padding:10px 20px; text-decoration:none; transition:transform .2s,box-shadow .2s; margin-right:10px; margin-bottom:10px; }
.app-badge-btn:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.18); color:#fff; }
.app-badge-btn i { font-size:24px; }
.app-badge-text { line-height:1.25; }
.app-badge-text small { font-size:10px; color:rgba(255,255,255,.55); display:block; }
.app-badge-text span { font-size:14px; font-weight:700; }
.app-phone-wrap { position:relative; text-align:center; }
.app-phone { background:linear-gradient(160deg,#0f2647,#1a3a6b); border-radius:28px; border:3px solid rgba(255,255,255,.18); padding:20px 16px; max-width:180px; margin:0 auto; box-shadow:0 28px 60px rgba(15,38,71,.35); position:relative; z-index:1; }
.app-phone-inner { background:#fff; border-radius:16px; padding:14px; }
.app-track-row { display:flex; align-items:center; gap:8px; margin-bottom:8px; font-size:10px; font-weight:600; color:var(--c-navy); }
.app-track-bar { height:5px; border-radius:3px; background:var(--c-border); flex:1; overflow:hidden; }
.app-track-fill { height:100%; border-radius:3px; }
.app-phone-glow { position:absolute; width:120px; height:120px; border-radius:50%; background:rgba(15,38,71,.15); filter:blur(30px); bottom:-20px; left:50%; transform:translateX(-50%); z-index:0; }

/* ============== PARTNER MARQUEE ============== */
.partner-band {
    background: #fff;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 36px 0;
    overflow: hidden;
}
.partner-label {
    text-align: center;
    color: var(--c-text-muted);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.partner-marquee {
    display: flex;
    gap: 60px;
    animation: marquee-scroll 28s linear infinite;
    width: max-content;
}
.partner-band:hover .partner-marquee { animation-play-state: paused; }
.partner-logo {
    flex-shrink: 0;
    color: var(--c-text-muted);
    opacity: .55;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .25s ease;
    white-space: nowrap;
    text-decoration: none;
}
.partner-logo:hover { opacity: 1; color: var(--c-primary); }
.plogo-img {
    height: 38px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    transition: transform .25s ease;
}
.partner-logo:hover .plogo-img { transform: scale(1.05); }
.partner-logo.plogo-text { font-weight: 800; font-size: 18px; color: var(--c-primary); }
.partner-logo.plogo-text:hover { color: var(--c-secondary); }
.plogo-fb { font-weight: 800; font-size: 15px; color: var(--c-primary); letter-spacing: -0.02em; white-space: nowrap; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============== TICKER ============== */
.ticker {
    background: var(--c-primary-soft);
    color: rgba(255,255,255,.85);
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 10px 0;
    font-size: 12.5px;
}
.ticker-track { display: flex; gap: 40px; animation: ticker-scroll 36s linear infinite; white-space: nowrap; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; }
.ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-success); box-shadow: 0 0 0 3px rgba(22,163,74,.25); }
.ticker-item b { color: var(--c-amber); font-weight: 600; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============== PAGE HERO (inner pages) ============== */
.page-hero {
    background: radial-gradient(1000px 400px at 30% 0%, #1e3a6b 0%, transparent 60%),
                linear-gradient(135deg, #0a1d3a 0%, #0f2647 60%, #1a3a6b 100%) !important;
    padding: 50px 0 !important;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 100%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
    color: #fff !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 12px !important;
    font-weight: 800;
}
.page-hero h1 .italic { font-family: 'Fraunces', serif; font-style: italic; color: var(--c-amber); font-weight: 600; }
.page-hero p { color: rgba(255,255,255,.7) !important; font-size: 1.05rem; margin: 0; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.65) !important; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.85) !important; }

/* ============== TRACK PAGE V2 ============== */
.tracking-hero {
    background: radial-gradient(1000px 400px at 30% 0%, #1e3a6b 0%, transparent 60%),
                linear-gradient(135deg, #0a1d3a 0%, #0f2647 60%, #1a3a6b 100%) !important;
    padding: 70px 0 130px !important;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.tracking-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 100%);
    pointer-events: none;
}
.tracking-hero .container { position: relative; z-index: 2; }
.tracking-hero h1 {
    color: #fff !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 12px !important;
    font-weight: 800;
}
.tracking-hero p { color: rgba(255,255,255,.7) !important; }
.tracking-hero .breadcrumb-item a { color: rgba(255,255,255,.65) !important; }
.tracking-hero .breadcrumb-item.active { color: rgba(255,255,255,.85) !important; }
.track-form-card {
    background: #fff !important;
    border-radius: 24px !important;
    padding: 28px !important;
    box-shadow: var(--c-shadow-lg) !important;
    margin-top: -80px !important;
    border: 1px solid var(--c-border);
    z-index: 5;
}
.track-form-card .form-control,
.track-form-card .form-control-lg {
    border: 2px solid var(--c-border) !important;
    border-radius: 12px !important;
    height: 60px !important;
    font-size: 17px !important;
    padding: 0 22px !important;
    background: var(--c-bg) !important;
    font-family: 'JetBrains Mono', monospace !important;
    letter-spacing: .5px !important;
    font-weight: 600;
}
.track-form-card .form-control:focus {
    outline: none;
    border-color: var(--c-secondary) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(249,115,22,.1) !important;
}

/* AWB Strip */
.awb-strip {
    background: linear-gradient(135deg, #fff 0%, var(--c-cream) 100%);
    border: 1px solid var(--c-border);
    border-radius: 22px;
    padding: 24px 28px;
    margin-bottom: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 18px;
    position: relative;
    overflow: hidden;
}
.awb-strip::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
    background: linear-gradient(180deg, var(--c-secondary), var(--c-amber));
}
.awb-num { font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 600; color: var(--c-primary); letter-spacing: 1px; }
.awb-label { font-size: 11px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .6px; font-weight: 700; margin-bottom: 4px; }
.status-badge-d {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--c-accent), #0284c7);
    color: #fff;
    padding: 9px 18px;
    border-radius: 30px;
    font-weight: 700; font-size: 13px;
    box-shadow: 0 8px 20px rgba(14,165,233,.3);
}
.status-badge-d .dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulse-dot 1.5s infinite; }
.status-badge-d.delivered { background: linear-gradient(135deg, var(--c-success), #15803d); box-shadow: 0 8px 20px rgba(22,163,74,.35); }
.status-badge-d.cancelled { background: linear-gradient(135deg, #ef4444, #b91c1c); box-shadow: 0 8px 20px rgba(239,68,68,.35); }
.status-badge-d.attempted { background: linear-gradient(135deg, #f97316, #dc2626); box-shadow: 0 8px 20px rgba(239,68,68,.35); }
.status-badge-d.on-hold   { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 8px 20px rgba(245,158,11,.35); }
.status-badge-d.returned  { background: linear-gradient(135deg, #8b5cf6, #6d28d9); box-shadow: 0 8px 20px rgba(139,92,246,.35); }
.eta-block { text-align: right; }
.eta-block .eta-num { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700; color: var(--c-primary); line-height: 1; }
.eta-block .eta-num .small { font-size: 14px; color: var(--c-text-muted); }
.eta-block .eta-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--c-text-muted); font-weight: 700; margin-top: 4px; }

/* Status Progress */
.status-progress-d { position: relative; margin: 40px 8px 24px; padding: 20px 0 0; }
.status-line { position: absolute; top: 50px; left: 30px; right: 30px; height: 4px; background: var(--c-border); border-radius: 4px; }
.status-line-fill {
    position: absolute; top: 50px; left: 30px; height: 4px;
    background: linear-gradient(90deg, var(--c-success), var(--c-accent));
    border-radius: 4px;
    transition: width 1s ease;
}
.status-truck {
    position: absolute; top: 30px;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--c-secondary), var(--c-secondary-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
    box-shadow: 0 12px 28px rgba(249,115,22,.5), 0 0 0 6px rgba(249,115,22,.15);
    z-index: 5;
    animation: bob 2.4s ease-in-out infinite;
    transition: left 1s ease;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.status-progress-d.delivered .status-truck { background: linear-gradient(135deg, var(--c-success), #15803d) !important; box-shadow: 0 12px 28px rgba(22,163,74,.5), 0 0 0 6px rgba(22,163,74,.15) !important; }
.status-truck.attempted { background: linear-gradient(135deg, #f97316, #ef4444) !important; box-shadow: 0 12px 28px rgba(239,68,68,.5), 0 0 0 6px rgba(239,68,68,.15) !important; }
.status-truck.on-hold   { background: linear-gradient(135deg, #f59e0b, #d97706) !important; box-shadow: 0 12px 28px rgba(245,158,11,.5), 0 0 0 6px rgba(245,158,11,.15) !important; animation: none !important; }
.status-truck.returned  { background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important; box-shadow: 0 12px 28px rgba(139,92,246,.5), 0 0 0 6px rgba(139,92,246,.15) !important; }
.status-steps { display: flex; justify-content: space-between; position: relative; z-index: 2; padding: 0; }
.s-step { flex: 1; text-align: center; position: relative; }
.s-step .dot-circle {
    width: 60px; height: 60px;
    background: #fff;
    border: 3px solid var(--c-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    color: var(--c-text-muted);
    font-size: 20px;
    transition: all .3s ease;
    position: relative; z-index: 3;
}
.s-step.done .dot-circle { background: var(--c-success); border-color: var(--c-success); color: #fff; box-shadow: 0 8px 20px rgba(22,163,74,.3); }
.s-step.current .dot-circle {
    border-color: var(--c-secondary);
    color: var(--c-secondary);
    background: #fff;
    box-shadow: 0 0 0 6px rgba(249,115,22,.15);
    animation: dot-glow 2s infinite;
}
@keyframes dot-glow {
    0%,100% { box-shadow: 0 0 0 6px rgba(249,115,22,.15); }
    50% { box-shadow: 0 0 0 12px rgba(249,115,22,.05); }
}
.s-step .lbl { font-size: 12.5px; font-weight: 700; color: var(--c-text-muted); margin-top: 12px; letter-spacing: -0.01em; }
.s-step.done .lbl, .s-step.current .lbl { color: var(--c-primary); }
.s-step .time { font-size: 11px; color: var(--c-text-muted); margin-top: 4px; }
/* Special status step dots */
.s-step.current.attempted .dot-circle { background: #fff !important; border-color: #ef4444 !important; color: #ef4444 !important; box-shadow: 0 0 0 6px rgba(239,68,68,.15) !important; animation: dot-glow-red 2s infinite !important; }
.s-step.current.on-hold   .dot-circle { background: #fff !important; border-color: #f59e0b !important; color: #f59e0b !important; box-shadow: 0 0 0 6px rgba(245,158,11,.15) !important; animation: none !important; }
.s-step.current.returned  .dot-circle { background: #fff !important; border-color: #8b5cf6 !important; color: #8b5cf6 !important; box-shadow: 0 0 0 6px rgba(139,92,246,.15) !important; animation: dot-glow-purple 2s infinite !important; }
@keyframes dot-glow-red    { 0%,100%{box-shadow:0 0 0 6px rgba(239,68,68,.15);}  50%{box-shadow:0 0 0 12px rgba(239,68,68,.05);} }
@keyframes dot-glow-purple { 0%,100%{box-shadow:0 0 0 6px rgba(139,92,246,.15);} 50%{box-shadow:0 0 0 12px rgba(139,92,246,.05);} }
/* Special status labels */
.s-step.current.attempted .lbl { color: #ef4444 !important; }
.s-step.current.on-hold   .lbl { color: #f59e0b !important; }
.s-step.current.returned  .lbl { color: #8b5cf6 !important; }

/* Detail blocks */
.d-block {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 18px;
    height: 100%;
}
.d-block .d-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--c-text-muted); font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.d-block .d-lbl i { color: var(--c-secondary); }
.d-block .d-row { font-size: 14px; color: var(--c-text); margin-bottom: 6px; }
.d-block .d-row b { color: var(--c-primary); font-weight: 600; }
.d-block .d-row:last-child { margin-bottom: 0; }

.stat-pill {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    height: 100%;
}
.stat-pill .num { font-family: 'Fraunces', serif; font-size: 24px; color: var(--c-primary); font-weight: 700; line-height: 1; }
.stat-pill .lbl { font-size: 11px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .6px; font-weight: 700; margin-top: 6px; }

/* R-Card (track sections) */
.r-card { background: #fff; border: 1px solid var(--c-border); border-radius: 22px; padding: 28px; box-shadow: var(--c-shadow-sm); }
.r-card-h {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px; flex-wrap: wrap; gap: 14px;
}
.r-card-h h5 { font-size: 18px; color: var(--c-primary); margin: 0; display: flex; align-items: center; gap: 10px; }
.r-card-h h5 i { color: var(--c-secondary); }

/* ROUTE MAP CARD */
.route-card {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-soft) 100%);
    border-radius: 22px;
    padding: 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.route-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 0%, transparent 90%);
}
.route-card-h { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.route-card-h h5 { color: #fff; font-size: 18px; margin: 0; display: flex; align-items: center; gap: 10px; }
.route-card-h h5 i { color: var(--c-amber); }
.route-card-h .live-pill {
    background: rgba(34,197,94,.15);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,.35);
    font-size: 11px; font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-flex; align-items: center; gap: 6px;
}
.route-card-h .live-pill .dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 3px rgba(74,222,128,.3); animation: pulse-dot 1.4s infinite; }
.route-svg { position: relative; z-index: 2; width: 100%; aspect-ratio: 5 / 2; background: rgba(255,255,255,.03); border-radius: 16px; overflow: hidden; }
.route-svg svg { width: 100%; height: 100%; display: block; }
.route-path-bg { fill: none; stroke: rgba(255,255,255,.15); stroke-width: 3; stroke-dasharray: 6 6; }
.route-path-fg { fill: none; stroke: url(#routeGrad); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 1000; stroke-dashoffset: 400; animation: route-fg-draw 4s ease-in-out infinite; }
@keyframes route-fg-draw { 0% { stroke-dashoffset: 1000; } 50% { stroke-dashoffset: 200; } 100% { stroke-dashoffset: 200; } }
.pin-marker { fill: var(--c-amber); }
.pin-pulse { fill: var(--c-amber); opacity: .35; transform-origin: center; transform-box: fill-box; animation: pin-pulse 2s infinite; }
@keyframes pin-pulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(3); opacity: 0; } }
.moving-parcel {
    transform-box: fill-box;
    transform-origin: center;
    offset-path: path("M 80 220 Q 240 60 420 130 T 720 80");
    animation: parcel-move 7s ease-in-out infinite;
}
@keyframes parcel-move { 0% { offset-distance: 0%; } 100% { offset-distance: 65%; } }
.route-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; position: relative; z-index: 2; }
.r-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 14px 18px; }
.r-stat .num { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--c-amber); line-height: 1; }
.r-stat .lbl { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .6px; font-weight: 700; margin-top: 6px; }
.city-tag {
    position: absolute;
    background: rgba(255,255,255,.96);
    color: var(--c-primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0,0,0,.2);
    display: flex; align-items: center; gap: 6px;
    pointer-events: none;
    z-index: 4;
}
.city-tag i { color: var(--c-secondary); font-size: 11px; }
.city-tag.origin { top: 50%; left: 8%; }
.city-tag.dest { top: 22%; right: 6%; }

/* TIMELINE V2 */
.timeline-v2 { position: relative; padding-left: 36px; }
.timeline-v2::before {
    content: '';
    position: absolute;
    left: 12px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--c-success) 0%, var(--c-accent) 50%, var(--c-border) 100%);
    border-radius: 2px;
}
.t-item {
    position: relative;
    padding: 0 0 28px 24px;
    opacity: 0; transform: translateX(-12px);
    animation: t-reveal .6s ease forwards;
}
@keyframes t-reveal { to { opacity: 1; transform: translateX(0); } }
.t-item:nth-child(1) { animation-delay: .1s; }
.t-item:nth-child(2) { animation-delay: .25s; }
.t-item:nth-child(3) { animation-delay: .4s; }
.t-item:nth-child(4) { animation-delay: .55s; }
.t-item:nth-child(5) { animation-delay: .7s; }
.t-item:nth-child(6) { animation-delay: .85s; }
.t-item:nth-child(7) { animation-delay: 1s; }
.t-item:nth-child(8) { animation-delay: 1.15s; }
.t-item::before {
    content: '';
    position: absolute;
    left: -29px; top: 4px;
    width: 14px; height: 14px;
    background: #fff;
    border: 3px solid var(--c-border);
    border-radius: 50%;
    z-index: 2;
}
.t-item.done::before { background: var(--c-success); border-color: var(--c-success); }
.t-item.live::before {
    background: var(--c-secondary);
    border-color: var(--c-secondary);
    box-shadow: 0 0 0 6px rgba(249,115,22,.18);
    animation: dot-glow 2s infinite;
}
.t-item .t-time { font-size: 12px; color: var(--c-text-muted); margin-bottom: 4px; font-family: 'JetBrains Mono', monospace; font-weight: 500; }
.t-item h6 { font-size: 15.5px; color: var(--c-primary); margin-bottom: 6px; font-weight: 700; letter-spacing: -0.01em; }
.t-item .t-loc { font-size: 13.5px; color: var(--c-text); margin-bottom: 4px; }
.t-item .t-loc i { color: var(--c-secondary); margin-right: 6px; font-size: 11px; }
.t-item .t-desc { font-size: 13px; color: var(--c-text-muted); margin: 0; }

/* HELP cards (track) */
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 18px; }
.help-card {
    background: #fff; border: 1px solid var(--c-border); border-radius: 14px;
    padding: 18px; transition: all .25s ease; cursor: pointer;
    transform-style: preserve-3d; will-change: transform;
}
.help-card:hover { border-color: var(--c-secondary); box-shadow: var(--c-shadow-sm); }
.help-card .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--c-cream); color: var(--c-secondary); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.help-card h6 { font-size: 14px; font-weight: 700; color: var(--c-primary); margin-bottom: 4px; }
.help-card p { font-size: 12.5px; color: var(--c-text-muted); margin: 0; }

/* SKELETON SHIMMER */
.skel { background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; border-radius: 10px; color: transparent !important; }
.skel * { visibility: hidden; }
@keyframes shimmer { to { background-position-x: -200%; } }

/* FOOTER V2 */
.main-footer { background: #07182f !important; color: rgba(255,255,255,.65); padding: 80px 0 0 !important; }
.main-footer .footer-top { padding: 0 !important; }
.main-footer h6, .footer-heading { color: #fff !important; font-size: 14px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .8px; padding-bottom: 0 !important; }
.footer-heading::after { display: none !important; }
.main-footer a { color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s ease; }
.main-footer a:hover { color: var(--c-amber); }
.footer-links a::before { content: '' !important; }
.footer-links a:hover { padding-left: 0 !important; color: var(--c-amber) !important; }
.main-footer .footer-brand .brand-logo i { background: linear-gradient(135deg, var(--c-secondary), var(--c-amber)) !important; color: var(--c-primary) !important; }
.main-footer .footer-desc { color: rgba(255,255,255,.55) !important; }
.main-footer .fc-item i { color: var(--c-amber) !important; }
.main-footer .fc-item a, .main-footer .fc-item span { color: rgba(255,255,255,.6) !important; }
.main-footer .fc-item a:hover { color: var(--c-amber) !important; }
.main-footer .social-links a { background: rgba(255,255,255,.06) !important; }
.main-footer .social-links a:hover { background: var(--c-secondary) !important; color: #fff !important; }
.main-footer .newsletter-form .form-control { background: rgba(255,255,255,.06) !important; border-color: rgba(255,255,255,.12) !important; }
.main-footer .newsletter-form .form-control::placeholder { color: rgba(255,255,255,.4) !important; }
.footer-bottom { border-top-color: rgba(255,255,255,.08) !important; margin-top: 60px; padding: 24px 0 !important; }
.footer-bottom-links a { color: rgba(255,255,255,.5) !important; font-size: 13px; }
.footer-bottom-links a:hover { color: var(--c-amber) !important; }

/* hide old separate floats */
.whatsapp-float, .call-float { display: none !important; }

/* ===== SPEED DIAL CONTACT WIDGET ===== */
.speed-dial-wrap {
    position: fixed;
    bottom: 88px; right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Child items container */
.speed-dial-wrap .sd-items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 14px;
    pointer-events: none;
}

/* Each row: label + button */
.speed-dial-wrap .sd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(16px) scale(.85);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}

/* Action buttons */
.speed-dial-wrap .sd-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform .2s ease;
}
.speed-dial-wrap .sd-btn:hover { transform: scale(1.12); color: #fff; }
.speed-dial-wrap .sd-call {
    background: var(--c-primary);
    box-shadow: 0 6px 20px rgba(15,38,71,.45);
}
.speed-dial-wrap .sd-wa {
    background: #25d366;
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

/* Labels */
.speed-dial-wrap .sd-item-label {
    background: rgba(15,38,71,.92);
    color: #fff;
    font-size: 12px; font-weight: 700;
    padding: 5px 13px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
    backdrop-filter: blur(4px);
}

/* Main trigger button */
.speed-dial-wrap .sd-main-btn {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary), #1e4080);
    color: #fff;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 28px rgba(15,38,71,.5);
    transition: transform .35s ease, box-shadow .3s ease;
    position: relative;
    outline: none;
}

/* Pulse ring */
.speed-dial-wrap .sd-pulse-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    animation: sd-pulse 2.2s ease-out infinite;
}
@keyframes sd-pulse {
    0%   { transform: scale(1); opacity: .6; }
    100% { transform: scale(2); opacity: 0; }
}

/* Close icon — hidden by default */
.speed-dial-wrap .sd-icon-close { display: none; }

/* Open on hover */
.speed-dial-wrap:hover .sd-items { pointer-events: all; }
.speed-dial-wrap:hover .sd-item { transform: translateY(0) scale(1); opacity: 1; }
.speed-dial-wrap:hover .sd-item:nth-child(1) { transition-delay: .06s; }
.speed-dial-wrap:hover .sd-item:nth-child(2) { transition-delay: .12s; }
.speed-dial-wrap:hover .sd-main-btn {
    transform: rotate(15deg) scale(1.06);
    box-shadow: 0 12px 36px rgba(15,38,71,.6);
}
.speed-dial-wrap:hover .sd-pulse-ring { animation: none; opacity: 0; }

/* SECTIONS UTILITIES */
.section-pad { padding: 10px 0 !important; }
.section-pad-sm { padding: 30p
    x 0 !important; }

/* ============== SCROLL ANIMATIONS ============== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
}
.reveal.reveal-left  { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.reveal-scale { transform: scale(.94); }
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ============== WAVY DIVIDERS ============== */
.wave-divider { display: block; line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ============== FAQ SECTION ============== */
.faq-section { background: linear-gradient(180deg, #fff 0%, var(--c-bg) 100%); }
.faq-item {
    border: 1.5px solid var(--c-border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--c-secondary); box-shadow: 0 4px 20px rgba(249,115,22,.1); }
.faq-question {
    width: 100%; background: none; border: none;
    padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 15px; font-weight: 700; color: var(--c-primary);
    cursor: pointer; text-align: left; gap: 16px;
    font-family: 'Inter', sans-serif;
}
.faq-question:hover { color: var(--c-secondary); }
.faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    background: var(--c-cream); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--c-secondary);
    transition: all .3s ease;
}
.faq-item.open .faq-icon { background: var(--c-secondary); color: #fff; transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .4s cubic-bezier(.2,.8,.2,1), padding .3s;
    padding: 0 24px;
}
.faq-answer-inner { padding-bottom: 20px; font-size: 14px; color: var(--c-text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============== MOBILE BOTTOM TAB BAR ============== */
.mobile-tabbar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--c-border);
    z-index: 9998;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(15,38,71,.08);
}
.tabbar-inner { display: flex; justify-content: space-around; align-items: center; }
.tab-item {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    flex: 1; text-decoration: none; color: var(--c-text-muted);
    font-size: 10px; font-weight: 600; letter-spacing: .3px;
    transition: color .2s; padding: 2px 0;
}
.tab-item i { font-size: 18px; transition: transform .2s; }
.tab-item.active { color: var(--c-primary); }
.tab-item.active i { transform: translateY(-2px); }
.tab-item.tab-track {
    background: linear-gradient(135deg, var(--c-secondary), var(--c-secondary-dark));
    color: #fff !important;
    border-radius: 14px;
    padding: 8px 16px;
    margin: -4px 4px;
    box-shadow: 0 6px 18px rgba(249,115,22,.4);
    gap: 4px;
}
.tab-item.tab-track i { font-size: 16px; transform: none !important; }

/* ============== MOBILE STICKY TRACK BUTTON ============== */
.sticky-track-btn {
    display: none;
    position: fixed;
    bottom: 75px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--c-secondary), var(--c-secondary-dark));
    color: #fff;
    border: none; border-radius: 50px;
    padding: 13px 28px;
    font-size: 14px; font-weight: 700;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 24px rgba(249,115,22,.5);
    z-index: 9997;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s;
    opacity: 0;
}
.sticky-track-btn.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* RESPONSIVE */
@media (max-width: 1199px) {
    /* Hide truck animation on tablet/mobile to prevent overlap with stats */
    .hero-road { display: none; }
}

@media (max-width: 991px) {
    .mobile-tabbar { display: block; transition: transform .3s ease; }
    .sticky-track-btn { display: flex; align-items: center; }
    .hero-section { padding: 60px 0 140px !important; }
    .stats-float { margin-top: -100px; }
    .stats-float .stat-cell { border-right: none; border-bottom: 1px solid var(--c-border); padding: 16px; }
    .stats-float .stat-cell:nth-last-child(-n+1) { border-bottom: none; }
    .steps-line, .steps-truck { display: none; }
    .section-pad { padding: 70px 0 !important; }

    /* Partner marquee optimizations for tablet */
    .partner-marquee { gap: 40px; animation: marquee-scroll-tablet 32s linear infinite; }
    @keyframes marquee-scroll-tablet { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .plogo-img { height: 32px; max-width: 140px; }
    .partner-logo { font-size: 18px; }
}

@media (max-width: 768px) {
    .status-progress-d { display: none; }
    .city-tag { font-size: 10px; padding: 4px 10px; }
    .route-stats { grid-template-columns: 1fr; }
    .hero-trust { gap: 18px; }
    .awb-strip { flex-direction: column; align-items: flex-start; }
    .eta-block { text-align: left; }

    /* Service Cards - 2-2 layout (Express full width, others in 2x2) */
    /* Only affect service card rows, not all rows */
    section:has(.svc-card) .row.g-4 > [class*='col-lg-3'],
    section:has(.svc-card) .row.g-4 > [class*='col-md-6']:not(:has(.svc-featured)) {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
    section:has(.svc-card) .row.g-4 > [class*='col-lg-6']:has(.svc-featured) {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .svc-card { padding: 20px 16px; }
    .svc-card .svc-icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 12px; }
    .svc-card h5 { font-size: 15px; margin-bottom: 6px; }
    .svc-card p { font-size: 12px; margin-bottom: 12px; line-height: 1.5; }
    .svc-card .svc-meta { font-size: 12px; gap: 8px; padding-top: 12px; }
    .svc-featured { padding: 24px 16px; }
    .svc-featured h5 { font-size: 18px; }
    .svc-featured p { font-size: 13px; }
    .svc-featured .svc-icon { width: 48px; height: 48px; font-size: 20px; }
    /* Hide decorative elements on featured card for mobile */
    .svc-featured .speed-lines { display: none; }
    .svc-featured .deco-truck { display: none; }
    .svc-featured .deco-bolts { display: none; }

    /* Steps section - full vertical layout on mobile */
    .steps-wrap {
        margin-top: 30px;
        position: relative;
        padding-left: 56px;
    }
    /* Force each step to full width on mobile */
    .steps-wrap .row { display: block !important; }
    .steps-wrap .row > div {
        width: 100% !important;
        flex: none !important;
        padding: 0 !important;
    }

    .steps-line, .steps-truck { display: block !important; }

    /* Vertical dashed line */
    .steps-line {
        position: absolute;
        left: 19px;
        top: 10px;
        width: 2px;
        height: calc(100% - 40px);
        background: none;
        border-left: 2px dashed var(--c-secondary);
        opacity: .5;
        z-index: 1;
    }

    /* Animated truck on the left rail */
    .steps-truck {
        position: absolute !important;
        left: 0 !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 15px !important;
        z-index: 4;
        top: 0 !important;
        animation: travel-mobile 9s linear infinite !important;
    }
    /* Step layout: circle left, text right */
    .step-d {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
        padding: 0 0 30px 0;
        margin: 0 !important;
        position: relative;
    }
    .step-circle {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        margin: 0 !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 17px !important;
        flex-shrink: 0;
        border: 2.5px solid var(--c-border);
        background: #fff;
        z-index: 2;
        animation: none !important;
        box-shadow: 0 4px 12px rgba(249,115,22,.15);
    }
    .step-d h6 { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--c-primary); }
    .step-d p  { font-size: 11.5px; color: var(--c-text-muted); margin: 0; line-height: 1.5; }
    .step-num  { font-size: 9px !important; }

    /* Why Us Section - Feature cards in 2 columns */
    .row.g-3.h-100 > [class*='col-'] {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Hub Network - full width map on mobile */
    .hub-network { flex-direction: column; }
    .hub-network-grid { width: 100%; }
    .hub-content { width: 100%; margin-top: 30px; }

    /* Testimonials carousel on mobile */
    #testimonialsRow {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 0;
        margin: 0 -12px;
        padding: 0 12px;
    }
    .testimonial-item {
        flex: 0 0 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 12px;
        scroll-snap-align: start;
    }
    .test-card { max-width: 100%; }

    /* Carousel indicators */
    .testimonial-dots { display: flex !important; justify-content: center; gap: 8px; }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-border); cursor: pointer; transition: all .3s; }
    .dot.active { background: var(--c-secondary); width: 24px; border-radius: 4px; }

    /* Section padding reduction */
    .section-pad { padding: 60px 0 !important; }
    .section-pad-sm { padding: 40px 0 !important; }

    /* Floating stats - 2 column */
    .stats-float .stat-cell {
        flex: 0 0 50%;
        width: 50%;
        border-bottom: 1px solid var(--c-border);
        border-right: none !important;
    }
    .stats-float .stat-cell:nth-child(odd) { border-right: 1px solid var(--c-border); }
    .stats-float .stat-cell:nth-last-child(-n+2) { border-bottom: none; }
    .stats-float { padding: 20px 12px; }
    .stats-float .stat-num { font-size: 28px; }
    .stats-float .stat-label { font-size: 11px; margin-top: 6px; }

    /* CTA buttons - larger touch targets */
    .btn-primary-cta, .btn-ghost-cta {
        padding: 14px 28px !important;
        font-size: 15px !important;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile-optimized partner marquee */
    .partner-marquee { gap: 28px; animation: marquee-scroll-mobile 24s linear infinite; }
    @keyframes marquee-scroll-mobile { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .plogo-img { height: 28px; max-width: 110px; }
    .partner-logo { font-size: 14px; }
    .partner-label { font-size: 10px; margin-bottom: 18px; }
    .partner-band { padding: 28px 0; }

    /* Mobile speed dial adjustments */
    .speed-dial-wrap {
        position: fixed;
        bottom: 90px;
        right: 20px;
        z-index: 999;
    }
    .speed-dial-wrap .sd-items {
        position: absolute;
        bottom: 64px;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .speed-dial-wrap .sd-item {
        display: flex;
        align-items: center;
        gap: 12px;
        transform-origin: bottom right;
        transform: scale(0) translateY(10px);
        opacity: 0;
        transition: all .3s ease;
    }
    .speed-dial-wrap .sd-item-label {
        background: rgba(15,38,71,.9);
        color: #fff;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
        pointer-events: none;
    }
    .speed-dial-wrap .sd-btn {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(15,38,71,.3);
        transition: all .3s ease;
    }
    .speed-dial-wrap .sd-call {
        background: linear-gradient(135deg, var(--c-secondary), var(--c-secondary-dark));
    }
    .speed-dial-wrap .sd-wa {
        background: #25d366;
    }
    /* Show items on hover (desktop) or when toggled (mobile) */
    .speed-dial-wrap:hover .sd-item,
    .speed-dial-wrap.active .sd-item {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    .speed-dial-wrap:hover .sd-item:nth-child(1),
    .speed-dial-wrap.active .sd-item:nth-child(1) { transition-delay: .06s; }
    .speed-dial-wrap:hover .sd-item:nth-child(2),
    .speed-dial-wrap.active .sd-item:nth-child(2) { transition-delay: .12s; }
    .speed-dial-wrap:hover .sd-main-btn,
    .speed-dial-wrap.active .sd-main-btn {
        transform: rotate(45deg) scale(1.08);
        box-shadow: 0 8px 24px rgba(15,38,71,.5);
    }
}
