/* ══════════════════════════════════════════════════════════════
   Cargovael – Shared Stylesheet
   Used by: _Layout, index.html, track-detail.html
   ══════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
    --sky: #2BBFFF;
    --sky-light: #A8E6FF;
    --sky-dark: #0095D9;
    --gold: #FFCC00;
    --gold-dark: #E6B800;
    --gold-light: #FFF3A3;
    --green: #22C55E;
    --bg: #F4FAFF;
    --bg-card: #FFFFFF;
    --bg-nav: rgba(244,250,255,0.92);
    --text: #0D1B2A;
    --text-sub: #4A637A;
    --border: rgba(43,191,255,0.18);
    --shadow: 0 8px 40px rgba(43,191,255,0.13);
    --hero-grad: linear-gradient(135deg, #0D1B2A 0%, #093A5C 55%, #0473A1 100%);
}

[data-theme="dark"] {
    --bg: #0A111A;
    --bg-card: #101E2D;
    --bg-nav: rgba(10,17,26,0.95);
    --text: #E8F4FF;
    --text-sub: #7AAFCC;
    --border: rgba(43,191,255,0.15);
    --shadow: 0 8px 40px rgba(0,0,0,0.5);
    --hero-grad: linear-gradient(135deg, #040A10 0%, #061825 55%, #0473A1 100%);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: background .35s, color .35s;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
    background: var(--bg-nav) !important;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: background .35s;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar-brand {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 1.65rem;
    color: var(--sky) !important;
    letter-spacing: -0.3px;
}

    .navbar-brand span {
        color: var(--gold);
    }

.nav-link {
    font-weight: 500;
    color: var(--text) !important;
    margin: 0 4px;
    transition: color .2s;
}

    .nav-link:hover {
        color: var(--sky) !important;
    }

.btn-quote {
    background: var(--gold);
    color: #0D1B2A;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: .45rem 1.4rem;
    font-size: .9rem;
    transition: background .2s, transform .2s;
}

    .btn-quote:hover {
        background: var(--gold-dark);
        transform: translateY(-1px);
    }

#themeToggle {
    background: none;
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all .2s;
}

    #themeToggle:hover {
        background: var(--sky);
        color: #fff;
        border-color: var(--sky);
    }

/* ── SHARED HERO DOT PATTERN ────────────────────────────────── */
/* Applied via .hero::before and .page-hero::before in each page */
.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232BBFFF' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* ── SECTION COMMON ─────────────────────────────────────────── */
.section {
    padding: 100px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--sky);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

    .section-tag::before {
        content: '';
        width: 24px;
        height: 2px;
        background: var(--sky);
        display: block;
    }

.section-title {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    line-height: 1.18;
    letter-spacing: -.3px;
}

/* ── SHARED BUTTONS ─────────────────────────────────────────── */
.btn-sky {
    background: var(--sky);
    color: #0D1B2A;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: .75rem 2rem;
    font-size: 1rem;
    transition: all .2s;
}

    .btn-sky:hover {
        background: var(--sky-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(43,191,255,.4);
    }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: 30px;
    padding: .75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all .2s;
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,.1);
        color: #fff;
    }

/* ── STATUS PILLS (track-detail) ────────────────────────────── */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 30px;
    padding: .45rem 1.1rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
}

    .status-pill.in-transit {
        background: rgba(43,191,255,.18);
        color: var(--sky);
        border: 1px solid rgba(43,191,255,.35);
    }

    .status-pill.delivered {
        background: rgba(34,197,94,.15);
        color: #22C55E;
        border: 1px solid rgba(34,197,94,.3);
    }

    .status-pill.pending {
        background: rgba(255,204,0,.15);
        color: var(--gold);
        border: 1px solid rgba(255,204,0,.35);
    }

    .status-pill.delayed {
        background: rgba(239,68,68,.15);
        color: #EF4444;
        border: 1px solid rgba(239,68,68,.3);
    }

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

/* ── INDEX: HERO ────────────────────────────────────────────── */
.hero {
    background: var(--hero-grad);
    min-height: 92vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,204,0,.15);
    border: 1px solid rgba(255,204,0,.35);
    color: var(--gold);
    border-radius: 30px;
    padding: .35rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
    letter-spacing: .04em;
    animation: fadeUp .7s ease both;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    animation: fadeUp .7s .15s ease both;
}

    .hero h1 em {
        color: var(--sky);
        font-style: normal;
    }

    .hero h1 strong {
        color: var(--gold);
    }

.hero-sub {
    font-size: 1.08rem;
    color: rgba(255,255,255,.72);
    max-width: 520px;
    line-height: 1.7;
    margin-top: 1.2rem;
    animation: fadeUp .7s .3s ease both;
}

