:root {
    --primary: #e63946;
    --primary-dk: #c0303c;
    --navy: #0d2340;
    --navy-mid: #1e3c72;
    --navy-light: #2a5298;
    --accent: #f4a435;
    --teal: #2ec4b6;
    --success: #2a9d8f;
    --warning: #f4a261;
    --surface: #ffffff;
    --surface-2: #f4f6f9;
    --border: #e4e8ef;
    --text-main: #0d2340;
    --text-muted: #6c7a8d;
    --g-navy: linear-gradient(135deg, #0d2340 0%, #1e3c72 60%, #2a5298 100%);
    --g-red: linear-gradient(135deg, #e63946 0%, #c0303c 100%);
    --g-accent: linear-gradient(135deg, #f4a435 0%, #e8852a 100%);
    --g-teal: linear-gradient(135deg, #2ec4b6 0%, #1a8f85 100%);
    --shadow-sm: 0 2px 8px rgba(13,35,64,.08);
    --shadow-md: 0 8px 24px rgba(13,35,64,.12);
    --shadow-lg: 0 20px 48px rgba(13,35,64,.18);
    --radius: 16px;
    --radius-sm: 10px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--surface-2);
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

/* Scroll progress bar */
#scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: var(--g-red); z-index: 9999;
    transition: width .1s linear;
}

/* Page loader */
#page-loader {
    position: fixed; inset: 0; background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; z-index: 10000;
    transition: opacity .5s ease, visibility .5s ease;
}
#page-loader.hide { opacity: 0; visibility: hidden; }
.loader-truck {
    font-size: 3.5rem; color: var(--primary);
    animation: truckRoll 1s ease-in-out infinite alternate;
    margin-bottom: 20px;
}
@keyframes truckRoll {
    from { transform: translateX(-20px); }
    to   { transform: translateX(20px); }
}
.loader-bar {
    width: 200px; height: 4px; background: rgba(255,255,255,.15);
    border-radius: 99px; overflow: hidden;
}
.loader-bar-fill {
    height: 100%; background: var(--g-red); border-radius: 99px;
    animation: loaderFill 1.2s ease forwards;
}
@keyframes loaderFill { from{width:0} to{width:100%} }
.loader-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(255,255,255,.6); margin-top: 16px;
}

/* Background */
.body-bg {
    position: fixed; inset: 0;
    background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat fixed;
    opacity: .06; z-index: -2;
}

/* ═══════════════════════════════════════
   NAVBAR — Enhanced 2.0
═══════════════════════════════════════ */
.navbar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(228,232,239,.8), 0 4px 24px rgba(13,35,64,.07);
    padding: 0;
    border-bottom: none;
    position: relative;
    transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
    animation: navbarSlide .6s cubic-bezier(.22,1,.36,1) both;
}
.navbar.scrolled {
    background: rgba(255,255,255,.98);
    box-shadow: 0 2px 32px rgba(13,35,64,.13);
    padding: 0;
}
.navbar .container { padding-top: 26px; padding-bottom: 26px; }

