/* ==================================================
   ZOGAD LOGISTICS
   PREMIUM FUTURISTIC WHITE THEME
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700;800&display=swap');

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#0f172a;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* =========================
   VARIABLES
========================= */

:root{

    --primary:#1F2A6B;
    --secondary:#F4511E;

    --text:#0F172A;
    --muted:#64748B;

    --bg:#FFFFFF;
    --surface:#F8FAFC;

    --border:#E2E8F0;

    --shadow-sm:
    0 5px 20px rgba(0,0,0,.05);

    --shadow-md:
    0 20px 60px rgba(0,0,0,.08);

    --shadow-lg:
    0 40px 100px rgba(0,0,0,.12);

    --radius:24px;
}

/* =========================
   GLOBAL
========================= */

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.section{
    padding:120px 0;
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header span{
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-header h2{
    margin-top:15px;
    font-size:52px;
    font-family:'Sora',sans-serif;
    font-weight:800;
    line-height:1.2;
}

/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    top:20px;
    left:0;
    width:100%;
    z-index:999;
}

.navbar{

    background:
    rgba(255,255,255,.85);

    backdrop-filter:blur(25px);

    border-radius:100px;

    padding:18px 30px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    box-shadow:var(--shadow-md);
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:55px;
}

.logo-text span{

    display:block;

    font-family:'Sora',sans-serif;

    font-size:24px;

    font-weight:800;

    color:var(--primary);
}

.logo-text small{

    color:var(--muted);

    letter-spacing:2px;

    font-size:11px;
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    color:var(--text);
    font-weight:600;
}

.nav-links a:hover{
    color:var(--secondary);
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:20px;
}

.nav-btn{

    background:
    linear-gradient(
    135deg,
    var(--primary),
    #3847a3
    );

    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;
}

.mobile-menu{
    display:none;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding-top:120px;
}

.gradient-blob{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.12;
}

.blob-1{
    width:500px;
    height:500px;
    background:var(--primary);
    top:-150px;
    left:-150px;
}

.blob-2{
    width:500px;
    height:500px;
    background:var(--secondary);
    right:-150px;
    top:100px;
}

.blob-3{
    width:450px;
    height:450px;
    background:#4F46E5;
    bottom:-150px;
    left:35%;
}

.hero-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 24px;

    border-radius:50px;

    background:#fff;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    margin-bottom:30px;
}

.pulse-dot{

    width:10px;
    height:10px;

    background:#22C55E;

    border-radius:50%;
}

.hero-content h1{

    font-family:'Sora',sans-serif;

    font-size:88px;

    font-weight:800;

    line-height:1.05;

    margin-bottom:25px;
}

.hero-content h1 span{
    color:var(--secondary);
}

.hero-content p{

    max-width:650px;

    font-size:24px;

    line-height:1.8;

    color:var(--muted);

    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.btn-primary{

    background:
    linear-gradient(
    135deg,
    var(--primary),
    #3847a3
    );

    color:#fff;

    padding:18px 36px;

    border-radius:60px;

    font-weight:700;
}

.btn-secondary{

    background:#fff;

    color:var(--primary);

    padding:18px 36px;

    border-radius:60px;

    border:1px solid var(--border);
}

.hero-stats{
    display:flex;
    gap:20px;
}

.stat-box{

    background:#fff;

    padding:25px;

    min-width:160px;

    border-radius:20px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);
}

.stat-box h3{

    font-size:34px;

    color:var(--primary);

    margin-bottom:8px;
}

/* =========================
   HERO VISUAL
========================= */

.hero-visual{
    position:relative;
    height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-logo img{
    width:340px;
}

.floating-card{

    position:absolute;

    background:#fff;

    padding:18px 24px;

    border-radius:20px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-md);

    font-weight:600;

    display:flex;
    align-items:center;
    gap:10px;
}

.floating-card i{
    color:var(--secondary);
}

.card-1{
    top:50px;
    left:0;
}

.card-2{
    top:90px;
    right:0;
}

.card-3{
    bottom:100px;
    left:20px;
}

.card-4{
    bottom:80px;
    right:20px;
}

/* =========================
   TRUST
========================= */

