/* =========================
   HERO SECTION
========================= */
.logistics-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b1220, #111827);
    color: #fff;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    margin-top: 20px;
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* Buttons */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: #2563eb;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
}

.btn-secondary-custom {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
}

/* Bullets */
.hero-bullets {
    margin-top: 25px;
    color: #94a3b8;
}

/* =========================
   STATS CARD
========================= */
.stats-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stats-grid h2 {
    color: #22c55e;
    font-size: 2rem;
}

/* =========================
   FEATURES
========================= */
.logistics-features {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* =========================
   CTA SECTION
========================= */
.logistics-cta {
    padding: 80px 0;
    background: #0f172a;
    color: #fff;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    background: #10b981;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
}