@keyframes navbarSlide {
    from { transform: translateY(-110%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

/* Animated gradient glow line at bottom */
.navbar-glow-line {
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg,
        var(--primary) 0%,
        var(--accent)  25%,
        var(--teal)    50%,
        var(--accent)  75%,
        var(--primary) 100%);
    background-size: 200% 100%;
    animation: glowLineSweep 4s linear infinite;
    z-index: 2;
}
@keyframes glowLineSweep {
    0%   { background-position: 0%   50%; }
    100% { background-position: 200% 50%; }
}

/* Logo wrap + pulse ring */
.logo-wrap {
    position: relative; display: inline-flex;
    align-items: center; justify-content: center;
    margin-right: 14px; flex-shrink: 0;
}
.logo-pulse-ring {
    position: absolute; inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(230,57,70,.35);
    animation: logoPulse 2.8s ease-in-out infinite;
    pointer-events: none;
}
.logo-pulse-ring::after {
    content: '';
    position: absolute; inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(230,57,70,.15);
    animation: logoPulse 2.8s ease-in-out .5s infinite;
}
@keyframes logoPulse {
    0%,100% { transform: scale(1);    opacity: .7; }
    50%      { transform: scale(1.18); opacity: 0;  }
}
.logo-img {
    width: 68px; height: 68px;
    object-fit: contain; display: block;
    filter: drop-shadow(0 3px 8px rgba(13,35,64,.18));
    animation: logoEntrance .8s cubic-bezier(.34,1.56,.64,1) .4s both;
    transition: filter .3s ease, transform .3s ease;
}
.logo-fallback {
    width: 68px; height: 68px;
    align-items: center; justify-content: center;
}
.logo-wrap:hover .logo-img {
    transform: scale(1.08) rotate(-4deg);
    filter: drop-shadow(0 6px 18px rgba(230,57,70,.4));
}
@keyframes logoEntrance {
    0%   { opacity:0; transform: scale(0) rotate(-25deg); }
    65%  { opacity:1; transform: scale(1.1) rotate(5deg); }
    100% { opacity:1; transform: scale(1) rotate(0deg); }
}

/* Brand block */
.brand-block { gap: 1px; }
.navbar-brand {
    font-weight: 800; color: var(--navy);
    font-size: 2rem; letter-spacing: -0.5px;
    display: flex; align-items: center;
    text-decoration: none; padding: 4px 0;
}

/* Letter-by-letter entrance */
.brand-text {
    display: inline-flex; align-items: baseline;
    line-height: 1; font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 2.1rem; letter-spacing: 1px;
}
.brand-letter {
    display: inline-block;
    background: var(--g-navy);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: letterPop .55s cubic-bezier(.34,1.56,.64,1) forwards;
    animation-delay: calc(.6s + var(--i) * .07s);
    transition: transform .2s ease;
}
.brand-sep { margin-left: .1em; }
.brand-letter:hover {
    -webkit-text-fill-color: var(--primary);
    transform: translateY(-4px) scale(1.2) !important;
    cursor: default;
}
@keyframes letterPop {
    0%   { opacity:0; transform: translateY(-20px) scale(.6); }
    65%  { opacity:1; transform: translateY(3px) scale(1.1); }
    100% { opacity:1; transform: translateY(0) scale(1); }
}

/* Shimmer sweep across brand on hover */
.brand-shimmer { position: relative; overflow: visible; }
.navbar-brand:hover .brand-letter {
    animation: shimmerLetter .6s ease forwards;
}
.navbar-brand:hover .brand-letter:nth-child(1){ animation-delay:.00s; }
.navbar-brand:hover .brand-letter:nth-child(2){ animation-delay:.04s; }
.navbar-brand:hover .brand-letter:nth-child(3){ animation-delay:.08s; }
.navbar-brand:hover .brand-letter:nth-child(4){ animation-delay:.12s; }
.navbar-brand:hover .brand-letter:nth-child(5){ animation-delay:.16s; }
.navbar-brand:hover .brand-letter:nth-child(6){ animation-delay:.20s; }
.navbar-brand:hover .brand-letter:nth-child(7){ animation-delay:.24s; }
.navbar-brand:hover .brand-letter:nth-child(8){ animation-delay:.28s; }
@keyframes shimmerLetter {
    0%   { -webkit-text-fill-color: inherit; transform: translateY(0); }
    40%  { -webkit-text-fill-color: var(--primary); transform: translateY(-5px) scale(1.15); }
    100% { -webkit-text-fill-color: inherit; transform: translateY(0) scale(1); }
}

/* Tagline */
.brand-tagline {
    font-size: .7rem; color: var(--text-muted);
    letter-spacing: 2.8px; font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase; display: flex;
    align-items: center; gap: 5px;
}
.brand-tagline-in {
    opacity: 0;
    animation: taglineReveal .5s ease forwards;
    animation-delay: 1.25s;
}
@keyframes taglineReveal {
    from { opacity:0; letter-spacing:0px; transform:translateX(-8px); }
    to   { opacity:1; letter-spacing:2.8px; transform:translateX(0); }
}
.tagline-truck {
    color: var(--primary);
    animation: truckVroom 3s ease-in-out 2s infinite;
    display: inline-block;
}
@keyframes truckVroom {
    0%,80%,100% { transform: translateX(0); }
    85%         { transform: translateX(4px); }
    90%         { transform: translateX(-2px); }
    95%         { transform: translateX(3px); }
}

/* ── Nav links pill group ── */
.nav-pill-group {
    background: rgba(13,35,64,.04);
    border-radius: 99px;
    padding: 5px 6px;
    gap: 2px;
    border: 1px solid rgba(13,35,64,.07);
    animation: pillGroupIn .6s cubic-bezier(.22,1,.36,1) .3s both;
}
@keyframes pillGroupIn {
    from { opacity:0; transform: translateY(-8px) scale(.97); }
    to   { opacity:1; transform: translateY(0) scale(1); }
}
.nav-link {
    color: var(--navy); font-weight: 600;
    transition: all .22s ease; position: relative;
    font-size: .83rem; padding: 7px 14px !important;
    border-radius: 99px; text-transform: uppercase;
    letter-spacing: .5px; font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
}
.nav-link i { transition: transform .22s ease; }
.nav-link:hover {
    color: var(--primary);
    background: rgba(230,57,70,.08);
    transform: translateY(-1px);
}
.nav-link:hover i { transform: scale(1.2) rotate(-5deg); }
.nav-link::before {
    content:''; position:absolute; inset: 0;
    border-radius: 99px;
    background: var(--g-red);
    opacity:0; transform: scale(.85);
    transition: opacity .22s ease, transform .22s ease;
    z-index: -1;
}
.nav-link:active::before { opacity:.12; transform: scale(1); }
.active-nav {
    color: var(--primary) !important; font-weight: 700 !important;
    background: rgba(230,57,70,.1) !important;
}

/* CTA button — About link styled as pill button */
.nav-cta-btn {
    background: var(--g-red) !important;
    color: white !important; font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(230,57,70,.35);
    border: none !important;
}
.nav-cta-btn:hover {
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(230,57,70,.5) !important;
    background: var(--g-red) !important;
}
.nav-cta-btn i { color: white !important; }

/* Custom hamburger */
.ht-toggler {
    border: 1.5px solid var(--border);
    border-radius: 10px; padding: 8px 10px;
    background: transparent;
    display: flex; flex-direction: column;
    gap: 5px; cursor: pointer;
    transition: border-color .2s ease;
}
.ht-toggler:hover { border-color: var(--primary); }
.ht-bar {
    width: 22px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: all .3s cubic-bezier(.34,1.56,.64,1);
    display: block;
}
.ht-toggler[aria-expanded="true"] .ht-bar:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.ht-toggler[aria-expanded="true"] .ht-bar:nth-child(2){ opacity:0; transform: scaleX(0); }
.ht-toggler[aria-expanded="true"] .ht-bar:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ── Responsive ── */
@media (max-width: 992px) {
    .nav-pill-group {
        background: transparent; border: none;
        flex-direction: column; gap: 4px;
        padding: 12px 0;
    }
    .nav-link { border-radius: 10px !important; }
}
@media (max-width: 768px) {
    .logo-img { width: 54px; height: 54px; }
    .brand-text { font-size: 1.7rem; }
    .logo-pulse-ring { display: none; }
}

/* Main content */
.main-content {
    padding: 140px 20px 60px; /* Increased from 120px to 140px */
    min-height: 100vh; 
    position: relative; 
    z-index: 1;
}

/* Hero Banner */
.welcome-banner {
    background: var(--g-navy);
    border-radius: 24px;
    padding: 64px 60px;
    margin-bottom: 48px;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
}
.welcome-banner::before {
    content:'';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 75% 50%, rgba(230,57,70,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 90% 10%, rgba(42,82,152,.4) 0%, transparent 60%);
    pointer-events: none;
}
.welcome-banner::after {
    content:'';
    position: absolute; top:-40px; right:-40px;
    width: 320px; height: 320px;
    background: var(--g-red);
    opacity: .12;
    border-radius: 50%;
    filter: blur(60px);
}
.banner-dots {
    position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
    background-image: radial-gradient(rgba(255,255,255,.07) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
}

.banner-content {
    position: relative; z-index: 2; max-width: 58%;
    animation: fadeInUp 1s ease both;
}
.banner-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(230,57,70,.18); border: 1px solid rgba(230,57,70,.35);
    color: #ffb3bb; border-radius: 99px;
    padding: 5px 14px; font-size: .78rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    font-weight: 600; margin-bottom: 18px;
}
.welcome-banner h1 {
    font-size: 4rem; font-weight: 900; margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,.25); line-height: 1.1;
    animation: bounceIn 1.2s ease both;
}
.welcome-banner h1 .ht-accent { color: var(--accent); }
.welcome-banner h1 i {
    display: inline-block;
    animation: iconPop .6s ease-out both;
}
@keyframes iconPop {
    0%   { transform: scale(0) rotate(-20deg); opacity:0; }
    70%  { transform: scale(1.15) rotate(5deg); opacity:1; }
    100% { transform: scale(1) rotate(0); }
}
.welcome-banner p {
    font-size: 1.1rem; opacity:.88; margin-bottom: 32px;
    line-height: 1.7; animation: slideInLeft 1.2s ease .3s both;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 99px;
    font-weight: 700; font-size: .95rem; text-transform: uppercase;
    letter-spacing: .5px; cursor: pointer; border: none;
    transition: all .25s ease; text-decoration: none;
}
.btn-hero-primary {
    background: var(--g-red); color: white;
    box-shadow: 0 6px 20px rgba(230,57,70,.4);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(230,57,70,.5); color: white;
}
.btn-hero-outline {
    background: rgba(255,255,255,.1); color: white;
    border: 1.5px solid rgba(255,255,255,.35);
    backdrop-filter: blur(6px);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,.2); color: white;
    transform: translateY(-3px);
}

