/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0a1628;
    --primary-light: #121f3d;
    --accent: #c8a14e;
    --accent-light: #e3c97a;
    --accent-dark: #a07f2e;
    --white: #ffffff;
    --text-light: #c5c9d6;
    --text-muted: #8a90a2;
    --glass-bg: rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.08);
    --shadow: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-accent: 0 4px 25px rgba(200,161,78,0.25);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(.4,0,.2,1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background: var(--primary);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration:none; color:inherit; transition: var(--transition); }
ul { list-style:none; }
img { max-width:100%; display:block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--white); line-height:1.2; }

/* ===== UTILITY ===== */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section { padding: 100px 0; }
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}
.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 50px;
    font-size: 1.05rem;
}
.text-center { text-align:center; }
.mx-auto { margin-left:auto; margin-right:auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-main);
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
}
.btn:hover::after {
    width: 300px; height: 300px;
    top: -100px; left: -100px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
}
.btn-primary:hover {
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: var(--accent);
    box-shadow: var(--shadow-accent);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10,22,40,0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo img {
    height: 45px;
    width: auto;
}
.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}
.nav-logo-text span { color: var(--accent); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-light);
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: rgba(200,161,78,0.08);
}
.nav-links a::after {
    content:'';
    position:absolute;
    bottom:2px; left:50%;
    width:0; height:2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}
