:root {
    /* Primary Colors */
    --red: #dc2626;
    --red-dark: #b91c1c;
    --red-light: #fef2f2;
    --yellow: #facc15;
    --yellow-dark: #eab308;
    --yellow-soft: #fef9e7;
    --ink: #0f172a;
    --ink-light: #1e293b;
    --muted: #64748b;
    --muted-light: #94a3b8;
    --paper: #ffffff;
    --soft: #f8fafc;
    --line: #e2e8f0;
    --line-dark: #cbd5e1;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, .08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .10);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, .14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: "Montserrat", var(--font);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 100px 0;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--soft);
}
::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--red-dark);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: var(--radius-md);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: .01em;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    transform: translateX(-100%);
    transition: var(--transition);
}
.btn:hover::after {
    transform: translateX(0);
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 8px 24px rgba(220, 38, 38, .30);
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, .35);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--line-dark);
}
.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}
.btn-dark:hover {
    background: var(--ink-light);
    transform: translateY(-2px);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--ink);
    width: 100%;
    font-weight: 800;
}
.btn-yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250, 204, 21, .35);
}

/* ===== HEADER / NAV ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.navbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand img {
    width: 170px;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}
.brand:hover img {
    filter: brightness(1.04);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-weight: 600;
    font-size: 14px;
}

.nav-links a {
    position: relative;
    color: var(--muted);
    padding: 4px 0;
    transition: var(--transition);
    letter-spacing: .02em;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2.5px;
    background: var(--red);
    border-radius: 4px;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--ink);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a.active-link {
    color: var(--red);
}
.nav-links a.active-link::after {
    width: 100%;
}

.nav-cta {
    background: var(--red) !important;
    color: #fff !important;
    padding: 11px 24px !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 8px 20px rgba(220, 38, 38, .22);
}
.nav-cta::after {
    display: none !important;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220, 38, 38, .30);
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px 4px;
}
.menu-btn span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--ink);
    border-radius: 4px;
    transition: var(--transition);
}
.menu-btn:hover span {
    background: var(--red);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse at 10% 30%, rgba(250, 204, 21, .12), transparent 40%),
        radial-gradient(ellipse at 90% 70%, rgba(220, 38, 38, .06), transparent 40%),
        linear-gradient(165deg, #fff 0%, #fff 50%, #fef9e7 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(220, 38, 38, .04);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.eyebrow,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .12em;
    font-size: 12px;
}
.eyebrow span {
    width: 28px;
    height: 3px;
    background: var(--yellow);
    border-radius: 4px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 86px);
    line-height: .96;
    letter-spacing: -.055em;
    margin: 20px 0 24px;
    text-transform: uppercase;
}
.hero h1 em {
    color: var(--red);
    font-style: normal;
    position: relative;
}
.hero h1 em::after {
    content: "";
    position: absolute;
    left: 2px;
    right: -8px;
    bottom: 4px;
    height: 12px;
    background: var(--yellow);
    z-index: -1;
    transform: skewX(-16deg);
    border-radius: 2px;
}

.hero-copy>p {
    color: var(--muted);
    max-width: 520px;
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 34px 0 44px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 44px;
}
.hero-stats div {
    display: flex;
    flex-direction: column;
}
.hero-stats strong {
    font-size: 28px;
    font-family: var(--font-display);
    color: var(--ink);
}
.hero-stats span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    min-height: 480px;
    position: relative;
}

.sun {
    position: absolute;
    right: 30px;
    top: 40px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 40% 35%, #fde047, #facc15);
    border-radius: 50%;
    opacity: .9;
    filter: blur(2px);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: .85;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.road {
    position: absolute;
    bottom: 50px;
    right: -60px;
    width: 580px;
    height: 64px;
    background: linear-gradient(180deg, #1e293b, #0f172a);
    transform: skewX(-16deg);
    border-radius: 18px;
    box-shadow: inset 0 6px 0 rgba(255, 255, 255, .06);
}
.road::after {
    content: "";
    position: absolute;
    left: 60px;
    right: 20px;
    top: 28px;
    border-top: 3px dashed var(--yellow);
    opacity: .6;
}

.truck {
    position: absolute;
    right: 30px;
    bottom: 80px;
    width: 370px;
    height: 180px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .18));
    animation: truckFloat 3s ease-in-out infinite alternate;
}

@keyframes truckFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-6px);
    }
}

.truck-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 240px;
    height: 122px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    display: grid;
    place-items: center;
    border-radius: 12px 4px 0 10px;
    border-right: 3px solid var(--yellow);
}
.truck-box img {
    width: 130px;
    height: auto;
    background: #fff;
    padding: 6px 8px;
    border-radius: 6px;
}

.truck-cab {
    position: absolute;
    right: 0;
    top: 42px;
    width: 140px;
    height: 98px;
    background: linear-gradient(145deg, #facc15, #eab308);
    border-radius: 8px 30px 4px 4px;
    clip-path: polygon(22% 0, 78% 0, 100% 44%, 100% 100%, 0 100%, 0 38%);
}
.truck-cab::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 14px;
    width: 50px;
    height: 32px;
    background: #1e293b;
    border-radius: 4px 16px 4px 4px;
    opacity: .8;
}

.wheel {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #334155, #0f172a);
    bottom: 6px;
    border: 8px solid #1e293b;
    box-shadow: inset 0 0 0 4px #94a3b8;
}
.wheel-one {
    left: 50px;
}
.wheel-two {
    right: 42px;
}

.plane {
    position: absolute;
    color: var(--red);
    right: 260px;
    top: 30px;
    font-size: 52px;
    transform: rotate(-18deg);
    animation: planeFloat 5s ease-in-out infinite alternate;
}
@keyframes planeFloat {
    0% {
        transform: rotate(-18deg) translateY(0);
    }
    100% {
        transform: rotate(-14deg) translateY(-12px);
    }
}

.route {
    position: absolute;
    border: 2.5px dashed rgba(220, 38, 38, .30);
    border-left: 0;
    border-bottom: 0;
    border-radius: 50%;
}
.route-a {
    width: 280px;
    height: 160px;
    right: 45px;
    top: 30px;
    transform: rotate(-16deg);
}

.package-card {
    position: absolute;
    z-index: 5;
    display: flex;
    gap: 14px;
    align-items: center;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, .6);
    animation: cardFloat 4s ease-in-out infinite alternate;
}
@keyframes cardFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}
.package-card b,
.package-card small {
    display: block;
}
.package-card small {
    color: var(--muted);
    font-size: 12px;
}
.package-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--yellow-soft);
    color: var(--red);
    font-weight: 900;
    font-size: 16px;
}
.package-one {
    left: 0;
    top: 120px;
    animation-delay: .2s;
}
.package-two {
    right: -20px;
    bottom: 30px;
    animation-delay: .8s;
}

/* ===== SECTION HEADING ===== */
.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 48px;
}
.section-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.6vw, 48px);
    line-height: 1.1;
    margin-top: 10px;
    letter-spacing: -.04em;
}
.section-heading>p {
    max-width: 440px;
    color: var(--muted);
    font-size: 16px;
}

