/* ============================================================
   HEHA MOVERS × DECOLONISE AFRICA
   Video-level Premium Aesthetic (wearebrand.io inspired)
   ============================================================ */

:root {
    --bg: #0a0908;
    --bg-elevated: #14120e;
    --bg-card: #1a1712;
    --gold: #c9a227;
    --gold-soft: #e8d5a3;
    --gold-dim: rgba(201, 162, 39, 0.12);
    --green: #2ecc71;
    --green-glow: rgba(46, 204, 113, 0.25);
    --cream: #f4efe6;
    --muted: #8a8278;
    --line: rgba(201, 162, 39, 0.18);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --radius: 12px;
    --header-h: 74px;
    --journey-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: var(--journey-h);
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-soft); }

/* ---------- PREMIUM LOADER ---------- */
.loader-wrap {
    position: fixed; inset: 0;
    background: #0a0908;
    z-index: 9999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), visibility 0.7s;
}
.loader-wrap.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-truck {
    width: 140px;
    animation: loaderDrive 1.8s cubic-bezier(0.45,0.05,0.55,0.95) infinite;
}
@keyframes loaderDrive {
    0%   { transform: translateX(-50px) scale(0.92); opacity: 0.5; }
    50%  { transform: translateX(50px) scale(1.05); opacity: 1; }
    100% { transform: translateX(-50px) scale(0.92); opacity: 0.5; }
}
.loader-text {
    margin-top: 1.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ---------- HEADER ---------- */
.site-header {
    position: fixed; top:0; left:0; right:0; z-index:1000;
    height: var(--header-h);
    background: transparent;
    transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(10,9,8,0.88);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
}
.header-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 2rem;
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo {
    font-family: var(--font-display);
    font-size: 1.28rem; font-weight: 600; letter-spacing: 0.05em;
    color: var(--gold);
}
.logo span { color: var(--cream); font-weight: 400; }
.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav a {
    font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); font-weight: 400;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a.btn-nav {
    background: var(--gold); color: #1a160f !important;
    padding: 0.55rem 1.25rem; border-radius: 6px; font-weight: 600;
}
.main-nav a.btn-nav:hover { background: var(--gold-soft); }
.nav-toggle { display: none; background:none; border:none; cursor:pointer; width:28px; height:20px; position:relative; }
.nav-toggle span { display:block; width:100%; height:2px; background:var(--gold); position:absolute; left:0; transition:0.3s; }
.nav-toggle span:nth-child(1){top:0} .nav-toggle span:nth-child(2){top:9px} .nav-toggle span:nth-child(3){top:18px}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
    padding: 0.95rem 1.9rem;
    background: var(--gold); color: #1a160f;
    font-family: var(--font-body); font-size: 0.86rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: none; border-radius: 6px; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.btn:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201,162,39,0.28);
    color: #1a160f;
}
.btn-outline {
    background: transparent; border: 1px solid var(--gold); color: var(--gold);
}
.btn-outline:hover { background: var(--gold-dim); color: var(--gold-soft); }
.btn-green { background: var(--green); color: #0a1a0f; }
.btn-green:hover { background: #3ee08a; box-shadow: 0 12px 28px var(--green-glow); }
.btn-block { width: 100%; }

.btn-chip {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.4rem 0.95rem;
    background: var(--gold-dim); color: var(--gold-soft);
    font-size: 0.78rem; border-radius: 20px;
    border: 1px solid var(--line); cursor: pointer;
    transition: all 0.25s;
}
.btn-chip:hover, .btn-chip.active {
    background: rgba(201,162,39,0.28); border-color: var(--gold); transform: scale(1.04);
}
.word-btn {
    color: var(--gold-soft); border-bottom: 1px dashed var(--line);
    cursor: pointer; transition: all 0.2s; padding: 0 2px;
}
.word-btn:hover { color: var(--gold); background: var(--gold-dim); border-bottom-color: var(--gold); }

.fab {
    position: fixed; bottom: calc(var(--journey-h) + 22px); right: 26px; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--green); color: #0a1a0f; font-size: 1.45rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px var(--green-glow);
    transition: transform 0.3s;
    animation: fabPulse 2.8s ease-in-out infinite;
}
.fab:hover { transform: scale(1.12) rotate(6deg); }
@keyframes fabPulse {
    0%,100% { box-shadow: 0 10px 30px var(--green-glow); }
    50% { box-shadow: 0 10px 40px rgba(46,204,113,0.5), 0 0 0 10px rgba(46,204,113,0.1); }
}

/* ---------- GLOBAL JOURNEY TRACKER ---------- */
.journey-tracker {
    position: fixed; bottom: 0; left: 0; right: 0;
    height: var(--journey-h);
    background: linear-gradient(to top, rgba(10,9,8,0.97), rgba(10,9,8,0.9));
    border-top: 1px solid var(--line);
    z-index: 950; display: flex; align-items: center; padding: 0 1.5rem;
    backdrop-filter: blur(14px);
}
.journey-map {
    flex: 1; height: 48px; position: relative; margin: 0 1.4rem;
    background: linear-gradient(90deg, rgba(46,204,113,0.06), rgba(201,162,39,0.1), rgba(46,204,113,0.06));
    border-radius: 8px; overflow: hidden; border: 1px solid var(--line);
}
.journey-path {
    position: absolute; top: 50%; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
    transform: translateY(-50%); opacity: 0.7;
    box-shadow: 0 0 14px rgba(201,162,39,0.4);
}
.journey-truck {
    position: absolute; top: 50%; left: 5%; width: 86px;
    transform: translate(-50%, -50%);
    transition: left 0.15s linear, filter 0.3s, transform 0.3s;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.55));
    z-index: 5; will-change: left;
}
.journey-truck.boost {
    filter: drop-shadow(0 0 20px var(--green)) drop-shadow(0 4px 14px rgba(0,0,0,0.5));
    transform: translate(-50%, -50%) scale(1.1);
}
.journey-labels {
    display: flex; justify-content: space-between;
    position: absolute; bottom: 3px; left: 10px; right: 10px;
    font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); pointer-events: none;
}
.journey-info { min-width: 130px; text-align: right; }
.journey-info .progress-pct {
    font-family: var(--font-display); font-size: 1.35rem; color: var(--gold); line-height: 1;
}
.journey-info .progress-label { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em; }
.journey-start, .journey-end { font-size: 0.72rem; color: var(--gold); white-space: nowrap; }