.hero-cta {
    animation: fadeUp .7s .45s ease both;
}

.hero-visuals {
    position: relative;
    height: 420px;
    animation: fadeRight .9s .3s ease both;
}

.hero-img-plane {
    position: absolute;
    width: 88%;
    max-width: 480px;
    top: 0;
    right: 0;
    border-radius: 18px;
    border: 3px solid rgba(43,191,255,.3);
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    object-fit: cover;
    height: 260px;
}

.hero-img-ship {
    position: absolute;
    width: 70%;
    max-width: 360px;
    bottom: 0;
    left: 0;
    border-radius: 18px;
    border: 3px solid rgba(255,204,0,.3);
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    object-fit: cover;
    height: 200px;
}

.hero-stat-pill {
    position: absolute;
    bottom: 80px;
    right: -10px;
    background: rgba(255,204,0,.92);
    color: #0D1B2A;
    border-radius: 14px;
    padding: .6rem 1.1rem;
    font-weight: 400;
    font-family: 'DM Serif Display', serif;
    font-size: .85rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    animation: float 3s ease-in-out infinite;
}

    .hero-stat-pill span {
        font-size: 1.3rem;
        display: block;
    }

.wave-divider {
    line-height: 0;
}

    .wave-divider svg {
        display: block;
        width: 100%;
    }

/* ── INDEX: MARQUEE ─────────────────────────────────────────── */
.marquee-strip {
    background: var(--sky);
    overflow: hidden;
    padding: .65rem 0;
}

.marquee-inner {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
    width: max-content;
}

    .marquee-inner span {
        font-family: 'DM Serif Display', serif;
        font-weight: 400;
        font-size: .9rem;
        color: #0D1B2A;
        display: flex;
        align-items: center;
        gap: .6rem;
    }

        .marquee-inner span i {
            font-size: 1rem;
        }

/* ── INDEX: SERVICES ────────────────────────────────────────── */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all .3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0;
        background: linear-gradient(135deg, rgba(43,191,255,.08), transparent);
        transition: opacity .3s;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

        .service-card:hover::before {
            opacity: 1;
        }

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.2rem;
}

.service-card h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: .6rem;
}

.service-card p {
    font-size: .92rem;
    color: var(--text-sub);
    line-height: 1.65;
}

/* ── INDEX: STATS ───────────────────────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, #093A5C 0%, #0D1B2A 100%);
    padding: 80px 0;
}

.stat-item h3 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    margin-bottom: .3rem;
}

.stat-item p {
    color: rgba(255,255,255,.7);
    font-size: .95rem;
}

.stat-divider {
    width: 1px;
    background: rgba(255,255,255,.12);
}

/* ── INDEX: HOW IT WORKS ────────────────────────────────────── */
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    text-align: center;
    transition: all .3s;
}

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold);
    color: #0D1B2A;
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.step-card h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    margin-bottom: .5rem;
}

.step-card p {
    font-size: .9rem;
    color: var(--text-sub);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 42px;
    right: -28px;
    color: var(--gold);
    font-size: 1.4rem;
    z-index: 1;
}

/* ── INDEX: WHY CHOOSE US ───────────────────────────────────── */
.feature-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.6rem;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(43,191,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--sky);
}

.feature-text h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    margin-bottom: .25rem;
}

.feature-text p {
    font-size: .88rem;
    color: var(--text-sub);
    line-height: 1.55;
}

.why-image {
    border-radius: 24px;
    width: 100%;
    object-fit: cover;
    height: 460px;
    border: 3px solid var(--border);
    box-shadow: var(--shadow);
}

.why-accent {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--gold);
    color: #0D1B2A;
    border-radius: 18px;
    padding: 1rem 1.4rem;
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
    text-align: center;
}

    .why-accent span {
        font-size: 1.8rem;
        display: block;
        line-height: 1;
    }

    .why-accent small {
        font-size: .72rem;
        font-weight: 600;
        opacity: .75;
    }

/* ── INDEX: TESTIMONIALS ────────────────────────────────────── */
.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.testi-stars {
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: .8rem;
}

.testi-text {
    font-size: .93rem;
    color: var(--text-sub);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'DM Serif Display', serif;
}

.testi-name {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: .92rem;
}

.testi-role {
    font-size: .8rem;
    color: var(--text-sub);
}

