
/* ===== Base ===== */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
    line-height: 1.7;
    padding-top: 0px;
}
a { text-decoration: none; color: #1e88e5; }
a:hover { color: #0d47a1; }

/* ===== Navbar (kept exactly as existing – only brand name changed) ===== */
.brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}
.navbar {
    background: #0a2540 !important;
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.25);
    padding: 12px 0;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff !important;
}
.navbar-brand i {
    color: #64b5f6;
    margin-right: 8px;
}
.nav-link {
    font-weight: 500;
    color: rgba(255,255,255,0.85) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s, background 0.2s;
    border-radius: 8px;
}
.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
    background: rgba(255,255,255,0.12);
}
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 12px;
    background: #ffffff;
}
.navbar .dropdown-item {
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    color: #1e293b;
}
.navbar .dropdown-item:hover {
    background-color: #eef4fa;
    color: #0a2540;
}
.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, #1e88e5, #0d47a1);
    border: none;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 2rem;
    transition: all 0.3s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.35);
}
.btn-outline-primary {
    border-color: #1e88e5;
    color: #1e88e5;
    border-radius: 50px;
    font-weight: 600;
}
.btn-outline-primary:hover {
    background: #1e88e5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.25);
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 60%, #2a4a6c 100%);
    padding: 70px 0 60px;
    border-radius: 0 0 40px 40px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
}
.hero .lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
}
.hero .tracking-form {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.2);
    border: 1px solid rgba(255,255,255,0.2);
}
.hero .tracking-form .form-control {
    border-radius: 50px;
    border: 1px solid #dde4eb;
    padding: 14px 22px;
    font-size: 1rem;
    transition: all 0.3s;
}
.hero .tracking-form .form-control:focus {
    border-color: #1e88e5;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
}
.hero .tracking-form .input-group .form-control {
    border-radius: 50px 0 0 50px;
}
.hero .tracking-form .input-group .btn {
    border-radius: 0 50px 50px 0;
    padding: 14px 34px;
}
.hero .small-text {
    color: rgba(255,255,255,0.85);
}

/* ===== Sections ===== */
.section-title {
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1e88e5, #64b5f6);
    border-radius: 2px;
}

/* ===== Courier Cards ===== */
.courier-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(10, 37, 64, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    background: #ffffff;
    padding: 1.5rem 1rem;
    text-align: center;
}
.courier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10, 37, 64, 0.12);
}
.courier-card .card-icon {
    font-size: 2.8rem;
    color: #1e88e5;
    margin-bottom: 0.8rem;
}
.courier-card h6 {
    font-weight: 700;
    color: #0a2540;
}
.courier-card .btn-sm {
    border-radius: 50px;
    padding: 0.3rem 1.2rem;
}

/* ===== Feature Cards ===== */
.feature-card {
    border: none;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(10, 37, 64, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10, 37, 64, 0.12);
}
.feature-card .feature-icon {
    font-size: 3rem;
    color: #1e88e5;
    background: #eef4fa;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 1rem;
}

/* ===== Status Cards ===== */
.status-card {
    border: none;
    border-radius: 16px;
    padding: 1.2rem;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.04);
    transition: transform 0.2s;
    text-align: center;
}
.status-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
}
.status-card .status-icon {
    font-size: 2rem;
    color: #1e88e5;
}

/* ===== Search Carrier ===== */
.search-carrier .form-control {
    border-radius: 50px;
    border: 1px solid #dde4eb;
    padding: 14px 22px;
    font-size: 1rem;
}
.search-carrier .form-control:focus {
    border-color: #1e88e5;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
}

/* ===== Timeline ===== */
.timeline-step {
    text-align: center;
}
.timeline-step .step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #1e88e5;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.25);
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
    padding: 60px 0;
    border-radius: 40px;
}
.cta-section h2 {
    color: #ffffff;
}
.cta-section p {
    color: rgba(255,255,255,0.85);
}

/* ===== Footer (kept exactly as existing) ===== */
footer {
    background: #0a2540;
    color: #cbd5e1;
    padding: 50px 0 20px;
    margin-top: 60px;
}
footer a {
    color: #cbd5e1;
    transition: color 0.2s;
}
footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}
footer .disclaimer {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.9rem;
    border-left: 4px solid #64b5f6;
}
footer .disclaimer strong {
    color: #ffffff;
}
footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background 0.2s, transform 0.2s;
    margin-right: 8px;
}
footer .social-icons a:hover {
    background: #1e88e5;
    text-decoration: none;
    transform: translateY(-3px);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-view {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    body { padding-top: 64px; }
    .hero { padding: 40px 0; border-radius: 0 0 24px 24px; }
    .hero h1 { font-size: 2rem; }
    .hero .lead { font-size: 1rem; }
    .hero .tracking-form { padding: 20px; }
    .hero .tracking-form .input-group .form-control {
        border-radius: 50px !important;
        margin-bottom: 10px;
    }
    .hero .tracking-form .input-group .btn {
        border-radius: 50px !important;
    }
    .hero .tracking-form .input-group {
        flex-direction: column;
        border-radius: 50px;
    }
    .section-title { font-size: 1.5rem; }
    .cta-section { padding: 40px 20px; border-radius: 24px; }
    .courier-card { padding: 1rem; }
}

@media (min-width: 993px) {
    .hero { padding: 90px 0 70px; }
}