/* ============================================
   WAYTOTRIP CINEMATIC CAB BOOKING SYSTEM (100VH)
   ============================================ */
:root {
    --bg-dark: #03080d;
    --panel-bg: rgba(5, 12, 18, 0.86);
    --primary-yellow: #ffc400;
    --yellow-glow: rgba(255, 196, 0, 0.25);
    --text-white: #ffffff;
    --text-sub: #9aa5b1;
    --border-glass: rgba(255, 255, 255, 0.10);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    position: relative;
}

/* Fixed Header Navbar Always Visible & Stuck at Top */
#navbar, header#navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: flex !important;
    align-items: center !important;
    background: rgba(3, 9, 16, 0.92) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border-bottom: 1px solid rgba(255, 196, 0, 0.25) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6) !important;
}

/* ============================================
   1. FULL-SCREEN CINEMATIC BACKGROUND & AURORA
   ============================================ */
#full-viewport-journey {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(circle at 50% 35%, #081124 0%, #030712 55%, #010205 100%);
}

/* Cosmic Space Aurora & Nebula System */
.aurora-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 75%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
    opacity: 0.9;
    mix-blend-mode: screen;
}

.aurora-curtain {
    position: absolute;
    width: 160%;
    height: 100%;
    top: -20%;
    left: -30%;
    filter: blur(55px);
    will-change: transform, opacity;
}

.aurora-1 {
    background: radial-gradient(ellipse at 30% 20%, rgba(147, 51, 234, 0.35) 0%, rgba(0, 225, 255, 0.22) 40%, rgba(0, 100, 200, 0.05) 70%, transparent 80%);
    animation: auroraFlow1 18s ease-in-out infinite alternate;
}

.aurora-2 {
    background: radial-gradient(ellipse at 70% 15%, rgba(0, 255, 175, 0.3) 0%, rgba(59, 130, 246, 0.2) 45%, rgba(255, 196, 0, 0.1) 75%, transparent 85%);
    animation: auroraFlow2 24s ease-in-out infinite alternate;
}

.aurora-3 {
    background: radial-gradient(ellipse at 50% 5%, rgba(255, 196, 0, 0.28) 0%, rgba(0, 230, 180, 0.18) 50%, transparent 75%);
    animation: auroraFlow3 20s ease-in-out infinite alternate;
}

@keyframes auroraFlow1 {
    0% { transform: translateY(0) rotate(-2deg) scale(1); opacity: 0.7; }
    50% { transform: translateY(25px) rotate(3deg) scale(1.12); opacity: 0.95; }
    100% { transform: translateY(-15px) rotate(-1deg) scale(1.05); opacity: 0.75; }
}

@keyframes auroraFlow2 {
    0% { transform: translateY(0) rotate(2deg) scale(1.05); opacity: 0.8; }
    50% { transform: translateY(-30px) rotate(-3deg) scale(0.95); opacity: 0.6; }
    100% { transform: translateY(20px) rotate(1deg) scale(1.1); opacity: 0.9; }
}

@keyframes auroraFlow3 {
    0% { transform: translateX(0) scale(1); opacity: 0.6; }
    50% { transform: translateX(40px) scale(1.15); opacity: 0.85; }
    100% { transform: translateX(-30px) scale(0.95); opacity: 0.65; }
}

/* Starfield & Twinkling Night Stars */
.starfield-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 75%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    will-change: opacity, transform;
    animation: starTwinkle var(--twinkle-dur, 3s) ease-in-out infinite alternate;
    animation-delay: var(--twinkle-delay, 0s);
}

@keyframes starTwinkle {
    0% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.3); box-shadow: 0 0 6px rgba(255,255,255,0.9); }
    100% { opacity: 0.3; transform: scale(0.9); }
}

/* Shooting Star Trail */
.shooting-star {
    position: absolute;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(0,255,200,0.6), transparent);
    border-radius: 50%;
    transform: rotate(-35deg);
    opacity: 0;
    animation: shootingStar 12s linear infinite;
    pointer-events: none;
}