/* ===== SERVICES ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    padding: 34px 28px 90px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    transition: var(--transition);
    overflow: hidden;
    min-height: 310px;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(220, 38, 38, .02), transparent);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    background: linear-gradient(145deg, var(--red), var(--red-dark));
    color: #fff;
    border-color: var(--red);
}
.service-card.featured .service-icon {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}
.service-card.featured p {
    color: rgba(255, 255, 255, .78);
}
.service-card.featured a {
    color: var(--yellow);
}
.service-card.featured .service-number {
    color: rgba(255, 255, 255, .3);
}

.service-number {
    position: absolute;
    top: 22px;
    right: 24px;
    font: 800 13px var(--font-display);
    color: var(--line-dark);
    letter-spacing: .04em;
}

.service-icon {
    font-size: 32px;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    background: var(--yellow-soft);
    color: var(--red);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    transform: scale(1.04);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.service-card p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}
.service-card a {
    position: absolute;
    bottom: 28px;
    font-weight: 700;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-card a:hover {
    gap: 12px;
}

/* ===== PROCESS / ABOUT ===== */
.process {
    background: var(--soft);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: center;
}

.process-copy>p,
.coverage p {
    color: var(--muted);
    margin: 20px 0 34px;
    max-width: 600px;
    font-size: 16px;
}

.steps {
    display: grid;
    gap: 16px;
}

.step {
    display: flex;
    gap: 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 22px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.step:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}
.step>span {
    flex: 0 0 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    background: var(--red);
    color: #fff;
    font-weight: 900;
    font-size: 18px;
}
.step h3 {
    font-size: 17px;
    margin-bottom: 2px;
}
.step p {
    color: var(--muted);
    font-size: 14px;
}

