
/* ============================================
   DESIGN SYSTEM
============================================ */
:root {
    --navy-900: #0a1929;
    --navy-800: #0d2847;
    --navy-700: #12355b;
    --navy-600: #1a4472;
    --blue-500: #1e88e5;
    --blue-400: #2196f3;
    --blue-300: #64b5f6;
    --accent: #00bcd4;
    --accent-2: #ff6b35;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --shadow-sm: 0 2px 8px rgba(10, 25, 41, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 25, 41, 0.08);
    --shadow-lg: 0 20px 50px rgba(10, 25, 41, 0.12);
    --shadow-xl: 0 30px 80px rgba(10, 25, 41, 0.18);
    --gradient-primary: linear-gradient(135deg, #0a1929 0%, #0d2847 50%, #12355b 100%);
    --gradient-accent: linear-gradient(135deg, #1e88e5 0%, #00bcd4 100%);
    --gradient-warm: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', 'Inter', sans-serif;
    color: var(--navy-800);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section-sm {
    padding: 80px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--blue-500);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-tag::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 640px;
    line-height: 1.7;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-head .section-tag {
    justify-content: center;
}

.section-head .section-tag::before {
    display: none;
}

.section-head .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--navy-800);
    border: 1.5px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--blue-500);
    color: var(--blue-500);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--navy-800);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-900);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 25, 41, 0.3);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}


/* FIX: keep the mobile navigation hidden on desktop */
.nav-mobile { display: none; }
@media (max-width: 992px) {
    .nav-mobile { display: block; }
}

/* ============================================
   HEADER / NAVIGATION
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(10, 25, 41, 0.08);
    padding: 12px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

/* Main header row */
.header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 0;
    text-decoration: none;
    z-index: 1001;
    white-space: nowrap;
}

.logo-mark {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: none;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: transparent;
    border: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    min-width: 0;
    white-space: nowrap;
}

