:root {
    --primary-color: #0b1f3a;
    --secondary-color: #ff9f1c;
    --light-color: #f8f9fa;
    --dark-color: #111827;
    --text-color: #374151;
    --white-color: #ffffff;
    --border-color: #e5e7eb;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-color);
    background: #ffffff;
}

a {
    text-decoration: none;
}

.site-navbar {
    background: var(--primary-color);
    padding: 14px 0;
}

.site-navbar .navbar-brand {
    font-size: 1.5rem;
    color: var(--white-color);
}

.site-navbar .nav-link {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-left: 10px;
}

.site-navbar .nav-link:hover {
    color: var(--secondary-color);
}

.hero-section {
    background: linear-gradient(rgba(11, 31, 58, 0.82), rgba(11, 31, 58, 0.82)),
                url('https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    color: var(--white-color);
    padding: 110px 0 90px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.88);
}

.hero-card,
.track-box,
.service-card,
.why-card,
.pricing-card,
.branch-card,
.testimonial-card {
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-card {
    padding: 28px;
}

.hero-stat {
    text-align: center;
    padding: 18px 14px;
    border-radius: 14px;
    background: #f8fafc;
}

.hero-stat h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 4px;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-text {
    max-width: 700px;
    margin: 0 auto 20px;
    color: #6b7280;
}

.track-box {
    padding: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.service-card,
.why-card,
.pricing-card,
.branch-card,
.testimonial-card {
    padding: 28px 22px;
    height: 100%;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover,
.why-card:hover,
.pricing-card:hover,
.branch-card:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(255, 159, 28, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.how-step {
    text-align: center;
    padding: 24px 20px;
}

.how-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 18px;
}

.cta-section {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 24px;
    padding: 50px 30px;
}

.site-footer {
    background: #091426;
    color: rgba(255,255,255,0.85);
}

.footer-title,
.footer-subtitle {
    color: var(--white-color);
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
}

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

.footer-divider {
    border-color: rgba(255,255,255,0.1);
}

.btn-primary-custom {
    background: var(--secondary-color);
    color: var(--white-color);
    border: none;
}

.btn-primary-custom:hover {
    background: #e88900;
    color: var(--white-color);
}

.btn-outline-light-custom {
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white-color);
}

.btn-outline-light-custom:hover {
    background: var(--white-color);
    color: var(--primary-color);
}
.panel-card {
    background: #fff;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    padding: 22px;
}
@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0 70px;
    }

    .hero-section h1 {
        font-size: 2.3rem;
    }

    .track-box {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-card {
        padding: 20px;
    }
    
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-picked_up { background: #d1ecf1; color: #0c5460; }
.status-in_transit { background: #cfe2ff; color: #084298; }
.status-arrived_hub { background: #e2d9f3; color: #59359a; }
.status-out_for_delivery { background: #fde2e4; color: #a61e4d; }
.status-on_hold { background: #ececec; color: #444; }
.status-delivered { background: #d1e7dd; color: #0f5132; }
.status-cancelled { background: #f8d7da; color: #842029; }

.status-icon {
    font-size: 0.95rem;
    line-height: 1;
}

.receipt-stamp {
    display: inline-block;
    padding: 10px 18px;
    border: 3px solid #198754;
    color: #198754;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 2px;
    transform: rotate(-8deg);
    text-transform: uppercase;
    border-radius: 10px;
}

.panel-card {
    background: #fff;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    padding: 22px;
}