.about-panel {
    background: var(--ink);
    color: #fff;
    padding: 48px 44px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}
.about-panel::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: var(--yellow);
    border-radius: 50%;
    right: -80px;
    top: -100px;
    opacity: .08;
}
.about-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 800;
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.about-logo {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    width: 220px;
    margin: 28px 0 24px;
}
.about-panel h3 {
    font-size: 28px;
    line-height: 1.2;
}
.about-panel>p {
    color: #b8bac1;
    margin: 16px 0 24px;
    font-size: 15px;
}
.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.about-checks span {
    color: #ededf0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-checks span::before {
    content: "✓";
    color: var(--yellow);
    font-weight: 900;
}

/* ===== COVERAGE ===== */
.coverage-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.map-card {
    min-height: 400px;
    position: relative;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, #fef9e7, #fef3c7);
    overflow: hidden;
    border: 1px solid rgba(250, 204, 21, .3);
    box-shadow: var(--shadow-lg);
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(220, 38, 38, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, .06) 1px, transparent 1px);
    background-size: 44px 44px;
    transform: rotate(-6deg) scale(1.2);
}

.pin {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50% 50% 50% 0;
    background: var(--red);
    transform: rotate(-45deg);
    box-shadow: 0 8px 20px rgba(220, 38, 38, .30);
    animation: pinPulse 2.5s ease-in-out infinite;
}
@keyframes pinPulse {
    0%,
    100% {
        box-shadow: 0 8px 20px rgba(220, 38, 38, .30);
    }
    50% {
        box-shadow: 0 8px 36px rgba(220, 38, 38, .50);
    }
}
.pin::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    top: 6px;
    left: 6px;
}
.pin-1 {
    left: 16%;
    top: 28%;
}
.pin-2 {
    left: 40%;
    top: 16%;
}
.pin-3 {
    right: 22%;
    top: 32%;
}
.pin-4 {
    left: 32%;
    bottom: 20%;
}
.pin-5 {
    right: 12%;
    bottom: 16%;
}

.map-plane {
    position: absolute;
    left: 46%;
    top: 42%;
    font-size: 44px;
    color: var(--red);
    transform: rotate(18deg);
    animation: planeFloat 6s ease-in-out infinite alternate;
}

.map-note {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, .6);
}
.map-note b,
.map-note small {
    display: block;
}
.map-note small {
    color: var(--muted);
    font-size: 12px;
}

/* ===== BOOKING ===== */
.booking {
    padding-top: 25px;
}

.booking-card {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    background: linear-gradient(145deg, var(--red), var(--red-dark));
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 56px 60px;
    box-shadow: 0 28px 70px rgba(220, 38, 38, .22);
    position: relative;
    overflow: hidden;
}
.booking-card::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, .03);
    border-radius: 50%;
    right: -120px;
    top: -120px;
}

.section-tag.light {
    color: var(--yellow);
}

.booking-copy>p {
    color: rgba(255, 255, 255, .8);
    margin: 18px 0 32px;
    font-size: 16px;
}

.contact-mini {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.contact-mini small,
.contact-mini b {
    display: block;
}
.contact-mini small {
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.contact-mini b {
    font-size: 18px;
}
.contact-mini a {
    color: #fff;
    transition: var(--transition);
}
.contact-mini a:hover {
    color: var(--yellow);
}

.booking-form {
    background: #fff;
    color: var(--ink);
    padding: 32px 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.field {
    margin-bottom: 14px;
}
.field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--ink-light);
}
.field input,
.field select {
    width: 100%;
    border: 1.5px solid var(--line);
    background: var(--soft);
    border-radius: var(--radius-sm);
    padding: 13px 15px;
    outline: none;
    transition: var(--transition);
    font-size: 14px;
}
.field input:focus,
.field select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, .15);
    background: #fff;
}
.field input::placeholder {
    color: var(--muted-light);
}

.booking-message {
    min-height: 22px;
    margin-top: 12px;
    font-size: 14px;
    color: #16a34a;
    text-align: center;
    font-weight: 600;
}

/* ===== TRACKING PAGE ===== */
.active-link {
    color: var(--red) !important;
}

.tracking-page {
    min-height: 100vh;
    background: var(--soft);
}