.logo-text .brand {
    font-family: 'Manrope', sans-serif;
    font-size: 1.16rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.logo-text .tagline {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.logo:hover .brand {
    opacity: 0.9;
}

.header.scrolled .logo-text .brand {
    color: var(--navy-800);
}

.header.scrolled .logo-text .tagline {
    color: var(--gray-500);
}

/* Desktop navigation */
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.nav-item {
    position: relative;
    flex: 0 0 auto;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    transition: var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.header.scrolled .nav-link {
    color: var(--gray-700);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .nav-link:hover {
    color: var(--blue-500);
    background: rgba(30, 136, 229, 0.08);
}

.nav-link .chevron {
    font-size: 0.62rem;
    flex: 0 0 auto;
    transition: transform 0.3s;
}

.nav-item:hover .chevron {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    border: 1px solid var(--gray-100);
    z-index: 99999;
}

/* Invisible hover bridge: keeps dropdown open while moving mouse
   from the menu item to the submenu. */
.mega-menu::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

/* Dropdown arrow */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: var(--white);
    border-left: 1px solid var(--gray-100);
    border-top: 1px solid var(--gray-100);
    z-index: 1;
}

.mega-menu.wide {
    min-width: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

/* Keep submenu open while pointer is anywhere over the nav item/dropdown */
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu a {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.mega-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.mega-menu a i {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-500);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.mega-menu a:hover {
    background: var(--gray-50);
    color: var(--blue-500);
    transform: translateX(3px);
}

.mega-menu a:hover i {
    background: var(--gradient-accent);
    color: var(--white);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    font-size: 0.86rem;
    line-height: 1.2;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.35);
    transition: var(--transition);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(30, 136, 229, 0.5);
}

.header-track {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled .header-track {
    border-color: var(--gray-200);
    color: var(--navy-800);
}

.header-track:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.header.scrolled .header-track:hover {
    background: var(--gray-50);
    border-color: var(--blue-500);
    color: var(--blue-500);
}

/* Mobile Menu button */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.header.scrolled .menu-toggle {
    background: var(--gray-100);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background: var(--navy-800);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HEADER RESPONSIVE NAV FIX
============================================ */

/* Prevent the desktop navigation from wrapping at normal desktop sizes */
@media (max-width: 1200px) and (min-width: 993px) {
    .header-inner {
        gap: 8px;
    }

    .logo {
        gap: 7px;
    }

    .logo-mark {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .logo-text .brand {
        font-size: 0.98rem;
    }

    .logo-text .tagline {
        font-size: 0.52rem;
        letter-spacing: 0.11em;
    }

    .nav-list {
        gap: 0;
    }

    .nav-link {
        padding: 9px 7px;
        font-size: 0.78rem;
    }

    .nav-link .chevron {
        font-size: 0.56rem;
    }

    .header-actions {
        gap: 6px;
    }

    .header-track {
        padding: 9px 11px;
        font-size: 0.78rem;
    }

    .header-cta {
        padding: 10px 12px;
        font-size: 0.76rem;
    }
}

/* Mobile breakpoint */
@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .header-actions .header-track,
    .header-actions .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo-mark {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .logo-text .brand {
        font-size: 1.05rem;
    }

    .logo-text .tagline {
        font-size: 0.58rem;
    }

    .nav-mobile {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--white);
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        z-index: 1000;
        display: block;
    }

    .nav-mobile.active {
        right: 0;
    }

    .nav-mobile-list {
        list-style: none;
    }

    .nav-mobile-item {
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-mobile-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        color: var(--navy-800);
        font-weight: 500;
        font-size: 0.98rem;
    }

    .nav-mobile-link .chevron {
        font-size: 0.7rem;
        transition: transform 0.3s;
    }

    .nav-mobile-item.open .chevron {
        transform: rotate(180deg);
    }

    .nav-mobile-submenu {
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding-left: 16px;
    }

    .nav-mobile-item.open .nav-mobile-submenu {
        max-height: 1000px;
    }

    .nav-mobile-submenu a {
        display: block;
        padding: 10px 0;
        color: var(--gray-600);
        font-size: 0.9rem;
    }

    .nav-mobile-cta {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .nav-mobile-cta .btn {
        justify-content: center;
    }
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: var(--navy-900);
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 12s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1%, -1%); }
}

.hero-slide:nth-child(1) .hero-slide-bg {
    background-image: url('../assets/images/image3.png');
}

.hero-slide:nth-child(2) .hero-slide-bg {
    background-image: url('../assets/images/image3.png');
    animation-delay: -4s;
}

.hero-slide:nth-child(3) .hero-slide-bg {
    background-image: url('../assets/images/image2.png');
    animation-delay: -8s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 25, 41, 0.85) 0%,
        rgba(13, 40, 71, 0.75) 40%,
        rgba(18, 53, 91, 0.65) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(100, 181, 246, 0.5);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(100px, -100vh); opacity: 0; }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(100, 181, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 181, 246, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-text {
    max-width: 780px;
    color: var(--white);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s 0.2s forwards;
}

.hero-label .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
}

.hero-label .pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s 0.4s forwards;
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s 0.6s forwards;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s 0.8s forwards;
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Slider Controls */
.hero-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-dot.active {
    background: rgba(255, 255, 255, 0.3);
}

.hero-dot.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    animation: dotProgress 6s linear forwards;
}

@keyframes dotProgress {
    from { width: 0; }
    to { width: 100%; }
}

.hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-arrow:hover {
    background: var(--white);
    color: var(--navy-800);
    transform: scale(1.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--white));
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--white);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { top: -30%; }
    100% { top: 100%; }
}

/* ============================================
   TRACKING PANEL
============================================ */
.tracking-panel {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding: 0 24px;
}

.tracking-card {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    box-shadow: 0 30px 80px rgba(10, 25, 41, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: grid;
    grid-template-columns: 1fr 1.5fr auto;
    gap: 30px;
    align-items: center;
}

.tracking-info h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tracking-info h3 i {
    color: var(--blue-500);
}

.tracking-info p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.tracking-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tracking-input {
    flex: 1;
    position: relative;
}

.tracking-input i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.tracking-input input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
}

.tracking-input input:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

.tracking-btn {
    padding: 16px 32px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(30, 136, 229, 0.35);
    transition: var(--transition);
    white-space: nowrap;
}

.tracking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.5);
}