/* ---------- HERO – VIDEO LEVEL ---------- */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    padding: calc(var(--header-h) + 3.5rem) 2rem 5rem;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 90% 55% at 50% 10%, rgba(201,162,39,0.09), transparent),
        radial-gradient(ellipse 60% 45% at 80% 80%, rgba(46,204,113,0.05), transparent);
    pointer-events: none;
}
.hero-label {
    font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.6rem;
    opacity: 0; animation: fadeUp 1s 0.2s forwards;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7.5vw, 5.4rem);
    font-weight: 500; line-height: 1.08;
    max-width: 13ch; margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 1s 0.4s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero-sub {
    font-size: 1.15rem; color: var(--muted);
    max-width: 38ch; margin-bottom: 2.2rem;
    opacity: 0; animation: fadeUp 1s 0.55s forwards;
}
.hero-cta {
    display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
    margin-bottom: 3rem;
    opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.hero-truck-wrap {
    position: relative; width: min(540px, 92vw);
    opacity: 0; animation: fadeUp 1.2s 0.9s forwards;
}
.hero-truck {
    width: 100%;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.55));
    animation: truckFloat 4s ease-in-out infinite, truckGlow 5s ease-in-out infinite;
}
@keyframes truckFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes truckGlow {
    0%,100% { filter: drop-shadow(0 25px 50px rgba(0,0,0,0.55)); }
    50% { filter: drop-shadow(0 25px 50px rgba(0,0,0,0.55)) drop-shadow(0 0 30px rgba(46,204,113,0.3)); }
}

