
/* ==============================================================
   PREMIUM ONE-WAY CAB LANDING PAGE THEME (MIDNIGHT & GOLD)
============================================================== */

/* Hero Section Enhancement */
.hero-section {
    background: linear-gradient(135deg, #0a192f 0%, #172a45 100%) !important;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.05) 0%, transparent 60%);
    animation: rotateGradient 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container {
    position: relative;
    z-index: 1;
}

/* Huge Impactful Typography */
.hero-title-group h1 {
    font-size: 3.5rem !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 20px !important;
}

.hero-title-group .hero-discount-text {
    font-size: 1.6rem !important;
    color: #ffd700 !important; /* Premium Gold */
    background: rgba(255, 215, 0, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title-group p {
    font-size: 1.25rem !important;
    color: #94a3b8 !important;
    max-width: 600px;
}

/* Glassmorphism Booking Widget */
.booking-widget {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
    border-radius: 20px !important;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3) !important;
}

/* Widget Tabs specific to One Way */
.widget-tabs {
    border-bottom: 2px solid rgba(0,0,0,0.05) !important;
}

.widget-tab {
    display: none !important; /* Hide all tabs by default */
}

.widget-tab.active-tab {
    display: flex !important; /* Only show active */
    width: 100%;
    justify-content: center;
    background: transparent !important;
    color: #1e3c72 !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    border-bottom: 3px solid #1e3c72 !important;
}

/* Form Inputs Styling */
.input-group input {
    background: rgba(255,255,255,0.9) !important;
    border: 2px solid rgba(30, 60, 114, 0.1) !important;
    border-radius: 12px !important;
    padding: 15px 15px 15px 45px !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #1e3c72 !important;
    box-shadow: 0 0 0 4px rgba(30, 60, 114, 0.1) !important;
    background: #ffffff !important;
}

/* Book Button */
.btn-primary.search-cabs-btn {
    background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%) !important;
    color: #0a192f !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary.search-cabs-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(243, 156, 18, 0.4) !important;
}

/* Floating Badges */
.trust-badge-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #1e3c72;
    z-index: 10;
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-title-group h1 {
        font-size: 2.2rem !important;
    }
    .hero-title-group .hero-discount-text {
        font-size: 1.1rem !important;
    }
    .trust-badge-float {
        display: none;
    }
}