.tracking-quick {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tracking-quick a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.tracking-quick a i {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-500);
    transition: var(--transition-fast);
}

.tracking-quick a:hover {
    background: var(--gray-50);
    color: var(--blue-500);
}

.tracking-quick a:hover i {
    background: var(--gradient-accent);
    color: var(--white);
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
    padding: 140px 0 110px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--white);
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stat-card {
    position: absolute;
    top: 40px;
    left: -30px;
    background: var(--white);
    padding: 22px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.about-stat-card .icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.about-stat-card .num {
    font-family: 'Manrope', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--navy-800);
    line-height: 1;
}

.about-stat-card .label {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.about-decor {
    position: absolute;
    top: -30px;
    right: 30%;
    width: 100px;
    height: 100px;
    border: 2px dashed var(--blue-400);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.about-content .section-tag {
    justify-content: flex-start;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    color: var(--gray-600);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.about-feature .check {
    width: 28px;
    height: 28px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 600;
    color: var(--navy-800);
    font-size: 0.92rem;
}

/* ============================================
   STATS SECTION
============================================ */
.stats {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(30, 136, 229, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 188, 212, 0.1) 0%, transparent 40%);
}

.stats-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' fill='none'%3E%3Cpath d='M0 200 Q 300 100, 600 200 T 1200 200' stroke='rgba(100,181,246,0.1)' stroke-width='1' fill='none'/%3E%3Cpath d='M0 250 Q 300 150, 600 250 T 1200 250' stroke='rgba(100,181,246,0.08)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.6;
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

.stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-suffix {
    font-size: 0.6em;
    color: var(--blue-300);
    -webkit-text-fill-color: var(--blue-300);
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-300);
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
}

/* ============================================
   SERVICES SECTION — PREMIUM
============================================ */
.services {
    background:
        radial-gradient(circle at 8% 12%, rgba(30, 136, 229, 0.055), transparent 28%),
        radial-gradient(circle at 92% 82%, rgba(0, 188, 212, 0.045), transparent 30%),
        var(--gray-50);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(30, 136, 229, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 136, 229, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, black, transparent 92%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow:
        0 10px 30px rgba(10, 25, 41, 0.045),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    width: 190px;
    height: 190px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,136,229,0.12), rgba(0,188,212,0.035) 42%, transparent 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.6s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 136, 229, 0.18);
    box-shadow:
        0 24px 55px rgba(10, 25, 41, 0.11),
        0 0 0 1px rgba(30, 136, 229, 0.035);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.service-number {
    position: absolute;
    top: 22px;
    right: 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(30, 136, 229, 0.42);
    z-index: 2;
}

.service-icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.10), rgba(0, 188, 212, 0.10));
    border: 1px solid rgba(30, 136, 229, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-500);
    font-size: 1.55rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 8px 22px rgba(30, 136, 229, 0.06);
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(30, 136, 229, 0.08);
    border-radius: 24px;
    opacity: 0;
    transform: scale(0.92);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
    color: var(--white);
    transform: translateY(-2px) scale(1.04);
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(30, 136, 229, 0.28);
}

.service-card:hover .service-icon::after {
    opacity: 1;
    transform: scale(1);
}

.service-card h3 {
    font-size: 1.24rem;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--navy-800);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.72;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    max-width: 360px;
}

.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    color: var(--blue-500);
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.service-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--gradient-accent);
    transition: width 0.35s ease;
}