@keyframes shootingStar {
    0% { transform: translateX(0) translateY(0) rotate(-35deg); opacity: 0; }
    5% { opacity: 1; }
    12% { transform: translateX(-400px) translateY(280px) rotate(-35deg); opacity: 0; }
    100% { transform: translateX(-400px) translateY(280px) rotate(-35deg); opacity: 0; }
}

.journey-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

/* City Night Layer (Delhi - Left) */
.city-layer {
    background: 
        radial-gradient(circle at 15% 40%, rgba(255, 160, 50, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 10% 70%, rgba(0, 150, 255, 0.1) 0%, transparent 60%);
    opacity: 1;
}

/* Highway Layer (Center) */
.highway-layer {
    background: 
        radial-gradient(circle at 50% 35%, rgba(0, 180, 255, 0.14) 0%, transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(255, 196, 0, 0.08) 0%, transparent 50%);
    opacity: 0.6;
}

/* Mountain Layer (Manali - Right) */
.mountain-layer {
    background: 
        radial-gradient(circle at 85% 30%, rgba(0, 220, 255, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 90% 60%, rgba(147, 51, 234, 0.12) 0%, transparent 60%);
    opacity: 0.3;
}

/* Scenery SVG Silhouettes */
.scenery-svg-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 380px;
}

/* Continuous Horizon Highway Road */
.cinema-road {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 75px;
    background: linear-gradient(180deg, #1c2630 0%, #2a3644 30%, #151d26 100%);
    border-top: 2px solid rgba(255, 196, 0, 0.3);
    border-bottom: 2px solid rgba(0, 0, 0, 0.8);
    z-index: 3;
    overflow: hidden;
}

.cinema-lane-markings {
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    height: 4px;
    transform: translateY(-50%);
    display: flex;
    gap: 30px;
}

.cinema-lane-dash {
    width: 40px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 2px;
    opacity: 0.65;
    box-shadow: 0 0 8px var(--primary-yellow);
}

/* ============================================
   2. AUTOMATIC MOVING CAR
   ============================================ */
.cinema-car-wrapper {
    position: absolute;
    bottom: 82px;
    left: 8vw;
    width: 210px;
    z-index: 4;
    will-change: transform;
    pointer-events: none;
}

.journey-car {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.7));
    transition: opacity 0.4s ease;
}

.journey-car-fallback {
    width: 100%;
    height: auto;
    display: none;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.7));
}

.car-headlight {
    position: absolute;
    right: -140px;
    top: 35%;
    width: 170px;
    height: 40px;
    background: radial-gradient(ellipse at left center, rgba(255, 240, 180, 0.45) 0%, rgba(255, 240, 180, 0.1) 45%, transparent 75%);
    z-index: 3;
    pointer-events: none;
    opacity: 0.85;
}

.car-road-shadow {
    position: absolute;
    bottom: -8px;
    left: 5%;
    width: 90%;
    height: 14px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 80%);
    border-radius: 50%;
    z-index: 1;
}

/* ============================================
   LAYOUT CONTAINER (100VH FLEX)
   ============================================ */
#main-content-flow {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 75px; /* Navbar height */
    padding-bottom: 12px;
    max-width: 1280px;
    margin: 0 auto;
    width: 94%;
}

/* ============================================
   4. HERO TITLE (COMPACT)
   ============================================ */
.hero-header-box {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 12px;
}

.hero-main-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 2.5vw, 2.1rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 4px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.highlight-yellow {
    background: linear-gradient(135deg, #fff5c0 0%, #ffc400 50%, #ff9100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(255, 196, 0, 0.45);
    display: inline-block;
}

.hero-sub-title {
    font-size: clamp(0.78rem, 1.2vw, 0.92rem);
    color: var(--text-sub);
    font-weight: 400;
}

/* Mouse Spotlight Glow */
.cursor-spotlight {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 220, 255, 0.07) 0%, rgba(255, 196, 0, 0.03) 45%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    opacity: 0;
}

/* ============================================
   5. MAIN GLASS BOOKING PANEL (ULTRA-COMPACT LUXURY)
   ============================================ */