.nav-cta {
    margin-left: 12px;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    width: 28px; height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* ===== HERO ===== */
/* ===== HERO SECTION — ANIMATED TRANSPORT ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Animated Background Scene Container */
.hero-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

/* Cinematic gradient sky */
.hero-sky {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            #0a0e1a 0%,
            #0d1b2e 15%,
            #122744 30%,
            #1a3355 45%,
            #1e3a5f 55%,
            #2d4a6f 65%,
            #3d5a7f 75%,
            #8b5e3c 85%,
            #c4763c 90%,
            #e8943c 95%,
            #f0a84c 100%);
    animation: skyShift 15s ease-in-out infinite alternate;
}
@keyframes skyShift {
    0% { filter: brightness(0.85) saturate(1.1); }
    50% { filter: brightness(1) saturate(1.2); }
    100% { filter: brightness(0.9) saturate(1.05); }
}

/* Dark overlay for text readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,14,26,0.88) 0%,
        rgba(10,14,26,0.7) 40%,
        rgba(10,14,26,0.5) 70%,
        rgba(10,14,26,0.35) 100%
    );
    z-index: 1;
}

/* SVG Tracking Paths */
.hero-paths {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 2;
}
.tracking-path {
    fill: none;
    stroke-width: 1.5;
    stroke-dasharray: 8 12;
    opacity: 0.4;
}
.air-path {
    stroke: rgba(200,161,78,0.6);
    stroke-dashoffset: 200;
    animation: dashMove 8s linear infinite;
}
.sea-path {
    stroke: rgba(100,180,255,0.5);
    stroke-dashoffset: 200;
    animation: dashMove 12s linear infinite reverse;
}
.land-path {
    stroke: rgba(120,220,120,0.4);
    stroke-dashoffset: 200;
    animation: dashMove 10s linear infinite;
}
@keyframes dashMove {
    to { stroke-dashoffset: 0; }
}

/* === ANIMATED VEHICLES === */
.vehicle {
    position: absolute;
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* Cargo plane — flies across the top arc */
.vehicle-plane {
    width: 60px;
    top: 12%;
    animation: flyPlane 14s linear infinite;
}
@keyframes flyPlane {
    0% { left: -8%; transform: rotate(-3deg) scale(0.7); opacity: 0; }
    5% { opacity: 1; }
    30% { top: 8%; transform: rotate(-5deg) scale(0.9); }
    50% { top: 10%; transform: rotate(0deg) scale(1); }
    70% { top: 7%; transform: rotate(3deg) scale(0.95); }
    95% { opacity: 1; }
    100% { left: 105%; top: 9%; transform: rotate(2deg) scale(0.8); opacity: 0; }
}

/* Container ship — sails across mid level */
.vehicle-ship {
    width: 75px;
    top: 55%;
    animation: sailShip 20s linear infinite;
    animation-delay: 3s;
}
@keyframes sailShip {
    0% { left: -10%; transform: translateY(0); opacity: 0; }
    5% { opacity: 0.85; }
    25% { transform: translateY(-4px); }
    50% { transform: translateY(4px); }
    75% { transform: translateY(-3px); }
    95% { opacity: 0.85; }
    100% { left: 108%; transform: translateY(0); opacity: 0; }
}

/* Delivery truck — drives along the bottom */
.vehicle-truck {
    width: 55px;
    bottom: 12%;
    animation: driveTruck 16s linear infinite;
    animation-delay: 7s;
}
@keyframes driveTruck {
    0% { left: -8%; transform: translateY(0); opacity: 0; }
    5% { opacity: 0.9; }
    10% { transform: translateY(-1px); }
    15% { transform: translateY(0); }
    20% { transform: translateY(-1px); }
    25% { transform: translateY(0); }
    95% { opacity: 0.9; }
    100% { left: 108%; transform: translateY(0); opacity: 0; }
}

/* === GLOWING TRACKING DOTS === */
.tracking-dot {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    z-index: 4;
    filter: blur(0.5px);
}
.dot-air {
    background: #c8a14e;
    box-shadow: 0 0 12px #c8a14e, 0 0 24px rgba(200,161,78,0.4);
    animation: dotAir 14s linear infinite;
}
@keyframes dotAir {
    0% { left: -2%; top: 25%; opacity: 0; }
    5% { opacity: 1; }
    25% { left: 25%; top: 12%; }
    50% { left: 50%; top: 17%; }
    75% { left: 75%; top: 13%; }
    95% { opacity: 1; }
    100% { left: 102%; top: 14%; opacity: 0; }
}
.dot-sea {
    background: #60a5fa;
    box-shadow: 0 0 12px #60a5fa, 0 0 24px rgba(96,165,250,0.4);
    animation: dotSea 20s linear infinite;
    animation-delay: 3s;
}
@keyframes dotSea {
    0% { left: -2%; top: 58%; opacity: 0; }
    5% { opacity: 1; }
    25% { left: 25%; top: 55%; }
    50% { left: 50%; top: 60%; }
    75% { left: 75%; top: 57%; }
    95% { opacity: 1; }
    100% { left: 102%; top: 58%; opacity: 0; }
}
.dot-land {
    background: #4ade80;
    box-shadow: 0 0 12px #4ade80, 0 0 24px rgba(74,222,128,0.4);
    animation: dotLand 16s linear infinite;
    animation-delay: 7s;
}
@keyframes dotLand {
    0% { left: -2%; bottom: 14%; opacity: 0; }
    5% { opacity: 1; }
    25% { left: 25%; bottom: 13%; }
    50% { left: 50%; bottom: 15%; }
    75% { left: 75%; bottom: 14%; }
    95% { opacity: 1; }
    100% { left: 102%; bottom: 14%; opacity: 0; }
}

/* === FLOATING PARTICLES === */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.hero-particles span {
    position: absolute;
    width: 3px; height: 3px;
    background: rgba(200,161,78,0.5);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}
.hero-particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 25%; left: 85%; animation-delay: 1s; width: 2px; height: 2px; }
.hero-particles span:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { top: 70%; left: 75%; animation-delay: 0.5s; width: 4px; height: 4px; }
.hero-particles span:nth-child(5) { top: 40%; left: 50%; animation-delay: 3s; }
.hero-particles span:nth-child(6) { top: 82%; left: 30%; animation-delay: 1.5s; width: 2px; height: 2px; }
.hero-particles span:nth-child(7) { top: 35%; left: 65%; animation-delay: 4s; }
.hero-particles span:nth-child(8) { top: 55%; left: 90%; animation-delay: 2.5s; }
.hero-particles span:nth-child(9) { top: 8%; left: 45%; animation-delay: 5s; width: 2px; height: 2px; }
.hero-particles span:nth-child(10) { top: 90%; left: 60%; animation-delay: 3.5s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 0.8; }
}