.service-link i {
    font-size: 0.78rem;
    transition: transform 0.35s ease;
}

.service-card:hover .service-link i {
    transform: translateX(6px);
}

.service-card:hover .service-link::after {
    width: calc(100% - 26px);
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        min-height: 300px;
        padding: 26px 24px;
        border-radius: 20px;
    }

    .service-number {
        top: 19px;
        right: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-icon,
    .service-icon::after,
    .service-link i,
    .service-link::after {
        transition: none;
    }
}

/* ============================================
   WHY CHOOSE US
============================================ */
.why-choose {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

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

.why-visual {
    position: relative;
    aspect-ratio: 1;
}

.why-image {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.2) 0%, transparent 60%);
}

.why-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 20px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.why-badge .icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-warm);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.why-badge .text strong {
    display: block;
    font-size: 1.4rem;
    color: var(--navy-800);
    font-family: 'Manrope', sans-serif;
}

.why-badge .text span {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.why-feature {
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
}

.why-feature:hover {
    background: var(--white);
    border-color: var(--gray-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-feature .icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-500);
    font-size: 1.2rem;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-feature:hover .icon {
    background: var(--gradient-accent);
    color: var(--white);
}

.why-feature h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.why-feature p {
    color: var(--gray-500);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ============================================
   GLOBAL NETWORK
============================================ */
.network {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.network::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(30, 136, 229, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 188, 212, 0.12) 0%, transparent 40%);
}

.network .section-tag {
    color: var(--blue-300);
}

.network .section-title {
    color: var(--white);
}

.network .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.network-content {
    position: relative;
    z-index: 1;
}

.world-map {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 2/1;
}

.world-map svg {
    width: 100%;
    height: 100%;
}

.map-point {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.3);
    transform: translate(-50%, -50%);
    animation: mapPulse 2s infinite;
    cursor: pointer;
}

.map-point::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.6); }
    100% { box-shadow: 0 0 0 15px rgba(0, 188, 212, 0); }
}

.map-label {
    position: absolute;
    transform: translate(-50%, 20px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.route-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform-origin: left center;
    opacity: 0.6;
}

.route-line::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: moveAlong 4s linear infinite;
}

@keyframes moveAlong {
    0% { left: 0; }
    100% { left: 100%; }
}

.network-regions {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.region-card {
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.region-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.region-card i {
    font-size: 1.6rem;
    color: var(--blue-300);
    margin-bottom: 12px;
}

.region-card h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.region-card span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
}

.network-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   PROCESS TIMELINE
============================================ */
.process {
    background: var(--white);
    position: relative;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-500), var(--accent));
    opacity: 0.2;
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 10px;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-500);
    position: relative;
    transition: var(--transition);
}

.process-step:hover .process-number {
    background: var(--gradient-accent);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.35);
}

.process-step h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray-500);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ============================================
   INDUSTRIES
============================================ */
.industries {
    background: var(--gray-50);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 41, 0.9) 0%, rgba(10, 25, 41, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(to top, rgba(10, 25, 41, 0.95) 0%, rgba(30, 136, 229, 0.5) 100%);
}

.industry-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 14px;
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    background: var(--gradient-accent);
    transform: translateY(-5px);
}

.industry-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.industry-card span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
}

/* ============================================
   PREMIUM MARITIME CAPABILITIES
============================================ */

.cargo {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(30, 136, 229, 0.045), transparent 28%),
        radial-gradient(circle at 85% 80%, rgba(0, 188, 212, 0.04), transparent 28%),
        var(--white);
}