.cinema-booking-panel {
    width: clamp(320px, 88vw, 820px);
    margin: 0 auto;
    background: linear-gradient(165deg, rgba(9, 22, 36, 0.90) 0%, rgba(4, 11, 18, 0.95) 100%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 196, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    box-shadow: 0 30px 85px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 45px rgba(255, 196, 0, 0.08);
    padding: 18px 24px;
    position: relative;
    z-index: 15;
    transition: all 0.4s ease;
}

.cinema-booking-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ffc400 50%, transparent 100%);
    box-shadow: 0 0 12px #ffc400;
}

/* Step Indicator Header */
.booking-steps-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.steps-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 10px rgba(255, 196, 0, 0.3);
}

.steps-list {
    display: flex;
    gap: 10px;
    list-style: none;
}

.step-item {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-sub);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(3, 8, 13, 0.5);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    font-size: 0.58rem;
    font-weight: 800;
}

.step-item.active {
    color: #03080d;
    background: linear-gradient(135deg, #ffc400, #ffa000);
    border-color: #ffc400;
    box-shadow: 0 0 16px rgba(255, 196, 0, 0.4);
    font-weight: 900;
}

.step-item.active .step-num {
    background: #03080d;
    color: #ffc400;
}

/* Form Grid & Inputs */
.form-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group-cinema {
    position: relative;
}

.form-group-cinema label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}

.cinema-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(3, 9, 16, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 3px 8px 3px 10px;
    transition: all 0.3s;
}

.cinema-input-wrapper:hover {
    border-color: rgba(255, 196, 0, 0.4);
    background: rgba(3, 9, 16, 0.9);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.cinema-input-wrapper:focus-within {
    border-color: #ffc400;
    box-shadow: 0 0 18px rgba(255, 196, 0, 0.25);
    background: rgba(2, 6, 12, 0.95);
}

.input-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 196, 0, 0.12);
    color: #ffc400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-right: 10px;
    border: 1px solid rgba(255, 196, 0, 0.2);
}

.cinema-input, .cinema-select {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 600;
    outline: none;
    padding: 8px 0;
}

.cinema-select option {
    background: #040a10;
    color: #ffffff;
}

.map-picker-pill {
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.15), rgba(255, 196, 0, 0.05));
    border: 1px solid rgba(255, 196, 0, 0.35);
    color: #ffc400;
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    white-space: nowrap;
}

.map-picker-pill:hover {
    background: #ffc400;
    color: #02060c;
    box-shadow: 0 0 12px rgba(255, 196, 0, 0.5);
    transform: scale(1.05);
}

/* Form Row 4 Columns */
.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

/* Find Cabs CTA Button */
.find-cabs-btn {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffd000 0%, #ff9a00 50%, #e68000 100%);
    color: #02060c;
    font-family: 'Outfit', sans-serif;
    font-size: 0.94rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    cursor: pointer;
    box-shadow: 0 10px 35px rgba(255, 196, 0, 0.4);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.find-cabs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s;
}

.find-cabs-btn:hover::before {
    left: 100%;
}

.find-cabs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 42px rgba(255, 196, 0, 0.55);
}

.find-cabs-btn:hover i {
    transform: translateX(5px);
}

.find-cabs-btn i {
    transition: transform 0.3s ease;
}

/* Step 2: Cab Selection Cards (Hidden initially) */
#step-2-cabs {
    display: none;
}