/* Port skyline silhouette at the bottom */
.port-silhouette {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    z-index: 2;
    background:
        /* Crane 1 */
        linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%),
        /* Ground */
        linear-gradient(transparent 60%, rgba(10,14,26,0.7) 100%);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath d='M0,120 L0,80 L50,80 L50,40 L55,40 L55,20 L60,20 L60,40 L65,40 L65,80 L150,80 L150,60 L180,60 L180,30 L185,30 L185,10 L190,10 L190,30 L195,30 L195,60 L200,60 L200,80 L350,80 L350,65 L380,65 L380,25 L385,25 L385,5 L390,5 L390,25 L395,25 L395,65 L410,65 L410,80 L500,80 L500,70 L520,70 L520,80 L600,80 L600,60 L605,30 L610,30 L610,60 L615,60 L615,80 L800,80 L800,75 L830,75 L830,80 L900,80 L900,50 L905,50 L905,15 L910,15 L910,50 L915,50 L915,80 L1050,80 L1050,70 L1080,70 L1080,80 L1200,80 L1200,55 L1205,55 L1205,20 L1210,20 L1210,55 L1215,55 L1215,80 L1350,80 L1350,75 L1380,75 L1380,80 L1440,80 L1440,120 Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath d='M0,120 L0,80 L50,80 L50,40 L55,40 L55,20 L60,20 L60,40 L65,40 L65,80 L150,80 L150,60 L180,60 L180,30 L185,30 L185,10 L190,10 L190,30 L195,30 L195,60 L200,60 L200,80 L350,80 L350,65 L380,65 L380,25 L385,25 L385,5 L390,5 L390,25 L395,25 L395,65 L410,65 L410,80 L500,80 L500,70 L520,70 L520,80 L600,80 L600,60 L605,30 L610,30 L610,60 L615,60 L615,80 L800,80 L800,75 L830,75 L830,80 L900,80 L900,50 L905,50 L905,15 L910,15 L910,50 L915,50 L915,80 L1050,80 L1050,70 L1080,70 L1080,80 L1200,80 L1200,55 L1205,55 L1205,20 L1210,20 L1210,55 L1215,55 L1215,80 L1350,80 L1350,75 L1380,75 L1380,80 L1440,80 L1440,120 Z' fill='white'/%3E%3C/svg%3E");
    mask-size: cover;
    -webkit-mask-size: cover;
}

/* === HERO CONTENT (over the animated scene) === */
.hero .container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding-top: 40px;
    padding-bottom: 40px;
}
.hero-content { max-width: 650px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.5; transform:scale(1.3); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), #f0c060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 500px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Transport Mode Indicators */
.hero-transport-modes {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.transport-mode {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}
.transport-mode:hover {
    border-color: rgba(200,161,78,0.3);
    background: rgba(200,161,78,0.08);
    color: var(--accent);
    transform: translateY(-2px);
}
.mode-icon { font-size: 1.1rem; }

/* Mobile responsive */
@media (max-width: 768px) {
    .vehicle-plane { width: 40px; }
    .vehicle-ship { width: 50px; }
    .vehicle-truck { width: 38px; }
    .hero-transport-modes { gap: 10px; }
    .transport-mode { padding: 6px 12px; font-size: 0.75rem; }
    .port-silhouette { height: 60px; }
}
@media (max-width: 480px) {
    .hero-transport-modes { flex-direction: column; gap: 8px; }
    .vehicle-plane { width: 30px; }
    .vehicle-ship { width: 40px; }
    .vehicle-truck { width: 30px; }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
    background: var(--primary-light);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 40px 0;
}
.features-strip .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}
.feature-item {
    text-align: center;
    padding: 20px;
}
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(200,161,78,0.15), rgba(200,161,78,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.5rem;
}
.feature-item h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.feature-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(200,161,78,0.2);
}
.service-card-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(200,161,78,0.2), rgba(200,161,78,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 22px;
}
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 20px;
}
.service-card .learn-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-card .learn-more:hover { gap: 12px; }

/* ===== STATS ===== */
.stats {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats::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='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    text-align: center;
}
.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}
.stat-item p {
    color: rgba(10,22,40,0.7);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 4px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), rgba(200,161,78,0.1));
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent);
    background: linear-gradient(135deg, var(--primary-light), rgba(200,161,78,0.15));
}
.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}
.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.02rem;
}
.about-list {
    margin: 24px 0 32px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
    font-weight: 500;
}
.about-list li .check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,161,78,0.2), rgba(200,161,78,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS / REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}
.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200,161,78,0.2);
}
.review-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.review-text {
    font-size: 0.96rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.review-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}
.review-info h4 { font-size: 1rem; }
.review-info p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== TRACKING PAGE ===== */
.track-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}
.track-form-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 50px 40px;
    backdrop-filter: blur(10px);
}
.track-form-container h2 {
    text-align: center;
    margin-bottom: 10px;
}
.track-form-container > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.track-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.track-input-group input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-main);
    outline: none;
    transition: var(--transition);
}
.track-input-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,161,78,0.1);
}
.track-input-group input::placeholder { color: var(--text-muted); }

/* Track Results */
.track-result {
    display: none;
    margin-top: 30px;
}
.track-result.active { display: block; }
.track-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.track-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}
.track-status-badge.in-transit {
    background: rgba(59,130,246,0.15);
    color: #60a5fa;
}
.track-status-badge.delivered {
    background: rgba(34,197,94,0.15);
    color: #4ade80;
}
.track-status-badge.pending {
    background: rgba(234,179,8,0.15);
    color: #facc15;
}
.track-status-badge.on-hold {
    background: rgba(239,68,68,0.15);
    color: #f87171;
}