/* ── INDEX: TRACKING SECTION ────────────────────────────────── */
.tracking-section {
    background: linear-gradient(135deg, var(--sky-dark) 0%, #005D8A 100%);
    padding: 80px 0;
}

.tracking-card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 24px;
    padding: 2.5rem;
}

    .tracking-card h2 {
        font-family: 'DM Serif Display', serif;
        font-weight: 400;
        color: #fff;
    }

    .tracking-card p {
        color: rgba(255,255,255,.75);
    }

.track-input {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    border-radius: 12px;
    padding: .8rem 1.2rem;
    font-size: .95rem;
    width: 100%;
}

    .track-input::placeholder {
        color: rgba(255,255,255,.55);
    }

    .track-input:focus {
        outline: none;
        border-color: var(--gold);
        background: rgba(255,255,255,.2);
    }

.btn-track {
    background: var(--gold);
    color: #0D1B2A;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: .8rem 2rem;
    font-size: .95rem;
    transition: all .2s;
    white-space: nowrap;
}

    .btn-track:hover {
        background: var(--gold-dark);
        transform: translateY(-2px);
    }

/* ── INDEX: CTA BANNER ──────────────────────────────────────── */
.cta-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
}

.cta-inner {
    background: linear-gradient(135deg, #0D1B2A, #093A5C);
    border-radius: 28px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

    .cta-inner::before {
        content: '';
        position: absolute;
        right: -60px;
        top: -60px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(43,191,255,.2), transparent 70%);
        pointer-events: none;
    }

    .cta-inner h2 {
        font-family: 'DM Serif Display', serif;
        font-weight: 400;
        color: #fff;
    }

    .cta-inner p {
        color: rgba(255,255,255,.7);
    }

/* ── TRACK-DETAIL: PAGE HERO ────────────────────────────────── */
.page-hero {
    background: var(--hero-grad);
    padding: 52px 0 70px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-nav {
    color: rgba(255,255,255,.55);
    font-size: .84rem;
    margin-bottom: 1.2rem;
}

    .breadcrumb-nav a {
        color: rgba(255,255,255,.55);
        text-decoration: none;
        transition: color .2s;
    }

        .breadcrumb-nav a:hover {
            color: var(--sky);
        }

    .breadcrumb-nav .sep {
        margin: 0 .5rem;
    }

    .breadcrumb-nav .current {
        color: rgba(255,255,255,.85);
    }

.page-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #fff;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: .5rem;
    animation: fadeUp .6s ease both;
}

    .page-hero h1 em {
        color: var(--sky);
        font-style: normal;
    }

.page-hero-sub {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    animation: fadeUp .6s .15s ease both;
}

/* ── TRACK-DETAIL: MAIN CONTENT ─────────────────────────────── */
.main-content {
    padding: 40px 0 80px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

/* ── TRACK-DETAIL: CARDS ────────────────────────────────────── */
.track-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all .3s;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .track-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--sky), var(--sky-dark));
        border-radius: 20px 20px 0 0;
    }

.card-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-sub);
    margin-bottom: .3rem;
}

.card-value {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 400;
}

    .card-value.large {
        font-size: 1.4rem;
    }

.card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* ── TRACK-DETAIL: ROUTE MAP ────────────────────────────────── */
.route-visual {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 1.5rem 0;
    position: relative;
}

.route-city {
    flex-shrink: 0;
    text-align: center;
}

.route-city-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 auto .6rem;
}

    .route-city-icon.dest {
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        color: #0D1B2A;
    }

.route-city-name {
    font-weight: 700;
    font-size: .95rem;
}

.route-city-sub {
    font-size: .78rem;
    color: var(--text-sub);
    margin-top: .15rem;
}

.route-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--sky), rgba(43,191,255,.3), var(--gold));
    position: relative;
    margin: 0 1rem;
    margin-bottom: 26px;
}

.route-plane {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    background: var(--bg-card);
    border: 2px solid var(--sky);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky);
    font-size: 1rem;
    animation: planeFly 3s ease-in-out infinite;
}

@keyframes planeFly {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-5px);
    }
}

.route-progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    margin-top: 1.2rem;
    overflow: hidden;
}

.route-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sky), var(--gold));
    border-radius: 4px;
    width: 62%;
    animation: progressFill 1.5s ease both;
}

@keyframes progressFill {
    from {
        width: 0;
    }

    to {
        width: 62%;
    }
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
    color: var(--text-sub);
    margin-top: .4rem;
}