/* ---------- EPIC JOURNEY (cinematic) ---------- */
.journey-epic {
    position: relative; height: 300vh; background: var(--bg);
}
.journey-sticky {
    position: sticky; top: 0; height: 100vh;
    display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.journey-scene { position: relative; width: 100%; height: 100%; }
.journey-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 25% 70%, rgba(46,204,113,0.07), transparent 55%),
        radial-gradient(ellipse at 75% 35%, rgba(201,162,39,0.06), transparent 50%);
}
.journey-road {
    position: absolute; left: 0; right: 0; top: 62%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--green), var(--gold), transparent);
    box-shadow: 0 0 24px rgba(201,162,39,0.45);
}
.journey-road::before {
    content: '';
    position: absolute; top: -2px; left: 0; right: 0; height: 8px;
    background: repeating-linear-gradient(90deg,
        transparent 0, transparent 28px,
        rgba(255,255,255,0.12) 28px, rgba(255,255,255,0.12) 42px);
}
.big-truck {
    position: absolute; top: 50%; left: 8%;
    width: 240px;
    transform: translate(-50%, -60%);
    will-change: left, transform;
    filter: drop-shadow(0 18px 35px rgba(0,0,0,0.6));
    z-index: 10; transition: left 0.12s linear;
}
.journey-caption {
    position: absolute; top: 16%; left: 0; right: 0;
    text-align: center; padding: 0 2rem; pointer-events: none;
}
.journey-caption h2 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    font-weight: 500; margin-bottom: 0.7rem;
    opacity: 0; transform: translateY(24px);
    transition: all 0.7s cubic-bezier(0.22,1,0.36,1);
}
.journey-caption p {
    color: var(--muted); max-width: 42ch; margin: 0 auto;
    opacity: 0; transform: translateY(16px);
    transition: all 0.7s 0.12s cubic-bezier(0.22,1,0.36,1);
}
.journey-caption.active h2,
.journey-caption.active p { opacity: 1; transform: translateY(0); }

/* ---------- DESTINATION ---------- */
.destination {
    min-height: 90vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 6rem 2rem;
    background: radial-gradient(ellipse 70% 50% at 50% 85%, rgba(46,204,113,0.06), transparent);
}
.destination-badge {
    font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--green); margin-bottom: 1.5rem;
}
.destination h2 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 500; line-height: 1.12;
    max-width: 14ch; margin-bottom: 1.2rem;
}
.destination h2 em { font-style: italic; color: var(--gold-soft); }
.destination p {
    font-size: 1.1rem; color: var(--muted);
    max-width: 42ch; margin-bottom: 2.4rem;
}

/* ---------- SECTIONS ---------- */
.section { padding: 5.5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
    font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 500; line-height: 1.15; margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold-soft); }