.track-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}
.track-detail-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 16px;
}
.track-detail-item label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}
.track-detail-item span {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

/* Timeline */
.track-timeline {
    position: relative;
    padding-left: 30px;
}
.track-timeline::before {
    content: '';
    position: absolute;
    left: 8px; top: 0; bottom: 0;
    width: 2px;
    background: var(--glass-border);
}
.timeline-item {
    position: relative;
    padding-bottom: 28px;
    padding-left: 24px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px; top: 4px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--glass-border);
    border: 3px solid var(--primary);
}
.timeline-item.active::before {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}
.timeline-item .time {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.timeline-item .event {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}
.timeline-item .location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.contact-info-card:hover {
    border-color: rgba(200,161,78,0.2);
    transform: translateX(6px);
}
.contact-info-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(200,161,78,0.2), rgba(200,161,78,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.contact-info-card h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-card p { color: var(--text-muted); font-size: 0.92rem; }

.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-main);
    outline: none;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,161,78,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-light);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-about { max-width: 320px; }
.footer-about .nav-logo { margin-bottom: 16px; }
.footer-about p { color: var(--text-muted); font-size: 0.92rem; }
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-socials a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}
.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
}
.footer-links h4::after {
    content: '';
    display: block;
    width: 30px; height: 2px;
    background: var(--accent);
    margin-top: 8px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden { opacity:0; visibility:hidden; }
.preloader-spinner {
    width: 50px; height: 50px;
    border: 4px solid var(--glass-border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== PAGE BANNER ===== */
.page-banner {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(200,161,78,0.05) 0%, transparent 100%);
}
.page-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(200,161,78,0.06) 0%, transparent 50%);
}
.page-banner h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 14px;
    position: relative;
}
.page-banner p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
    position: relative;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
}
.cta-box {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
}
.cta-box p {
    color: rgba(10,22,40,0.7);
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    position: relative;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats .container { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: rgba(10,22,40,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: var(--transition);
        gap: 4px;
        border-left: 1px solid var(--glass-border);
    }
    .nav-links.open { right: 0; }
    .nav-links a { width: 100%; font-size: 1rem; padding: 12px 18px; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .section { padding: 70px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .track-details-grid { grid-template-columns: 1fr; }
    .track-input-group { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .stats .container { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-item h3 { font-size: 2rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .track-form-container { padding: 30px 20px; }
    .contact-form { padding: 24px; }
    .cta-box { padding: 40px 24px; }
}

/* ===== NOTIFICATION TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px; right: 30px;
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    color: var(--white);
    font-size: 0.92rem;
    z-index: 9999;
    transform: translateX(120%);
    transition: var(--transition);
    max-width: 350px;
}
.toast.show { transform: translateX(0); }
.toast.error { border-left-color: #ef4444; }
.toast.success { border-left-color: #22c55e; }

/* ===== ABOUT PAGE SPECIFIC ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.value-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200,161,78,0.2);
}
.value-card .icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
}
.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.value-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}
.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); }
.team-photo {
    height: 280px;
    background: linear-gradient(135deg, var(--primary-light), rgba(200,161,78,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.team-info {
    padding: 24px;
    text-align: center;
}
.team-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-info p { color: var(--accent); font-size: 0.88rem; font-weight: 500; }

/* ===== ANIMATED SHIPPING VEHICLES ===== */
.shipping-vehicles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.shipping-vehicles img {
    mix-blend-mode: lighten;
}

/* Cargo Plane - flies across top area */
.vehicle-plane {
    position: absolute;
    width: 220px;
    top: 12%;
    left: -250px;
    opacity: 0.18;
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(200,161,78,0.3));
    animation: flyPlane 18s linear infinite;
    animation-delay: 1s;
}
@keyframes flyPlane {
    0% {
        left: -250px;
        top: 18%;
        transform: rotate(-2deg) scale(0.8);
        opacity: 0;
    }
    5% { opacity: 0.18; }
    50% {
        top: 8%;
        transform: rotate(-4deg) scale(1);
    }
    90% { opacity: 0.18; }
    100% {
        left: 110%;
        top: 5%;
        transform: rotate(-3deg) scale(1.1);
        opacity: 0;
    }
}

/* Cargo Ship - sails across bottom area */
.vehicle-ship {
    position: absolute;
    width: 260px;
    bottom: 8%;
    left: -280px;
    opacity: 0.12;
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(200,161,78,0.2));
    animation: sailShip 28s linear infinite;
    animation-delay: 6s;
}
@keyframes sailShip {
    0% {
        left: -280px;
        transform: translateY(0px) scaleX(1);
        opacity: 0;
    }
    5% { opacity: 0.12; }
    25% { transform: translateY(-8px) scaleX(1); }
    50% { transform: translateY(5px) scaleX(1); }
    75% { transform: translateY(-6px) scaleX(1); }
    90% { opacity: 0.12; }
    100% {
        left: 110%;
        transform: translateY(0px) scaleX(1);
        opacity: 0;
    }
}

/* Cargo Truck - drives across mid-lower area */
.vehicle-truck {
    position: absolute;
    width: 180px;
    bottom: 15%;
    right: -200px;
    opacity: 0.14;
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(200,161,78,0.25));
    animation: driveTruck 22s linear infinite;
    animation-delay: 3s;
    transform: scaleX(-1);
}
@keyframes driveTruck {
    0% {
        right: -200px;
        transform: scaleX(-1) translateY(0px);
        opacity: 0;
    }
    5% { opacity: 0.14; }
    20% { transform: scaleX(-1) translateY(-3px); }
    40% { transform: scaleX(-1) translateY(2px); }
    60% { transform: scaleX(-1) translateY(-2px); }
    80% { transform: scaleX(-1) translateY(1px); }
    90% { opacity: 0.14; }
    100% {
        right: 110%;
        transform: scaleX(-1) translateY(0px);
        opacity: 0;
    }
}

/* Delivery Van - drives across mid area */
.vehicle-van {
    position: absolute;
    width: 130px;
    bottom: 30%;
    left: -150px;
    opacity: 0.12;
    filter: brightness(1.3) drop-shadow(0 0 12px rgba(200,161,78,0.2));
    animation: driveVan 16s linear infinite;
    animation-delay: 10s;
}
@keyframes driveVan {
    0% {
        left: -150px;
        transform: translateY(0px);
        opacity: 0;
    }
    5% { opacity: 0.12; }
    25% { transform: translateY(-4px); }
    50% { transform: translateY(3px); }
    75% { transform: translateY(-2px); }
    90% { opacity: 0.12; }
    100% {
        left: 110%;
        transform: translateY(0px);
        opacity: 0;
    }
}

/* Vehicles for page banners - smaller and subtler */
.page-banner .shipping-vehicles .vehicle-plane {
    width: 150px;
    opacity: 0.1;
    top: 25%;
    animation-duration: 20s;
}
.page-banner .shipping-vehicles .vehicle-truck {
    width: 120px;
    opacity: 0.08;
    bottom: 10%;
    animation-duration: 25s;
}

/* Vehicles in stats section */
.stats .shipping-vehicles .vehicle-plane {
    opacity: 0.08;
    width: 160px;
    filter: brightness(0.3) drop-shadow(0 0 10px rgba(0,0,0,0.3));
}
.stats .shipping-vehicles .vehicle-ship {
    opacity: 0.06;
    width: 180px;
    filter: brightness(0.3);
}

/* Vehicles in CTA */
.cta-box .shipping-vehicles .vehicle-plane {
    opacity: 0.08;
    width: 140px;
    top: 15%;
    filter: brightness(0.3) drop-shadow(0 0 10px rgba(0,0,0,0.2));
}
.cta-box .shipping-vehicles .vehicle-truck {
    opacity: 0.06;
    width: 100px;
    bottom: 10%;
    filter: brightness(0.3);
}

/* Floating particle dots for extra depth */
.shipping-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}
.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 1.5s; animation-duration: 10s; }
.particle:nth-child(3) { left: 55%; top: 30%; animation-delay: 3s; animation-duration: 7s; }
.particle:nth-child(4) { left: 75%; top: 70%; animation-delay: 4.5s; animation-duration: 9s; }
.particle:nth-child(5) { left: 90%; top: 40%; animation-delay: 2s; animation-duration: 11s; }
.particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 5.5s; animation-duration: 8s; }
.particle:nth-child(7) { left: 65%; top: 15%; animation-delay: 7s; animation-duration: 12s; }
.particle:nth-child(8) { left: 45%; top: 50%; animation-delay: 3.5s; animation-duration: 6s; }

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    20% { opacity: 0.4; }
    50% { opacity: 0.6; transform: translateY(-30px) scale(1.5); }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-60px) scale(0.5); }
}

/* Motion trail for plane */
.vehicle-plane::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200,161,78,0.3));
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .vehicle-plane { width: 130px; }
    .vehicle-ship { width: 160px; }
    .vehicle-truck { width: 110px; }
    .vehicle-van { width: 80px; }
    .shipping-vehicles { opacity: 0.7; }
}