/* ── TRACK-DETAIL: TIMELINE ─────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: 28px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 8px;
        bottom: 8px;
        width: 2px;
        background: var(--border);
    }

.timeline-item {
    position: relative;
    padding-bottom: 1.8rem;
}

    .timeline-item:last-child {
        padding-bottom: 0;
    }

.timeline-dot {
    position: absolute;
    left: -24px;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

    .timeline-dot.active {
        border-color: var(--sky);
        background: var(--sky);
        box-shadow: 0 0 0 4px rgba(43,191,255,.2);
    }

    .timeline-dot.done {
        border-color: var(--green);
        background: var(--green);
    }

    .timeline-dot i {
        font-size: .55rem;
        color: #fff;
    }

.timeline-time {
    font-size: .75rem;
    color: var(--text-sub);
    margin-bottom: .2rem;
}

.timeline-event {
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .2rem;
}

.timeline-loc {
    font-size: .8rem;
    color: var(--text-sub);
    display: flex;
    align-items: center;
    gap: .3rem;
}

/* ── TRACK-DETAIL: DETAIL GRID ──────────────────────────────── */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

@media (max-width: 576px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

.detail-item {
    padding: .9rem 1rem;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
}

    .detail-item .di-label {
        font-size: .72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--text-sub);
        margin-bottom: .25rem;
    }

    .detail-item .di-value {
        font-weight: 600;
        font-size: .92rem;
        color: var(--text);
    }

    .detail-item .di-icon {
        font-size: 1rem;
        color: var(--sky);
        margin-bottom: .4rem;
        display: block;
    }

/* ── TRACK-DETAIL: GALLERY ──────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
    transition: all .3s;
}

    .gallery-item:hover {
        transform: scale(1.02);
        box-shadow: var(--shadow);
    }

    .gallery-item.featured {
        grid-column: span 2;
        aspect-ratio: 16/7;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: 1rem .85rem .6rem;
}

.gallery-tag {
    position: absolute;
    top: .6rem;
    right: .6rem;
    background: rgba(43,191,255,.85);
    color: #0D1B2A;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .2rem .55rem;
    border-radius: 6px;
    text-transform: uppercase;
}

    .gallery-tag.gold {
        background: rgba(255,204,0,.9);
    }

    .gallery-tag.green {
        background: rgba(34,197,94,.85);
        color: #fff;
    }

/* ── TRACK-DETAIL: LIGHTBOX ─────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    animation: fadeIn .25s ease;
}

    .lightbox.open {
        display: flex;
    }

    .lightbox img {
        max-width: 90vw;
        max-height: 85vh;
        border-radius: 16px;
        box-shadow: 0 30px 80px rgba(0,0,0,.6);
    }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

    .lightbox-close:hover {
        background: rgba(255,255,255,.25);
    }

.lightbox-caption {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.75);
    font-size: .88rem;
    white-space: nowrap;
}

/* ── TRACK-DETAIL: DOCUMENTS ────────────────────────────────── */
.doc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .9rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--bg);
    transition: all .2s;
    cursor: pointer;
}

    .doc-item:hover {
        border-color: var(--sky);
        background: rgba(43,191,255,.05);
    }

.doc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

    .doc-icon.pdf {
        background: rgba(239,68,68,.1);
        color: #EF4444;
    }

    .doc-icon.img {
        background: rgba(43,191,255,.12);
        color: var(--sky);
    }

.doc-name {
    font-weight: 600;
    font-size: .88rem;
    margin-bottom: .1rem;
}

.doc-meta {
    font-size: .75rem;
    color: var(--text-sub);
}

.doc-dl {
    margin-left: auto;
    color: var(--sky);
    font-size: .9rem;
    flex-shrink: 0;
}

/* ── TRACK-DETAIL: CONTACTS ─────────────────────────────────── */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
}

    .contact-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

.contact-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: #fff;
}

    .contact-avatar.origin {
        background: linear-gradient(135deg, var(--sky), var(--sky-dark));
    }

    .contact-avatar.dest {
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        color: #0D1B2A;
    }

.contact-role {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-sub);
    margin-bottom: .15rem;
}

.contact-name {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .1rem;
}

.contact-detail {
    font-size: .8rem;
    color: var(--text-sub);
}

/* ── TRACK-DETAIL: QUICK ACTIONS ────────────────────────────── */
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem 1rem;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    border: 1.5px solid var(--border);
    color: var(--text);
    background: var(--bg-card);
    width: 100%;
}

    .action-btn:hover {
        border-color: var(--sky);
        color: var(--sky);
        background: rgba(43,191,255,.06);
    }

    .action-btn.primary {
        background: var(--sky);
        color: #0D1B2A;
        border-color: var(--sky);
    }

        .action-btn.primary:hover {
            background: var(--sky-dark);
            color: #fff;
        }

    .action-btn i {
        font-size: .95rem;
    }

/* ── TRACK-DETAIL: MINI STATS ───────────────────────────────── */
.mini-stat {
    text-align: center;
    padding: 1rem;
    border-radius: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
}