.trust-section{
    padding:120px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.trust-card{

    background:#fff;

    padding:45px;

    border-radius:24px;

    border:1px solid var(--border);

    text-align:center;

    box-shadow:var(--shadow-sm);
}

.trust-card h3{

    color:var(--primary);

    font-size:48px;

    margin-bottom:10px;
}

.trust-card p{
    color:var(--muted);
}

/* =========================
   SERVICES
========================= */

.services{
    background:#f8fafc;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

    border:1px solid var(--border);

    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-icon{

    width:70px;
    height:70px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );

    margin-bottom:20px;
}

.service-icon i{
    color:#fff;
    font-size:28px;
}

.service-card h3{
    margin-bottom:15px;
}

.service-card p{
    color:var(--muted);
    line-height:1.8;
}

/* =========================
   ECOSYSTEM
========================= */

.ecosystem-wrapper{

    position:relative;

    width:700px;

    height:700px;

    margin:auto;
}

.ecosystem-center{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:180px;
    height:180px;

    background:#fff;

    border-radius:50%;

    box-shadow:var(--shadow-md);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.ecosystem-center img{
    width:70px;
}

.eco-item{

    position:absolute;

    width:160px;

    padding:20px;

    background:#fff;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow-sm);
}

.eco-item i{
    color:var(--secondary);
    font-size:28px;
    margin-bottom:10px;
}

.eco-1{top:0;left:50%;transform:translateX(-50%);}
.eco-2{right:0;top:50%;transform:translateY(-50%);}
.eco-3{left:0;top:50%;transform:translateY(-50%);}
.eco-4{bottom:0;left:50%;transform:translateX(-50%);}
.eco-5{right:80px;bottom:100px;}

/* =========================
   COVERAGE
========================= */

.coverage-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:center;
}

.coverage-map{

    background:#fff;

    padding:40px;

    border-radius:24px;

    box-shadow:var(--shadow-sm);
}

.coverage-list{
    display:grid;
    gap:15px;
}

.coverage-list div{

    background:#fff;

    padding:18px;

    border-radius:16px;

    border:1px solid var(--border);
}

/* =========================
   TRACKING
========================= */

.tracking-card{

    max-width:900px;

    margin:auto;

    background:#fff;

    padding:50px;

    border-radius:30px;

    box-shadow:var(--shadow-md);
}

.tracking-top{

    display:flex;

    justify-content:space-between;

    margin-bottom:40px;
}

.status{

    background:#DCFCE7;

    color:#15803D;

    padding:10px 18px;

    border-radius:50px;

    font-weight:700;
}

.tracking-info{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.tracking-info small{
    color:var(--muted);
}

.tracking-info h4{
    margin-top:8px;
    font-size:26px;
}

/* =========================
   WHY US
========================= */

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

    text-align:center;

    border:1px solid var(--border);
}

.why-card i{

    font-size:42px;

    color:var(--secondary);

    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
}

.why-card p{
    color:var(--muted);
}

/* =========================
   CTA
========================= */

.cta-section{

    padding:140px 0;

    text-align:center;

    color:#fff;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    #3847a3
    );
}

.cta-section h2{

    font-size:64px;

    margin-bottom:20px;
}

.cta-section p{

    font-size:20px;

    margin-bottom:35px;
}

.cta-btn{

    display:inline-block;

    background:#fff;

    color:var(--primary);

    padding:18px 40px;

    border-radius:60px;

    font-weight:700;
}

/* =========================
   FOOTER
========================= */

.footer{

    background:#0f172a;

    color:#fff;

    padding:70px 0 30px;
}

.footer-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.footer-brand img{
    width:60px;
}

.footer-links{
    display:flex;
    gap:30px;
}

.footer-links a{
    color:#fff;
}

.footer-bottom{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:20px;
}
/* =========================================
   HERO TRACKING
========================================= */

.hero-tracking{
    margin:30px 0 40px;
}

.tracking-input-group{

    display:flex;
    align-items:center;

    background:#fff;

    border:1px solid var(--border);

    border-radius:70px;

    overflow:hidden;

    max-width:650px;

    box-shadow:var(--shadow-md);
}

.tracking-input-group i{

    padding-left:25px;

    color:var(--muted);
}

.tracking-input-group input{

    flex:1;

    border:none;

    outline:none;

    padding:22px;

    font-size:16px;
}

.tracking-input-group button{

    border:none;

    cursor:pointer;

    color:#fff;

    padding:22px 35px;

    font-weight:700;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}
/* =========================================
   COVERAGE
========================================= */

.coverage{

    background:#f8fafc;
}

.coverage-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.coverage-city{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    text-align:center;

    font-size:20px;

    font-weight:700;

    color:var(--primary);

    box-shadow:var(--shadow-sm);

    transition:.3s ease;
}

.coverage-city:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

    color:var(--secondary);
}
.footer-contact{

    text-align:right;
}

.footer-contact p{

    margin-bottom:10px;

    color:
    rgba(255,255,255,.8);
}

.footer-contact i{

    color:var(--secondary);

    margin-right:10px;
}