.cargo::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(18, 53, 91, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 53, 91, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.cargo .container {
    position: relative;
    z-index: 2;
}

.cargo-title-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cargo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* Premium capability card */
.cargo-card {
    position: relative;
    min-height: 285px;
    padding: 30px 26px 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 35px rgba(10, 25, 41, 0.045);
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.cargo-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    top: -100px;
    right: -80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.035;
    filter: blur(2px);
    transition: transform 0.6s ease, opacity 0.5s ease;
}

.cargo-card::after {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

/* Number */
.cargo-number {
    position: absolute;
    top: 20px;
    right: 22px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--gray-300);
    transition: color 0.4s ease, transform 0.4s ease;
}

/* Icon */
.cargo-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: linear-gradient(145deg, rgba(30, 136, 229, 0.09), rgba(0, 188, 212, 0.13));
    border: 1px solid rgba(30, 136, 229, 0.08);
    color: var(--blue-500);
    font-size: 1.45rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        background 0.45s ease,
        color 0.35s ease,
        box-shadow 0.45s ease;
}

.cargo-card-content {
    position: relative;
    z-index: 2;
}

.cargo-card h4 {
    margin-bottom: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-800);
    transition: color 0.35s ease;
}

.cargo-card p {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.84rem;
    line-height: 1.7;
}

/* Arrow */
.cargo-card-arrow {
    position: absolute;
    right: 24px;
    bottom: 22px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-50);
    color: var(--gray-400);
    font-size: 0.75rem;
    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}

/* Hover */
.cargo-card:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 136, 229, 0.18);
    box-shadow:
        0 24px 55px rgba(10, 25, 41, 0.11),
        0 8px 25px rgba(30, 136, 229, 0.06);
}

.cargo-card:hover::before {
    transform: scale(2);
    opacity: 0.08;
}

.cargo-card:hover::after {
    transform: scaleX(1);
}

.cargo-card:hover .cargo-number {
    color: var(--blue-300);
    transform: translateY(-2px);
}

.cargo-card:hover .cargo-icon {
    background: var(--gradient-accent);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(30, 136, 229, 0.24);
}

.cargo-card:hover h4 {
    color: var(--blue-500);
}

.cargo-card:hover .cargo-card-arrow {
    background: var(--gradient-accent);
    color: var(--white);
    transform: translateX(4px);
}

/* Bottom capability highlights */
.cargo-bottom {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: var(--gray-500);
    font-size: 0.78rem;
    font-weight: 600;
}

.cargo-bottom span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.cargo-bottom span i {
    color: var(--blue-500);
    font-size: 0.8rem;
}

.cargo-bottom-line {
    width: 60px;
    height: 1px;
    background: var(--gray-200);
}

/* Reduced-motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .cargo-card,
    .cargo-card::before,
    .cargo-card::after,
    .cargo-icon,
    .cargo-number,
    .cargo-card-arrow {
        transition: none;
    }
}

/* Mobile refinement */
@media (max-width: 768px) {
    .cargo-grid {
        gap: 14px;
    }

    .cargo-card {
        min-height: 270px;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .cargo-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
        font-size: 1.25rem;
        border-radius: 15px;
    }

    .cargo-card h4 {
        font-size: 0.98rem;
    }

    .cargo-card p {
        font-size: 0.8rem;
    }

    .cargo-bottom {
        flex-wrap: wrap;
        gap: 14px 22px;
    }

    .cargo-bottom-line {
        display: none;
    }
}

@media (max-width: 520px) {
    .cargo-card {
        min-height: 230px;
        padding: 24px;
    }

    .cargo-number {
        top: 18px;
        right: 20px;
    }

    .cargo-bottom {
        flex-direction: column;
        align-items: center;
        margin-top: 35px;
    }
}

/* ============================================
   TRACKING CTA
============================================ */
.tracking-cta {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.tracking-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1577416412292-763e758324f5?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.tracking-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.9), rgba(13, 40, 71, 0.85));
}

.tracking-cta-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.tracking-cta h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
}

.tracking-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.tracking-cta-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 10px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tracking-cta-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 24px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
}

.tracking-cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.tracking-cta-form input:focus {
    outline: none;
}

