/* ============================================
   UniParcels - Custom Styles
   ============================================ */

:root {
    --up-primary: #0d6efd;
    --up-warning: #ffc107;
    --up-dark: #212529;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

/* Track & Trace Box */
.track-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Feature Cards */
.feature-card {
    border: none;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.2rem;
}

/* Stat Section */
.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
}

/* Steps */
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--up-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Pricing Cards */
.pricing-card {
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 3px solid var(--up-primary) !important;
    position: relative;
}

/* UPP Map placeholder */
.upp-map {
    height: 300px;
    background: #e9ecef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

/* Navbar active */
.navbar-nav .nav-link.active {
    color: #fff !important;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d6efd, #0043a8);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section { min-height: auto; padding: 4rem 0; }
    .stat-item h2 { font-size: 2rem; }
}