.mini-stat-val {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: var(--sky);
    font-weight: 400;
    line-height: 1;
}

.mini-stat-label {
    font-size: .75rem;
    color: var(--text-sub);
    margin-top: .3rem;
    font-weight: 600;
}

/* ── SHARED: LIVE CHAT ──────────────────────────────────────── */
.chat-bubble {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}

.chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    box-shadow: 0 6px 28px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0D1B2A;
    transition: all .25s;
    position: relative;
}

    .chat-btn:hover {
        transform: scale(1.08);
        background: var(--gold-dark);
    }

.chat-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #22C55E;
    border: 2px solid #fff;
}

.chat-window {
    position: absolute;
    bottom: 74px;
    right: 0;
    width: 330px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    overflow: hidden;
    display: none;
    animation: slideUp .3s ease;
}

    .chat-window.open {
        display: flex;
        flex-direction: column;
    }

.chat-header {
    background: linear-gradient(135deg, #0D1B2A, #093A5C);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #0D1B2A;
    font-weight: 700;
}

.chat-agent-name {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    color: #fff;
    font-size: .92rem;
}

.chat-status {
    font-size: .75rem;
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    gap: .3rem;
}

    .chat-status::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #22C55E;
        display: block;
    }

.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255,255,255,.6);
    font-size: 1.1rem;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1rem .5rem;
    max-height: 260px;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.chat-msg {
    padding: .6rem .9rem;
    border-radius: 14px;
    font-size: .84rem;
    line-height: 1.5;
    max-width: 86%;
}

    .chat-msg.agent {
        background: rgba(43,191,255,.12);
        color: var(--text);
        border-bottom-left-radius: 4px;
        align-self: flex-start;
    }

    .chat-msg.user {
        background: var(--sky);
        color: #0D1B2A;
        font-weight: 500;
        border-bottom-right-radius: 4px;
        align-self: flex-end;
    }

.chat-footer {
    padding: .75rem 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: .5rem;
}

.chat-input {
    flex: 1;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .5rem .8rem;
    font-size: .85rem;
}

    .chat-input:focus {
        outline: none;
        border-color: var(--sky);
    }

.chat-send {
    background: var(--sky);
    border: none;
    border-radius: 10px;
    width: 36px;
    height: 36px;
    color: #0D1B2A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .9rem;
    transition: background .2s;
}

    .chat-send:hover {
        background: var(--sky-dark);
        color: #fff;
    }

/* ── SHARED: FOOTER ─────────────────────────────────────────── */
footer,
.page-footer {
    background: #080F17;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.page-footer {
    padding: 32px 0;
}

.footer-brand {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--sky);
}

    .footer-brand span {
        color: var(--gold);
    }

.footer-tagline {
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    margin-top: .4rem;
}

.footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-link {
    display: block;
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    margin-bottom: .55rem;
    text-decoration: none;
    transition: color .2s;
}

    .footer-link:hover {
        color: var(--sky);
    }

.footer-divider {
    border-top: 1px solid rgba(255,255,255,.08);
    margin: 40px 0 24px;
}

.footer-copy {
    color: rgba(255,255,255,.35);
    font-size: .82rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .95rem;
    transition: all .2s;
    margin-right: .4rem;
}

    .social-btn:hover {
        background: var(--sky);
        color: #fff;
    }

/* ── SHARED: ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-ring 2s ease-out infinite;
}

.anim-up {
    animation: fadeUp .6s ease both;
}

.anim-up-1 {
    animation: fadeUp .6s .1s ease both;
}

.anim-up-2 {
    animation: fadeUp .6s .2s ease both;
}

.anim-up-3 {
    animation: fadeUp .6s .3s ease both;
}

.anim-up-4 {
    animation: fadeUp .6s .4s ease both;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-visuals {
        height: 300px;
        margin-top: 3rem;
    }

    .hero-img-plane {
        height: 190px;
    }

    .hero-img-ship {
        height: 160px;
    }

    .step-connector {
        display: none;
    }

    .why-accent {
        left: 10px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 36px 0 60px;
    }

    .route-visual {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
    }

    .route-line {
        width: 2px;
        height: 50px;
        margin: .5rem 0 .5rem 25px;
        background: linear-gradient(180deg, var(--sky), var(--gold));
    }

    .route-plane {
        display: none;
    }

    .route-city {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }

    .route-city-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .gallery-item.featured {
        grid-column: span 2;
        aspect-ratio: 4/3;
    }

    .mini-stat-val {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .hero-visuals {
        height: 250px;
    }

    .cta-inner {
        padding: 40px 24px;
    }
}