.tracking-cta-form button {
    padding: 14px 30px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.tracking-cta-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 136, 229, 0.4);
}

.tracking-cta-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ============================================
   QUOTE FORM
============================================ */
.quote {
    background: var(--gray-50);
    position: relative;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.quote-info {
    position: sticky;
    top: 120px;
}

.quote-info .section-title {
    margin-bottom: 20px;
}

.quote-info-text {
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.quote-feature i {
    width: 36px;
    height: 36px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.quote-feature span {
    font-weight: 600;
    color: var(--navy-800);
    font-size: 0.92rem;
}

.quote-contact {
    padding: 24px;
    background: var(--navy-800);
    border-radius: var(--radius-md);
    color: var(--white);
}

.quote-contact h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.quote-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.quote-contact-item i {
    color: var(--blue-300);
    width: 20px;
}

.quote-form-card {
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    font-size: 0.92rem;
    font-family: inherit;
    background: var(--white);
    color: var(--navy-800);
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

.form-submit {
    margin-top: 10px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 17px;
    font-size: 1rem;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
    background: var(--white);
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-inner {
    background: var(--gray-50);
    padding: 50px;
    border-radius: var(--radius-xl);
    position: relative;
    border: 1px solid var(--gray-100);
}

.testimonial-quote-mark {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 5rem;
    color: var(--blue-500);
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Manrope', sans-serif;
}

.testimonial-info h5 {
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.testimonial-info span {
    color: var(--gray-500);
    font-size: 0.88rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    color: var(--white);
    transform: scale(1.1);
}

/* ============================================
   PARTNERS
============================================ */
.partners {
    background: var(--gray-50);
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-logo {
    padding: 28px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.partner-logo span {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.partner-logo:hover {
    border-color: var(--gray-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.partner-logo:hover span {
    color: var(--blue-500);
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: var(--white);
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/ship1_compress.png');
    background-size: cover;
    background-position: center;
}

.final-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 25, 41, 0.55),
        rgba(13, 40, 71, 0.45)
    );
    z-index: 0;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.15;
}

.final-cta h2 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
}

.footer-top {
    padding: 80px 0 50px;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text .brand {
    color: var(--white);
}

.footer-brand .logo-text .tagline {
    color: rgba(255, 255, 255, 0.5);
}

.footer-about {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--blue-400);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    font-size: 0.9rem;
}

.footer-contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-300);
    flex-shrink: 0;
}

.footer-contact-item div {
    line-height: 1.5;
}

.footer-contact-item strong {
    display: block;
    color: var(--white);
    font-size: 0.82rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ============================================
   FLOATING ELEMENTS
============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--navy-800);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gradient-accent);
    transform: translateY(-4px);
}

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
    .services-grid,
    .industries-grid,
    .cargo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .network-regions {
        grid-template-columns: repeat(3, 1fr);
    }
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .section { padding: 80px 0; }

    .nav, .header-actions .header-track, .header-actions .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-mobile {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--white);
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        z-index: 1000;
    }

    .nav-mobile.active {
        right: 0;
    }

    .nav-mobile-list {
        list-style: none;
    }

    .nav-mobile-item {
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-mobile-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        color: var(--navy-800);
        font-weight: 500;
        font-size: 0.98rem;
    }

    .nav-mobile-link .chevron {
        font-size: 0.7rem;
        transition: transform 0.3s;
    }

    .nav-mobile-item.open .chevron {
        transform: rotate(180deg);
    }

    .nav-mobile-submenu {
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding-left: 16px;
    }

    .nav-mobile-item.open .nav-mobile-submenu {
        max-height: 1000px;
    }

    .nav-mobile-submenu a {
        display: block;
        padding: 10px 0;
        color: var(--gray-600);
        font-size: 0.9rem;
    }

    .nav-mobile-cta {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .nav-mobile-cta .btn {
        justify-content: center;
    }

    .about-grid,
    .why-grid,
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .quote-info {
        position: static;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .services-grid,
    .industries-grid,
    .cargo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 40px;
        right: auto;
        width: 2px;
        height: 100%;
    }

    .process-step {
        text-align: left;
        padding-left: 100px;
    }

    .process-number {
        position: absolute;
        left: 0;
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .network-regions {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tracking-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 640px) {
    .section { padding: 60px 0; }
    .container { padding: 0 20px; }

    .hero { min-height: 620px; }
    .hero-title { font-size: 2.2rem; }
    .hero-description { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { justify-content: center; }
    .hero-controls { bottom: 30px; gap: 15px; }
    .hero-arrow { width: 40px; height: 40px; }

    .tracking-panel { margin-top: -50px; }
    .tracking-card { padding: 24px; border-radius: var(--radius-lg); }
    .tracking-form { flex-direction: column; }
    .tracking-btn { width: 100%; justify-content: center; }

    .about-image-secondary {
        width: 60%;
        bottom: -20px;
        right: -10px;
    }

    .about-stat-card {
        left: -10px;
        top: 20px;
        padding: 16px 20px;
    }

    .about-stat-card .num { font-size: 1.3rem; }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item::after { display: none; }

    .services-grid,
    .industries-grid,
    .cargo-grid {
        grid-template-columns: 1fr;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .network-regions {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form-card {
        padding: 28px 22px;
    }

    .testimonial-inner {
        padding: 30px 24px;
    }

    .testimonial-text { font-size: 1rem; }
    .testimonial-quote-mark { font-size: 3.5rem; top: 15px; right: 20px; }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
        font-size: 1.4rem;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .tracking-cta-form {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 14px;
    }

    .tracking-cta-form button {
        width: 100%;
        justify-content: center;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-buttons .btn {
        justify-content: center;
    }
}

/* Loading screen */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy-900);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    animation: preloaderPulse 1.5s infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 136, 229, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(30, 136, 229, 0); }
}

/* ============================================
   LIVE WORLD CLOCKS
============================================ */
.world-clocks {
    background: #f5f7fb;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}
.world-clocks::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,136,229,.10), transparent 68%);
}
.world-clock-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    z-index: 1;
}
.world-clock-card {
    background: rgba(255,255,255,.94);
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 24px 14px 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(10,25,41,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.world-clock-card:hover { transform: translateY(-7px); box-shadow: 0 20px 45px rgba(10,25,41,.14); }
.world-clock-face {
    width: 132px;
    height: 132px;
    margin: 0 auto 16px;
    border: 5px solid #334155;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle at center, #fff 0 56%, #f8fafc 57% 100%);
    box-shadow: inset 0 0 0 2px #cbd5e1, 0 8px 20px rgba(10,25,41,.10);
}
.world-clock-face::after {
    content: '';
    position: absolute;
    width: 9px; height: 9px;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    background: #12355b;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 5;
}
.clock-number { position:absolute; inset:0; font:700 11px/1 'Manrope',sans-serif; color:#475569; }
.clock-number span { position:absolute; left:50%; top:50%; transform-origin:0 0; }
.clock-hand { position:absolute; left:50%; bottom:50%; transform-origin:50% 100%; border-radius:8px; z-index:3; }
.clock-hour { width:5px; height:34px; background:#0d2847; margin-left:-2.5px; }
.clock-minute { width:3px; height:45px; background:#1e88e5; margin-left:-1.5px; }
.clock-second { width:1.5px; height:49px; background:#ef4444; margin-left:-.75px; z-index:4; }
.world-clock-city { font:800 1rem/1.2 'Manrope',sans-serif; color:#12355b; margin-bottom:5px; }
.world-clock-time { font:700 .9rem/1.2 'Inter',sans-serif; color:#1e88e5; letter-spacing:.03em; }
.world-clock-zone { font-size:.72rem; color:#64748b; margin-top:5px; }
@media (max-width: 1200px) { .world-clock-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .world-clocks { padding:60px 0; } .world-clock-grid { grid-template-columns: repeat(2, 1fr); gap:14px; } .world-clock-face { width:115px; height:115px; } }
@media (max-width: 420px) { .world-clock-grid { grid-template-columns: 1fr; } }



/* =========================================================
   VAST SHIPPING — FINAL SCROLL / SECTION FLOW FIX
   Added without removing the existing design.
   ========================================================= */

/* Keep the document itself scrollable */
html {
    height: auto !important;
    min-height: 100%;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    height: auto !important;
    min-height: 100vh;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: auto;
}

/* Do not let the hero become the page's scroll container */
.hero {
    position: relative !important;
    height: 100vh;
    min-height: 720px;
    max-height: none !important;
    overflow: hidden;
}

/* Hero background can stay clipped, while the document remains scrollable */
.hero-slider,
.hero-slide {
    pointer-events: none;
}

.hero-controls,
.hero-scroll-indicator,
.hero-content {
    pointer-events: auto;
}

/* Every section must stay in normal document flow */
main {
    position: relative;
    display: block;
    width: 100%;
}

main > section {
    position: relative;
    width: 100%;
}

/* Prevent accidental fixed-height clipping of normal sections */
.section,
.services,
.about,
.stats,
.why-choose,
.network,
.process,
.industries,
.cargo,
.tracking-cta,
.testimonials,
.partners,
.final-cta,
.footer {
    max-height: none !important;
}

/* Anchor targets should not disappear under the fixed header */
[id] {
    scroll-margin-top: 90px;
}

/* Existing tracking panel overlaps the hero intentionally.
   Keep it from affecting the document's scroll calculation. */
.tracking-panel {
    position: relative;
}

/* =========================================================
   DESKTOP DROPDOWN — CLICKABLE HOVER BRIDGE
   Keeps the submenu open while moving from the nav item
   into the dropdown, so submenu links can be clicked.
   ========================================================= */

@media (min-width: 993px) {
    .header {
        z-index: 10000 !important;
    }

    .header-inner,
    .nav,
    .nav-list {
        position: relative;
        z-index: 10001;
    }

    .nav-item {
        position: relative;
    }

    .mega-menu {
        z-index: 100000 !important;
        top: calc(100% + 6px);
    }

    /* Larger invisible bridge removes the tiny mouse gap */
    .mega-menu::after {
        content: "";
        position: absolute;
        top: -18px;
        left: -12px;
        right: -12px;
        width: auto;
        height: 18px;
        background: transparent;
    }

    .nav-item:hover .mega-menu,
    .nav-item:focus-within .mega-menu,
    .mega-menu:hover {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(-50%) translateY(0) !important;
    }

    .mega-menu a {
        position: relative;
        z-index: 3;
        pointer-events: auto !important;
    }
}

/* =========================================================
   MOBILE — normal page scroll + mobile menu scroll
   ========================================================= */

@media (max-width: 992px) {
    html,
    body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    .nav-mobile {
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .nav-mobile-submenu {
        overflow: hidden;
    }
}

/* Small screens: remove the hero's minimum height pressure */
@media (max-width: 700px) {
    .hero {
        min-height: 650px;
    }
}


/* ============================================
   HERO VIDEO SLIDES
   Video files are loaded from assets/images/
   ============================================ */
.hero-slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}

.hero-slide-video + .hero-slide-bg {
    z-index: -1;
}

/* Video slides do not use the photo background as the visible layer */
.hero-slide:nth-child(2) .hero-slide-bg,
.hero-slide:nth-child(3) .hero-slide-bg {
    z-index: -1;
}

/* Fixed hero photo layer for slide 3 */
.hero-slide-photo {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
    animation: kenBurns 12s ease-in-out infinite alternate;
}

.hero-slide:nth-child(3) .hero-slide-bg {
    z-index: -1;
}
