/* --- High-Vibrancy System Setup --- */
:root {
    --brand-blue: #2563eb;
    --electric-green: #10b981;
    --vibrant-amber: #f59e0b;
    --deep-navy: #0f172a;
    
    /* Dynamic Gradients */
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
    --gradient-morning: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    --gradient-evening: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    --gradient-cta: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
}

/* --- Hero Components --- */
.colorful-hero {
    background: var(--gradient-hero);
    color: #ffffff;
    overflow: hidden;
}
.status-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
}
.glass-panel {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
}

/* --- Fleet Interactive Tags --- */
.fleet-tag-card {
    background: #ffffff;
    border: 2px solid transparent;
    padding: 16px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fleet-tag-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(37, 99, 235, 0.15);
}
.icon-wrap-blue { background: #dbeafe; color: #1e40af; padding: 10px; border-radius: 12px; }
.icon-wrap-green { background: #d1fae5; color: #065f46; padding: 10px; border-radius: 12px; }

/* --- 🗺️ EYE-CATCHY ROUTE CARDS --- */
.route-section {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}
.route-card-morning {
    background: var(--gradient-morning);
    border: 2px solid #fde68a;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.08);
    transition: all 0.3s ease;
}
.route-card-morning:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(245, 158, 11, 0.18);
}
.route-card-evening {
    background: var(--gradient-evening);
    border: 2px solid #bfdbfe;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
}
.route-card-evening:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(37, 99, 235, 0.18);
}

/* --- 📞 GLOWING INTERACTIVE CONTACT BANNER --- */
.vibrant-cta-banner {
    background: var(--gradient-cta);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}
.contact-glow-pill {
    background: #ffffff;
    color: #1e3a8a !important;
    padding: 16px 28px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}
.contact-glow-pill:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 25px rgba(255,255,255,0.2);
}

/* --- 🌟 PREMIUM GRADIENT ACCENTED FOOTER --- */
.vibrant-footer {
    background: #0b0f19 !important; /* Ultra deep luxurious black */
    color: #f8fafc !important;
    position: relative;
    border-top: 4px solid #2563eb;
}
.footer-heading {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}
.footer-link {
    color: #94a3b8 !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-block;
    padding: 6px 0;
}
.footer-link:hover {
    color: #f59e0b !important; /* Glowing amber on hover */
    transform: translateX(6px);
}
.footer-icon-box {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.2s ease;
}
.footer-icon-box:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

/* --- Buttons --- */
.btn-vibrant-gold {
    background: var(--gradient-gold);
    color: #ffffff !important;
    font-weight: 700;
    border: none;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}
.btn-vibrant-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(217, 119, 6, 0.5);
}