.cabs-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.back-to-step1-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.back-to-step1-btn:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.cabs-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.cab-select-card {
    background: rgba(3, 8, 13, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.cab-select-card:hover, .cab-select-card.selected {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 15px var(--yellow-glow);
    background: rgba(255, 196, 0, 0.04);
}

.cab-card-img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 6px;
}

.cab-card-name {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
}

.cab-card-type {
    font-size: 0.6rem;
    color: var(--text-sub);
    margin-bottom: 8px;
}

.cab-card-rate {
    font-size: 0.65rem;
    color: var(--primary-yellow);
    font-weight: 700;
}

.cab-card-fare {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 900;
    color: #ffffff;
    margin: 4px 0 8px 0;
}

.cab-select-btn {
    width: 100%;
    padding: 6px 0;
    border: none;
    border-radius: 8px;
    background: var(--primary-yellow);
    color: #03080d;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

/* ============================================
   14. TRUST STRIP (COMPACT)
   ============================================ */
.cinema-trust-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.64rem;
    font-weight: 600;
    color: var(--text-sub);
    position: relative;
    z-index: 15;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-item i {
    color: var(--primary-yellow);
}

/* ============================================
   15 & 16. WHATSAPP & LIVE TICKER
   ============================================ */
.whatsapp-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: #25d366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}

.whatsapp-float-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

.live-booking-ticker {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    background: rgba(5, 12, 18, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.64rem;
    color: var(--text-sub);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

/* Prominent Glowing Home Button */
.home-glow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.18), rgba(255, 196, 0, 0.06));
    border: 1.5px solid #ffc400;
    color: #ffc400;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 18px rgba(255, 196, 0, 0.25);
}

.home-glow-btn:hover {
    background: #ffc400;
    color: #02060c;
    box-shadow: 0 0 28px rgba(255, 196, 0, 0.6);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE MOBILE OVERHAUL (<900px, <600px, <480px)
   ============================================ */
@media (max-width: 900px) {
    html, body {
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
    }

    #main-content-flow {
        height: auto;
        padding-top: 105px !important; /* Clears navbar cleanly */
        padding-bottom: 25px;
        gap: 12px;
        width: 95%;
    }

    .hero-header-box {
        margin-top: 0;
        margin-bottom: 8px;
    }

    .hero-main-title {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem);
        letter-spacing: 0.5px;
        line-height: 1.25;
    }

    .hero-sub-title {
        font-size: 0.72rem;
    }

    .cinema-booking-panel {
        width: 100%;
        padding: 14px 12px;
        border-radius: 16px;
    }

    .booking-steps-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 4px;
        padding-bottom: 8px;
        margin-bottom: 12px;
    }

    .steps-title {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .steps-list {
        display: flex;
        gap: 4px;
        list-style: none;
    }

    .step-item {
        font-size: 0.56rem;
        padding: 3px 6px;
        border-radius: 12px;
        gap: 3px;
        letter-spacing: 0px;
    }

    .step-num {
        width: 14px;
        height: 14px;
        font-size: 0.52rem;
    }

    .form-grid-row {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 8px;
    }

    /* 2x2 Compact Grid on Mobile */
    .form-grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
        margin-bottom: 12px;
    }

    .form-group-cinema label {
        font-size: 0.58rem;
        margin-bottom: 3px;
        letter-spacing: 0.8px;
    }

    .cinema-input-wrapper {
        min-height: 38px;
        padding: 2px 6px 2px 8px;
        border-radius: 10px;
    }

    .input-badge-icon {
        width: 22px;
        height: 22px;
        font-size: 0.68rem;
        margin-right: 6px;
        border-radius: 6px;
    }

    .cinema-input, .cinema-select {
        font-size: 0.8rem;
        padding: 4px 0;
    }

    .map-picker-pill {
        font-size: 0.58rem;
        padding: 3px 7px;
        border-radius: 14px;
    }

    .find-cabs-btn {
        padding: 12px 0;
        font-size: 0.82rem;
        letter-spacing: 1.5px;
        border-radius: 12px;
    }

    .cabs-grid-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cinema-trust-strip {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 12px;
        font-size: 0.58rem;
    }

    .whatsapp-float-btn {
        bottom: 12px;
        right: 12px;
        padding: 7px 12px;
        font-size: 0.68rem;
        z-index: 90;
        box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
    }

    .live-booking-ticker {
        display: none;
    }

    /* Mobile Car & Road Adjustments */
    .cinema-car-wrapper {
        width: 130px;
        bottom: 45px;
    }

    .cinema-road {
        height: 45px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    #main-content-flow {
        padding-top: 100px !important;
    }

    .steps-title {
        font-size: 0.6rem;
    }

    .step-item {
        font-size: 0.52rem;
        padding: 2px 4px;
    }

    .cabs-grid-cards {
        grid-template-columns: 1fr;
    }

    .cab-select-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 10px;
        padding: 8px 12px;
    }

    .cab-card-img {
        width: 75px;
        height: 45px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .cab-select-btn {
        width: auto;
        padding: 5px 10px;
        margin-left: auto;
        flex-shrink: 0;
        font-size: 0.6rem;
    }
}