.section-lead {
    font-size: 1.1rem; color: var(--muted);
    max-width: 48ch; margin-bottom: 2.8rem;
}
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- SERVICE CARDS – GALLERY LEVEL ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
}
.service-card {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.7rem;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
    position: relative; overflow: hidden;
}
.service-card:hover {
    border-color: rgba(201,162,39,0.45);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.service-icon {
    font-size: 1.7rem; margin-bottom: 1.1rem; color: var(--gold);
    display: inline-block;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.45rem; font-weight: 500;
    margin-bottom: 0.7rem; color: var(--gold-soft);
}
.service-card p {
    font-size: 0.94rem; color: var(--muted);
    line-height: 1.65; margin-bottom: 1.3rem;
}

/* Unique animations */
.service-card[data-category="residential"] .service-icon { animation: houseBounce 3.2s ease-in-out infinite; }
@keyframes houseBounce {
    0%,100% { transform: translateY(0) scale(1); }
    30% { transform: translateY(-9px) scale(1.08); }
    50% { transform: translateY(-4px) scale(1.04); }
}
.service-card[data-category="parcel"] .service-icon { animation: parcelShake 2.8s ease-in-out infinite; }
@keyframes parcelShake {
    0%,100% { transform: rotate(0); }
    15% { transform: rotate(-7deg) translateY(-4px); }
    30% { transform: rotate(6deg) translateY(-7px); }
    45% { transform: rotate(-3deg); }
}
.service-card[data-category="commercial"] .service-icon { animation: buildingRise 3.6s ease-in-out infinite; }
@keyframes buildingRise {
    0%,100% { transform: translateY(7px) scaleY(0.9); opacity: 0.85; }
    50% { transform: translateY(0) scaleY(1); opacity: 1; }
}
.service-card[data-category="crossborder"] .service-icon { animation: crossSpin 4.2s linear infinite; }
@keyframes crossSpin {
    from { transform: rotate(0) scale(1); }
    50%  { transform: rotate(180deg) scale(1.12); }
    to   { transform: rotate(360deg) scale(1); }
}
.service-card[data-category="packing"] .service-icon { animation: packingWrap 2.6s ease-in-out infinite; }
@keyframes packingWrap {
    0%,100% { transform: scaleX(1); }
    40% { transform: scaleX(1.18); }
    60% { transform: scaleX(0.94); }
}
.service-card[data-category="labour"] .service-icon { animation: strengthPulse 2.1s ease-in-out infinite; }
@keyframes strengthPulse {
    0%,100% { transform: scale(1); text-shadow: none; }
    50% { transform: scale(1.22); text-shadow: 0 0 14px var(--gold); }
}
.service-card[data-category="special"]::after,
.service-card[data-category="full"]::after {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(201,162,39,0.07) 50%, transparent 60%);
    animation: shine 4.5s linear infinite;
}
@keyframes shine {
    from { transform: translateX(-35%) translateY(-35%); }
    to   { transform: translateX(35%) translateY(35%); }
}

/* Staggered entrance */
.services-grid .service-card {
    opacity: 0; transform: translateY(36px);
    animation: cardIn 0.75s cubic-bezier(0.22,1,0.36,1) forwards;
}
.services-grid .service-card:nth-child(1){animation-delay:0.06s}
.services-grid .service-card:nth-child(2){animation-delay:0.13s}
.services-grid .service-card:nth-child(3){animation-delay:0.2s}
.services-grid .service-card:nth-child(4){animation-delay:0.27s}
.services-grid .service-card:nth-child(5){animation-delay:0.34s}
.services-grid .service-card:nth-child(6){animation-delay:0.41s}
.services-grid .service-card:nth-child(7){animation-delay:0.48s}
.services-grid .service-card:nth-child(8){animation-delay:0.55s}
@keyframes cardIn { to { opacity:1; transform:translateY(0); } }

/* ---------- PAGE HERO ---------- */
.page-hero {
    padding: calc(var(--header-h) + 4.5rem) 2rem 3.8rem;
    text-align: center;
    background: radial-gradient(ellipse 75% 60% at 50% 0%, rgba(201,162,39,0.07), transparent);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.2vw, 3.8rem);
    font-weight: 500; margin-bottom: 1rem;
}
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 46ch; margin: 0 auto 1.6rem; }

