
/* =========================
   HERO SECTION (MANUFACTURING)
========================= */
.logistics-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b1220, #111827);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    margin-top: 18px;
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 520px;
}

/* =========================
   BUTTONS (ONLY THIS PAGE)
========================= */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37,99,235,0.35);
}

.btn-secondary-custom {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-secondary-custom:hover {
    background: #fff;
    color: #0f172a;
}

/* =========================
   HERO BULLETS
========================= */
.hero-bullets {
    margin-top: 25px;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* =========================
   STATS CARD (MANUFACTURING KPI)
========================= */
.stats-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
}

.stats-card h3 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stats-grid h2 {
    color: #22c55e;
    font-size: 2rem;
    font-weight: 700;
}

.stats-grid p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* =========================
   FEATURES SECTION
========================= */
.logistics-features {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0f172a;
}

/* Feature boxes */
.feature-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 25px;
    transition: 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #2563eb;
}

.feature-box h4 {
    font-weight: 600;
    color: #0f172a;
}

.feature-box p {
    color: #64748b;
    margin-top: 8px;
}

/* =========================
   CTA SECTION
========================= */
.logistics-cta {
    padding: 80px 0;
    background: #0f172a;
    color: #fff;
}

.logistics-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.logistics-cta p {
    color: #94a3b8;
    margin-top: 10px;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    background: #10b981;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16,185,129,0.35);
}

/* =========================
   RESPONSIVE FIX
========================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}