.tracking-hero {
    min-height: 660px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background:
        radial-gradient(ellipse at 8% 20%, rgba(250, 204, 21, .12), transparent 30%),
        radial-gradient(ellipse at 92% 80%, rgba(220, 38, 38, .04), transparent 30%),
        linear-gradient(165deg, #fff 0%, #fff 55%, #fef9e7 100%);
}

.tracking-page-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 70px;
    align-items: center;
}

.tracking-page-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 5.4vw, 74px);
    line-height: 1;
    letter-spacing: -.055em;
    text-transform: uppercase;
    margin: 16px 0 22px;
}
.tracking-page-copy h1 em {
    color: var(--red);
    font-style: normal;
}

.tracking-page-copy>p {
    max-width: 520px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.tracking-help {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.help-icon {
    flex: 0 0 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    border-radius: 50%;
    font-weight: 900;
    font-size: 16px;
    color: var(--ink);
}
.tracking-help strong,
.tracking-help span {
    display: block;
}
.tracking-help strong {
    font-size: 14px;
}
.tracking-help span {
    color: var(--muted);
    font-size: 13px;
}

.tracking-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 36px 38px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.tracking-box-head {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.tracking-box-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    background: var(--red);
    color: #fff;
    font-size: 26px;
}
.tracking-box-head span {
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.tracking-box-head h2 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: -.03em;
}

.tracking-page-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 13px;
    color: var(--ink-light);
}

.tracking-input-wrap {
    display: flex;
    gap: 12px;
}
.tracking-input-wrap input {
    flex: 1;
    min-width: 0;
    border: 1.5px solid var(--line);
    background: var(--soft);
    border-radius: var(--radius-sm);
    padding: 15px 18px;
    outline: none;
    transition: var(--transition);
    font-size: 14px;
}
.tracking-input-wrap input:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, .15);
    background: #fff;
}
.tracking-input-wrap input::placeholder {
    color: var(--muted-light);
}

.tracking-error {
    min-height: 20px;
    margin-top: 12px;
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
}

/* ===== TRACKING RESULT ===== */
.tracking-result {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.result-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.result-top small,
.result-top strong {
    display: block;
}
.result-top small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.result-top strong {
    font-size: 20px;
    font-family: var(--font-display);
}

.status-badge {
    padding: 6px 16px;
    border-radius: 30px;
    background: var(--yellow-soft);
    color: #92400e;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    align-self: center;
}

.tracking-progress {
    position: relative;
    display: grid;
    gap: 18px;
    margin: 10px 0 28px;
}
.progress-line {
    position: absolute;
    left: 19px;
    top: 22px;
    bottom: 22px;
    width: 3px;
    background: var(--line);
    border-radius: 4px;
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}
.progress-step>span {
    flex: 0 0 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--line);
    font-weight: 900;
    font-size: 14px;
    color: var(--muted);
    transition: var(--transition);
}
.progress-step.completed>span {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
}
.progress-step.current>span {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
    box-shadow: 0 0 0 8px rgba(220, 38, 38, .12);
    animation: currentPulse 2s ease-in-out infinite;
}
@keyframes currentPulse {
    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(220, 38, 38, .12);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(220, 38, 38, .06);
    }
}
.progress-step strong,
.progress-step small {
    display: block;
}
.progress-step strong {
    font-size: 15px;
}
.progress-step small {
    color: var(--muted);
    font-size: 12px;
}

.shipment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px 24px;
    background: var(--soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
}
.shipment-details small,
.shipment-details strong {
    display: block;
}
.shipment-details small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.shipment-details strong {
    font-size: 15px;
    margin-top: 2px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: #fff;
    padding: 70px 0 28px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr 1fr;
    gap: 50px;
}

.footer-brand img {
    width: 190px;
    height: auto;
    background: #fff;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
}
.footer-brand p,
footer p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}

footer h4 {
    margin-bottom: 16px;
    color: var(--yellow);
    font-size: 15px;
    letter-spacing: .04em;
}
footer a {
    display: block;
    color: #94a3b8;
    margin: 8px 0;
    transition: var(--transition);
    font-size: 14px;
}
footer a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}
footer address p {
    margin: 6px 0;
    font-style: normal;
}
footer address a {
    display: inline-block;
    margin: 2px 0;
}
footer address small {
    display: block;
    color: #cbd5e1;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* office locations */
.footer-offices {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.office-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-left: 3px solid var(--yellow);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}
.office-card strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 4px;
}
.office-card span {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .office-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .office-grid { grid-template-columns: 1fr; }
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    color: #64748b;
    font-size: 13px;
}
.footer-bottom a {
    display: inline-block;
    margin: 0;
    color: #64748b;
}
.footer-bottom a:hover {
    transform: none;
    color: var(--yellow);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
    .footer-grid>div:last-child {
        grid-column: 1 / -1;
    }
    .tracking-page-grid {
        gap: 40px;
    }
}