/* ---------- FORMS ---------- */
.form-card {
    background: var(--bg-elevated); border: 1px solid var(--line);
    border-radius: 14px; padding: 2.6rem 2.2rem; max-width: 640px; margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block; font-size: 0.7rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; background: rgba(0,0,0,0.32);
    border: 1px solid var(--line); border-radius: 7px;
    padding: 0.85rem 1.05rem; color: var(--cream);
    font-family: var(--font-body); font-size: 0.95rem;
    transition: border-color 0.25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold);
}
.form-group textarea { min-height: 115px; resize: vertical; }
.alert { padding: 1.05rem 1.25rem; border-radius: 8px; margin-bottom: 1.4rem; font-size: 0.94rem; }
.alert-success { background: rgba(61,107,61,0.18); border:1px solid rgba(61,107,61,0.4); color:#a8d4a8; }
.alert-error { background: rgba(184,92,56,0.15); border:1px solid rgba(184,92,56,0.35); color:#e8b4a0; }
.alert-info { background: rgba(201,162,39,0.1); border:1px solid var(--line); color: var(--gold-soft); }

/* ---------- TRACKING / ABOUT / FOOTER ---------- */
.track-result { background: var(--bg-elevated); border:1px solid var(--line); border-radius: var(--radius); padding:2rem; margin-top:2rem; }
.track-status { display:inline-block; padding:0.35rem 0.9rem; border-radius:20px; font-size:0.76rem; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; }
.status-pending { background:rgba(201,162,39,0.2); color:var(--gold); }
.status-in-transit { background:rgba(70,130,180,0.2); color:#7eb8e0; }
.status-delivered { background:rgba(61,107,61,0.25); color:#a8d4a8; }
.status-cancelled { background:rgba(139,58,47,0.25); color:#e8a090; }
.track-timeline { margin-top:1.8rem; border-left:2px solid var(--line); padding-left:1.5rem; }
.track-step { position:relative; padding-bottom:1.4rem; }
.track-step::before { content:''; position:absolute; left:-1.75rem; top:0.35rem; width:10px; height:10px; border-radius:50%; background:var(--muted); border:2px solid var(--bg); }
.track-step.active::before { background:var(--gold); }
.track-step h4 { font-size:0.95rem; margin-bottom:0.2rem; }
.track-step p { font-size:0.85rem; color:var(--muted); }

.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:3.2rem; align-items:center; }
.about-content h2 { font-family:var(--font-display); font-size:2.25rem; font-weight:500; margin-bottom:1.3rem; }
.about-content p { color:var(--muted); margin-bottom:1rem; }
.stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3.2rem; text-align:center; }
.stat-item h3 { font-family:var(--font-display); font-size:2.5rem; color:var(--gold); font-weight:500; }
.stat-item p { font-size:0.85rem; color:var(--muted); letter-spacing:0.04em; }

.site-footer { border-top:1px solid var(--line); padding:4.5rem 2rem 2.2rem; margin-top:2rem; }
.footer-grid { max-width:1100px; margin:0 auto 3rem; display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:2.8rem; }
.footer-brand .logo { margin-bottom:0.9rem; }
.footer-tagline { font-family:var(--font-display); font-style:italic; color:var(--gold-soft); margin-bottom:0.9rem; }
.footer-desc { font-size:0.9rem; color:var(--muted); max-width:32ch; }
.footer-links h4, .footer-contact h4 {
    font-size:0.75rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:1.1rem;
}
.footer-links a { display:block; color:var(--muted); font-size:0.92rem; margin-bottom:0.55rem; }
.footer-links a:hover { color:var(--gold); }
.footer-contact p { font-size:0.92rem; color:var(--muted); margin-bottom:0.4rem; }
.footer-bottom {
    max-width:1100px; margin:0 auto; padding-top:1.8rem;
    border-top:1px solid rgba(255,255,255,0.05); text-align:center;
    font-size:0.85rem; color:var(--muted);
}
.footer-bottom .small { font-size:0.76rem; margin-top:0.4rem; opacity:0.7; }

/* Admin */
.admin-body { background:#0f0e0c; }
.admin-header { background:var(--bg-elevated); border-bottom:1px solid var(--line); padding:1rem 1.5rem; display:flex; justify-content:space-between; align-items:center; }
.admin-table { width:100%; border-collapse:collapse; margin-top:1.5rem; font-size:0.9rem; }
.admin-table th, .admin-table td { padding:0.9rem 1rem; text-align:left; border-bottom:1px solid var(--line); }
.admin-table th { font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); font-weight:500; }
.admin-table tr:hover td { background:rgba(255,255,255,0.02); }

/* Animations */
@keyframes fadeUp {
    from { opacity:0; transform:translateY(26px); }
    to   { opacity:1; transform:translateY(0); }
}
main > section { animation: pageReveal 0.95s cubic-bezier(0.22,1,0.36,1) both; }
main > section:nth-child(2){animation-delay:0.1s}
main > section:nth-child(3){animation-delay:0.2s}
@keyframes pageReveal {
    from { opacity:0; transform:translateY(28px); filter:blur(6px); }
    to   { opacity:1; transform:translateY(0); filter:blur(0); }
}

/* Responsive */
@media (max-width:900px) {
    .footer-grid { grid-template-columns:1fr 1fr; }
    .about-grid { grid-template-columns:1fr; gap:2.2rem; }
    .big-truck { width:170px; }
}
@media (max-width:700px) {
    .main-nav {
        display:none; position:absolute; top:var(--header-h); left:0; right:0;
        background:rgba(10,9,8,0.97); flex-direction:column; padding:1.6rem; gap:1.3rem;
        border-bottom:1px solid var(--line);
    }
    .main-nav.open { display:flex; }
    .nav-toggle { display:block; }
    .form-row { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr; gap:2rem; }
    .stats { grid-template-columns:1fr; gap:1.3rem; }
    .journey-tracker { height:78px; padding:0 0.8rem; }
    .journey-info { min-width:85px; }
    .fab { bottom:95px; right:16px; width:50px; height:50px; }
}

/* ============================================================
   NGANYA TRUCK + FLOATING WORDS + BOOTSTRAP ICONS
   ============================================================ */

/* Larger nganya truck */
.hero-truck-wrap {
    width: min(680px, 96vw) !important;
}
.hero-truck {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.big-truck {
    width: 320px !important;
    max-width: 38vw;
}

.journey-truck {
    width: 110px !important;
}

.loader-truck {
    width: 180px !important;
}

/* Floating words above the moving truck */
.floating-words {
    position: absolute;
    top: 8%;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: none;
    z-index: 20;
}
.floating-word {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.8vw, 1.8rem);
    font-weight: 500;
    color: var(--gold-soft);
    letter-spacing: 0.04em;
    margin: 0 0.6rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.floating-word.visible {
    opacity: 1;
    transform: translateY(0);
}
.floating-word span {
    color: var(--gold);
    font-style: italic;
}

/* Bootstrap Icons styling */
.bi {
    vertical-align: -0.15em;
}
.service-icon .bi {
    font-size: 1.9rem;
    color: var(--gold);
}
.btn .bi, .btn-chip .bi {
    font-size: 1em;
}
.fab .bi {
    font-size: 1.5rem;
}

/* Make service icons use Bootstrap better */
.service-card .service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border-radius: 12px;
    margin-bottom: 1.15rem;
}

/* Nganya truck specific glow */
.hero-truck, .big-truck, .journey-truck {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.55));
}

/* Remove any residual white fringing feel */
img[src*="heha-truck"] {
    background: transparent !important;
    mix-blend-mode: normal;
}

/* Force clean transparent truck rendering */
.hero-truck,
.big-truck,
.journey-truck,
.loader-truck,
img[src*="heha-truck"] {
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: normal;
    image-rendering: -webkit-optimize-contrast;
}

/* Crew cartoon cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35) !important;
}

/* Homepage crew teaser */
.section .row img {
    transition: transform 0.35s ease;
}
.section .row .col-6:hover img,
.section .row .col-md-4:hover img {
    transform: scale(1.04);
}

/* Poster showcase */
.section img.rounded-4 {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.section img.rounded-4:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4) !important;
}