.banner-stats {
    display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap;
    animation: fadeInUp .8s ease .6s both;
}
.banner-stat {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    padding: 14px 20px; border-radius: 14px;
    border: 1px solid rgba(255,255,255,.15);
    text-align: center; min-width: 110px;
    transition: all .3s ease;
}
.banner-stat:hover {
    transform: translateY(-6px);
    background: rgba(230,57,70,.25);
    border-color: rgba(230,57,70,.4);
}
.banner-stat strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem; font-weight: 800; display: block;
    color: var(--accent);
}
.banner-stat span {
    font-size: .78rem; opacity: .8;
    text-transform: uppercase; letter-spacing: 1px;
}

@keyframes slideInLeft {
    from { opacity:0; transform:translateX(-40px); }
    to   { opacity:1; transform:translateX(0); }
}
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(24px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes bounceIn {
    0%   { opacity:0; transform:scale(.4); }
    55%  { opacity:1; transform:scale(1.06); }
    75%  { transform:scale(.95); }
    100% { transform:scale(1); }
}

/* Stat Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px; margin-bottom: 44px;
}
.stat-card {
    background: var(--surface); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow-sm);
    transition: all .3s ease; cursor: pointer;
    border: 1px solid var(--border); position: relative; overflow: hidden;
}
.stat-card::before {
    content:''; position:absolute; bottom:0; left:0; right:0; height:4px;
    background: var(--card-accent, var(--g-navy));
}
.stat-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.stat-card:hover::after {
    content:''; position:absolute; inset:0;
    background: var(--card-glow, rgba(30,60,114,.04));
    pointer-events:none;
}
.stat-card-1 { --card-accent: var(--g-red);   --card-glow: rgba(230,57,70,.04); }
.stat-card-2 { --card-accent: var(--g-teal);  --card-glow: rgba(46,196,182,.05); }
.stat-card-3 { --card-accent: var(--g-accent);--card-glow: rgba(244,164,53,.05); }
.stat-card-4 { --card-accent: var(--g-navy);  --card-glow: rgba(30,60,114,.05); }

.stat-icon {
    width: 60px; height: 60px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; font-size: 24px;
}
.stat-icon.primary { background:rgba(230,57,70,.1); color:var(--primary); }
.stat-icon.success { background:rgba(46,196,182,.12); color:var(--teal); }
.stat-icon.warning { background:rgba(244,164,53,.12); color:var(--accent); }
.stat-icon.danger  { background:rgba(13,35,64,.08); color:var(--navy-mid); }

.stat-info h3 {
    font-size: 2.8rem; font-weight: 900; margin-bottom: 4px;
    color: var(--navy); font-family:'Barlow Condensed',sans-serif;
}
.stat-info p {
    color: var(--text-muted); margin:0; font-size:.85rem;
    text-transform:uppercase; letter-spacing:1px; font-weight:600;
}

/* Section title */
.section-title {
    color: var(--navy); margin-bottom: 28px;
    font-weight: 900; font-size: 2.4rem;
    position: relative; display: inline-block; padding-bottom: 12px;
}
.section-title::after {
    content:''; position:absolute; bottom:0; left:0;
    width:60px; height:4px; background:var(--g-red); border-radius:2px;
}

/* Module Cards */
.module-card {
    background: var(--surface); border-radius: var(--radius);
    padding: 32px 24px; text-align: center;
    box-shadow: var(--shadow-sm); transition: all .3s ease;
    cursor: pointer; border: 1px solid var(--border);
    height: 100%; position: relative; overflow: hidden;
}
.module-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:0;
    background: var(--mod-color, var(--g-red));
    transition: height .35s ease; z-index:0;
}
.module-card:hover::before { height: 5px; }
.module-card:hover {
    transform: translateY(-10px); box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.module-card > * { position: relative; z-index: 1; }

.mod-dashboard  { --mod-color: var(--g-navy); }
.mod-shipments  { --mod-color: var(--g-teal); }
.mod-tracking   { --mod-color: linear-gradient(135deg,#0ea5e9,#0284c7); }
.mod-drivers    { --mod-color: var(--g-accent); }
.mod-vehicles   { --mod-color: var(--g-red); }
.mod-routes     { --mod-color: linear-gradient(135deg,#7c3aed,#5b21b6); }
.mod-schedule   { --mod-color: linear-gradient(135deg,#0d2340,#1e3c72); }
.mod-reports    { --mod-color: linear-gradient(135deg,#059669,#047857); }

.module-icon {
    width: 88px; height: 88px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px; font-size: 36px;
    background: var(--mod-color, var(--g-navy)); color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    transition: transform .3s ease;
}
.module-card:hover .module-icon { transform: scale(1.08) rotate(-3deg); }

.module-card h3 { font-size:1.4rem; font-weight:800; margin-bottom:10px; color:var(--navy); }
.module-card p  { color:var(--text-muted); margin-bottom:22px; font-size:.9rem; line-height:1.6; }

.module-btn {
    background: var(--g-navy); color:white; border:none;
    padding: 9px 22px; border-radius:99px; font-weight:700;
    transition: all .25s ease; text-decoration:none;
    display: inline-flex; align-items:center; gap:6px;
    font-size:.85rem; text-transform:uppercase; letter-spacing:.4px;
    box-shadow: 0 4px 12px rgba(30,60,114,.25);
}
.module-btn:hover {
    background: var(--g-red); color:white;
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(230,57,70,.35);
}

/* Activity Timeline */
.timeline-card {
    background: var(--surface); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow-sm); height:100%;
    border: 1px solid var(--border);
}
.timeline-item {
    display:flex; align-items:center; padding:12px;
    border-bottom:1px solid var(--border); transition:all .25s ease;
    border-radius:var(--radius-sm);
}
.timeline-item:last-child { border-bottom:none; }
.timeline-item:hover {
    transform:translateX(8px); background:var(--surface-2);
    border-color:transparent;
}
.timeline-icon {
    width:42px; height:42px; border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    margin-right:14px; font-size:16px; flex-shrink:0;
}
.timeline-icon.bg-primary { background:rgba(230,57,70,.1); color:var(--primary); }
.timeline-icon.bg-success { background:rgba(46,196,182,.12); color:var(--teal); }
.timeline-icon.bg-warning { background:rgba(244,164,53,.12); color:var(--accent); }
.timeline-icon.bg-danger  { background:rgba(230,57,70,.1); color:var(--primary); }
.timeline-icon.bg-info    { background:rgba(30,60,114,.1); color:var(--navy-mid); }
.timeline-icon.bg-secondary { background:rgba(108,122,141,.1); color:var(--text-muted); }
.timeline-content { flex:1; }
.timeline-content h6 { font-weight:700; margin-bottom:3px; color:var(--navy); font-size:.95rem; }
.timeline-content p  { color:var(--text-muted); margin:0; font-size:.85rem; }
.timeline-time { color:#adb5bd; font-size:.8rem; font-weight:500; white-space:nowrap; }

/* Page content */
.page-content {
    background: var(--surface); border-radius: 24px;
    padding: 52px; margin: 36px 0;
    box-shadow: var(--shadow-md); animation: fadeInUp .8s ease both;
    border: 1px solid var(--border);
}
.page-content h2 {
    color: var(--navy); margin-bottom: 24px;
    font-weight: 900; font-size: 2.6rem;
    border-bottom: 4px solid var(--primary); padding-bottom: 14px;
    display: inline-block;
}
.page-content h3 { color:var(--navy-mid); margin:28px 0 16px; font-weight:800; font-size:1.7rem; }
.page-content p   { color:var(--text-muted); line-height:1.8; margin-bottom:18px; font-size:1.05rem; }
.lead { font-size:1.2rem; font-weight:400; color:#495057; }

/* Team Section */
.team-section { margin-top: 50px; }

.team-card {
    background: var(--surface); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: all .3s ease; height:100%; border:1px solid var(--border);
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.team-image-container { width:100%; height:600px; overflow:hidden; position:relative; }
.team-image { width:100%; height:100%; object-fit:cover; object-position:center top; transition:transform .5s ease; }
.team-card:hover .team-image { transform:scale(1.06); }
.team-info { padding:28px; }
.team-info h4 { font-size:1.6rem; font-weight:800; color:var(--navy); margin-bottom:5px; }
.team-info .position {
    color:var(--primary); font-weight:700; font-size:.85rem;
    text-transform:uppercase; letter-spacing:1.5px; margin-bottom:14px;
}
.team-info p { color:var(--text-muted); font-size:.93rem; line-height:1.65; margin-bottom:18px; }
.team-social { display:flex; gap:10px; }
.team-social a {
    width:36px; height:36px; border-radius:10px;
    background:rgba(230,57,70,.08); color:var(--primary);
    display:flex; align-items:center; justify-content:center;
    transition:all .25s ease; text-decoration:none; font-size:.9rem;
}
.team-social a:hover { background:var(--primary); color:white; transform:translateY(-3px); }

/* Contact */
.contact-info { background:var(--surface-2); padding:36px; border-radius:var(--radius); }
.contact-item {
    display:flex; align-items:center; margin-bottom:16px;
    padding:18px; background:var(--surface); border-radius:var(--radius-sm);
    transition:all .25s ease; box-shadow:var(--shadow-sm); border:1px solid var(--border);
}
.contact-item:hover { transform:translateX(8px); border-color:var(--primary); box-shadow:var(--shadow-md); }
.contact-icon {
    width:48px; height:48px; border-radius:12px;
    background:var(--g-red); color:white;
    display:flex; align-items:center; justify-content:center;
    font-size:18px; margin-right:18px; flex-shrink:0;
}

/* Press Cards */
.press-card {
    background:var(--surface); border-radius:var(--radius); padding:28px;
    margin-bottom:24px; box-shadow:var(--shadow-sm);
    transition:all .3s ease; border:1px solid var(--border);
    border-left:5px solid var(--primary);
}
.press-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.press-date { color:var(--primary); font-size:.82rem; font-weight:700; margin-bottom:8px; text-transform:uppercase; letter-spacing:1.2px; }

/* About Stats */
.about-stats {
    display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px; margin:44px 0;
}
.about-stat-item {
    text-align:center; padding:28px; background:var(--surface);
    border-radius:var(--radius); box-shadow:var(--shadow-sm);
    transition:all .3s ease; border:1px solid var(--border);
    border-bottom:5px solid var(--primary);
}
.about-stat-item:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.about-stat-item h4 { font-size:3rem; font-weight:900; color:var(--primary); margin-bottom:8px; }
.about-stat-item p { font-size:1rem; color:var(--text-muted); margin:0; font-weight:600; }

/* Modal */
.modal-content { border:none; border-radius:20px; overflow:hidden; }
.modal-header  { border-bottom:none; padding:20px 28px; }
.modal-header.bg-primary   { background:var(--g-red)    !important; }
.modal-header.bg-success   { background:var(--g-teal)   !important; }
.modal-header.bg-info      { background:var(--g-navy)   !important; }
.modal-header.bg-warning   { background:var(--g-accent) !important; }
.modal-header.bg-danger    { background:var(--g-red)    !important; }
.modal-header.bg-secondary { background:linear-gradient(135deg,#6c757d,#495057) !important; }
.modal-header.bg-dark      { background:var(--navy)     !important; }
.modal-body   { padding:28px; }
.modal-footer { border-top:1px solid var(--border); padding:18px 28px; }
.btn-close-white { filter:brightness(0) invert(1); }

/* Toast notifications */
#toast-container {
    position:fixed; bottom:28px; left:28px;
    z-index:9998; display:flex; flex-direction:column; gap:10px;
}
.ht-toast {
    background:var(--navy); color:white;
    padding:14px 20px; border-radius:12px;
    box-shadow:var(--shadow-lg); max-width:320px;
    display:flex; align-items:center; gap:12px;
    animation: toastIn .35s ease both;
    border-left:4px solid var(--primary);
}
.ht-toast.success { border-color: var(--teal); }
.ht-toast.warning { border-color: var(--accent); }
@keyframes toastIn {
    from { opacity:0; transform:translateX(-30px); }
    to   { opacity:1; transform:translateX(0); }
}
@keyframes toastOut {
    from { opacity:1; transform:translateX(0); }
    to   { opacity:0; transform:translateX(-30px); }
}

/* Footer */
.footer {
    background: var(--navy); color:white;
    padding:64px 0 28px; margin-top:80px;
    position:relative; border-top:4px solid var(--primary);
}
.footer::before {
    content:'';
    position:absolute; inset:0;
    background:url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    opacity:.06; z-index:0;
}
.footer .container { position:relative; z-index:1; }
.footer h5 {
    color:white; font-weight:800; margin-bottom:22px;
    font-size:1.2rem; position:relative; padding-bottom:10px;
}
.footer h5::after {
    content:''; position:absolute; bottom:0; left:0;
    width:40px; height:3px; background:var(--primary);
}
.footer ul { list-style:none; padding:0; }
.footer ul li { margin-bottom:10px; }
.footer ul li a { color:rgba(255,255,255,.55); text-decoration:none; transition:all .25s ease; cursor:pointer; font-size:.95rem; }
.footer ul li a:hover { color:var(--primary); padding-left:6px; }
.footer p { color:rgba(255,255,255,.5); line-height:1.6; }
.social-links a {
    display:inline-flex; width:40px; height:40px; border-radius:10px;
    background:rgba(255,255,255,.08); color:white;
    align-items:center; justify-content:center;
    margin-right:10px; margin-bottom:8px;
    transition:all .25s ease; font-size:1rem;
}
.social-links a:hover { background:var(--primary); transform:translateY(-4px); }
.footer-bottom {
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px; padding-top:24px; text-align:center;
}
.footer-bottom p { color:rgba(255,255,255,.4); font-size:.88rem; }
.footer-bottom a { color:var(--primary); text-decoration:none; }
.footer-bottom a:hover { text-decoration:underline; }

.hidden { display: none; }

/* Misc UI */
.truck-pattern {
    position:fixed; bottom:20px; right:20px;
    font-size:130px; opacity:.025; color:var(--navy-mid);
    transform:rotate(-15deg); z-index:0; pointer-events:none;
}

/* Buttons */
.btn-primary {
    background:var(--g-red); border:none;
    padding:11px 28px; font-weight:700; text-transform:uppercase;
    letter-spacing:.5px; border-radius:99px; transition:all .25s ease;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 20px rgba(230,57,70,.35); }
.btn-outline-primary {
    border:2px solid var(--primary); color:var(--primary);
    padding:9px 24px; font-weight:700; text-transform:uppercase;
    letter-spacing:.5px; border-radius:99px; transition:all .25s ease;
}
.btn-outline-primary:hover {
    background:var(--g-red); border-color:transparent; color:white;
    transform:translateY(-2px); box-shadow:0 8px 20px rgba(230,57,70,.35);
}

/* Forms */
.form-control {
    border:1px solid var(--border); padding:11px 14px;
    border-radius:var(--radius-sm); font-size:.97rem;
    font-family:'DM Sans',sans-serif; color:var(--text-main);
}
.form-control:focus {
    border-color:var(--primary); box-shadow:0 0 0 3px rgba(230,57,70,.15);
}
.form-label { font-weight:600; font-size:.9rem; color:var(--navy); margin-bottom:6px; }

/* Progress Bars */
.progress { background:var(--border); border-radius:99px; overflow:hidden; }
.progress-bar { background:var(--g-navy); border-radius:99px; }

/* Address card */
.address-card {
    background:var(--surface); border-radius:var(--radius); padding:28px;
    margin-top:24px; box-shadow:var(--shadow-sm);
    border-left:5px solid var(--primary); transition:all .3s ease;
    border-right:1px solid var(--border); border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.address-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.address-card h4 { color:var(--navy); font-weight:800; margin-bottom:16px; }
.address-card p  { color:var(--text-muted); font-size:1.05rem; line-height:1.9; margin:0; }
.address-card i  { color:var(--primary); margin-right:8px; }

/* Back to top */
#back-to-top {
    position:fixed; bottom:28px; right:28px;
    width:46px; height:46px; border-radius:50%;
    background:var(--g-red); color:white; border:none;
    font-size:1.1rem; cursor:pointer;
    box-shadow:0 4px 16px rgba(230,57,70,.45);
    opacity:0; visibility:hidden; transform:translateY(16px);
    transition:opacity .3s ease, visibility .3s ease, transform .3s ease;
    z-index:999;
}
#back-to-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
#back-to-top:hover   { transform:translateY(-4px); box-shadow:0 8px 24px rgba(230,57,70,.55); }

/* Placeholder Image */
.placeholder-img {
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    min-height: 300px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-banner { padding:36px 24px; }
    .welcome-banner h1 { font-size:2.4rem; }
    .banner-content { max-width:100%; }
    .banner-stat { min-width:90px; padding:10px 14px; }
    .banner-stat strong { font-size:1.6rem; }
    .section-title { font-size:2rem; }
    .page-content { padding:28px; }
    .team-image-container { height:380px; }
    #toast-container { left:14px; right:14px; bottom:14px; }
    .ht-toast { max-width:100%; }
}