/* Small Tablet / Large Phone */
@media (max-width: 900px) {
    .hero-grid,
    .process-grid,
    .coverage-grid,
    .booking-card,
    .tracking-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 80px;
    }
    .hero-visual {
        min-height: 400px;
        margin-top: 20px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .section-heading>p {
        max-width: 100%;
    }

    .booking-card {
        padding: 40px 32px;
    }
    .tracking-hero {
        min-height: auto;
        padding: 60px 0;
    }
    .tracking-box {
        padding: 28px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Phone */
@media (max-width: 650px) {
    .container {
        width: min(100% - 24px, 1200px);
    }
    .section {
        padding: 60px 0;
    }

    /* Navigation */
    .menu-btn {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        background: var(--paper);
        padding: 24px 20px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border: 1px solid var(--line);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        font-size: 15px;
    }
    .nav-links a::after {
        display: none;
    }
    .nav-links a:hover {
        background: var(--soft);
    }
    .nav-links a.active-link {
        background: var(--red-light);
    }
    .nav-cta {
        text-align: center;
        margin-top: 4px;
    }

    .brand img {
        width: 140px;
    }

    /* Hero */
    .hero h1 {
        font-size: 42px;
    }
    .hero-copy>p {
        font-size: 16px;
    }
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .hero-stats strong {
        font-size: 22px;
    }
    .hero-actions {
        gap: 10px;
    }
    .hero-actions .btn {
        flex: 1;
        min-width: 140px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-visual {
        min-height: 340px;
        transform: scale(.78);
        transform-origin: top center;
        margin-bottom: -50px;
        margin-top: -10px;
    }
    .truck {
        transform: scale(.72);
        right: -50px;
        bottom: 60px;
    }
    .sun {
        width: 200px;
        height: 200px;
        right: 10px;
        top: 30px;
    }
    .road {
        width: 460px;
        right: -40px;
        height: 50px;
        bottom: 30px;
    }
    .plane {
        right: 180px;
        font-size: 38px;
        top: 20px;
    }
    .route-a {
        width: 200px;
        height: 120px;
        right: 30px;
        top: 20px;
    }
    .package-one {
        left: -30px;
        top: 100px;
        padding: 10px 14px;
        font-size: 13px;
    }
    .package-two {
        right: -40px;
        bottom: 10px;
        padding: 10px 14px;
        font-size: 13px;
    }
    .package-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    /* Services */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-card {
        min-height: 260px;
        padding: 26px 22px 80px;
    }
    .service-card h3 {
        font-size: 18px;
    }

    /* Process */
    .process-grid {
        gap: 30px;
    }
    .steps {
        gap: 12px;
    }
    .step {
        padding: 16px 18px;
        gap: 14px;
    }
    .step>span {
        flex: 0 0 40px;
        height: 40px;
        font-size: 15px;
    }
    .about-panel {
        padding: 30px 24px;
    }
    .about-panel h3 {
        font-size: 24px;
    }
    .about-checks {
        grid-template-columns: 1fr;
    }
    .about-logo {
        width: 180px;
    }

    /* Coverage */
    .coverage-grid {
        gap: 30px;
    }
    .map-card {
        min-height: 300px;
    }
    .map-grid {
        background-size: 30px 30px;
    }
    .pin {
        width: 16px;
        height: 16px;
    }
    .pin::after {
        width: 5px;
        height: 5px;
        top: 4px;
        left: 4px;
    }
    .map-plane {
        font-size: 32px;
        left: 44%;
        top: 40%;
    }
    .map-note {
        padding: 10px 14px;
        font-size: 13px;
        left: 16px;
        bottom: 16px;
    }

    /* Booking */
    .booking-card {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
        gap: 28px;
    }
    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .booking-form {
        padding: 24px 20px;
    }

    /* Tracking */
    .tracking-page-copy h1 {
        font-size: 36px;
    }
    .tracking-page-copy>p {
        font-size: 15px;
    }
    .tracking-box {
        padding: 20px 16px;
        border-radius: var(--radius-lg);
    }
    .tracking-box-head h2 {
        font-size: 20px;
    }
    .tracking-box-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
    .tracking-input-wrap {
        flex-direction: column;
        gap: 10px;
    }
    .tracking-input-wrap input {
        padding: 14px 16px;
    }
    .tracking-input-wrap .btn {
        width: 100%;
    }
    .tracking-help {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }
    .shipment-details {
        grid-template-columns: 1fr 1fr;
        padding: 16px;
    }
    .result-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .result-top strong {
        font-size: 17px;
    }

    /* Footer */
    footer {
        padding: 50px 0 24px;
        margin-top: 60px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-brand img {
        width: 160px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        margin-top: 32px;
        padding-top: 18px;
    }

    /* General */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    .section-tag,
    .eyebrow {
        font-size: 11px;
    }
}

/* Very small phones */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 34px;
    }
    .hero-visual {
        transform: scale(.65);
        margin-bottom: -70px;
        margin-top: -30px;
    }
    .tracking-page-copy h1 {
        font-size: 30px;
    }
    .service-card {
        padding: 20px 16px 70px;
    }
    .booking-card {
        padding: 20px 16px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-brand {
        grid-column: 1;
    }
}

/* ===== UTILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ===== PRINT ===== */
@media print {
    .menu-btn,
    .hero-visual,
    .map-card,
    .nav-links .nav-cta {
        display: none !important;
    }
    .site-header {
        position: static;
        backdrop-filter: none;
        background: #fff;
    }
    .hero {
        min-height: auto;
        padding: 40px 0;
        background: #fff !important;
    }
    .section {
        padding: 40px 0;
    }
    .btn {
        border: 1px solid #ccc;
        background: #f5f5f5 !important;
        color: #000 !important;
        box-shadow: none !important;
    }
}
/* ==============================================================
   LIVE TRACKING  (added for the carrier API integration)
   ============================================================== */

.tracking-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}
.tracking-loading .spinner {
    width: 18px;
    height: 18px;
    border: 3px solid var(--line);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: trackSpin .7s linear infinite;
    flex: 0 0 18px;
}
@keyframes trackSpin { to { transform: rotate(360deg); } }

/* The badge earns its colour from the real status. */
.status-badge.ok    { background: #dcfce7; color: #166534; }
.status-badge.warn  { background: var(--red-light); color: var(--red-dark); }
.status-badge.muted { background: var(--soft); color: var(--muted); }

/* Says plainly that this came from the carrier, not from us. */
.live-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
}
.live-flag i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16a34a;
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,.45); }
    50%      { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
}

.tracking-notice {
    margin: -8px 0 24px;
    padding: 12px 16px;
    background: var(--yellow-soft);
    border-left: 3px solid var(--yellow);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: #854d0e;
}

/* Every scan the carrier reported, newest first. */
.tracking-events { margin-top: 28px; }
.tracking-events h3 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted);
    margin-bottom: 16px;
}
.tracking-events ul { list-style: none; position: relative; }
.tracking-events li {
    position: relative;
    display: flex;
    gap: 16px;
    padding: 0 0 20px 0;
}
.tracking-events li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 14px;
    bottom: -4px;
    width: 2px;
    background: var(--line);
}
.tracking-events li:last-child::before { display: none; }

.event-dot {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    margin-top: 4px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--line-dark);
    position: relative;
    z-index: 1;
}
.tracking-events li.latest .event-dot { border-color: var(--red); background: var(--red); }

.event-body strong { display: block; font-size: 14px; font-weight: 600; }
.tracking-events li.latest .event-body strong { font-weight: 800; }
.event-body small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--muted);
}
.event-place::before { content: ' · '; }

@media (max-width: 640px) {
    .tracking-events li { gap: 12px; }
    .event-body strong { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
    .tracking-loading .spinner, .live-flag i, .progress-step.current > span {
        animation: none;
    }
}


/* ---------- promo banner (home) ---------- */
.promo-banner {
    padding: 24px 0 8px;
    background: #fff;
}
.promo-banner-link {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px -18px rgba(15, 23, 42, .35);
    transition: transform .25s ease, box-shadow .25s ease;
}
.promo-banner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px -18px rgba(15, 23, 42, .45);
}
.promo-banner img {
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 560px) {
    .promo-banner { padding: 14px 0 4px; }
    .promo-banner-link { border-radius: 12px; }
}
