/* ============================================================
   L1DERES AUTOWASH — LANDING PAGE COMERCIAL (Aura v1.5)
   Estilo High-Tech Racing / F1 Aesthetics
   ============================================================ */

:root {
    --bg-main: #020617;
    --bg-card: rgba(15, 23, 42, 0.75);
    --bg-card-hover: rgba(30, 41, 59, 0.85);
    --primary-red: #e10600;
    --primary-cyan: #0ea5e9;
    --neon-blue: #38bdf8;
    --neon-yellow: #fde047;
    --neon-green: #10b981;
    --accent-gold: #f59e0b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(56, 189, 248, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto;
    border-radius: 6px;
}

.brand-name {
    font-family: 'Racing Sans One', cursive;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    color: #fff;
}

.brand-name .highlight {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--neon-blue);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-nav {
    background: linear-gradient(135deg, var(--primary-red), #b91c1c);
    color: white;
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.4);
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 6, 0, 0.6);
}

.btn-outline-nav {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
}

.btn-outline-nav:hover {
    color: white;
    border-color: var(--neon-blue);
    background: rgba(56, 189, 248, 0.1);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 160px 20px 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(225, 6, 0, 0.12) 0%, transparent 60%);
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(56, 189, 248, 0.08);
    filter: blur(120px);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(225, 6, 0, 0.15);
    color: #f87171;
    border: 1px solid rgba(225, 6, 0, 0.3);
    font-family: 'Racing Sans One', cursive;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.neon-text {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-red), #dc2626);
    color: white;
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(225, 6, 0, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225, 6, 0, 0.6);
}

.btn-hero-secondary {
    background: rgba(15, 23, 42, 0.8);
    color: white;
    border: 1px solid var(--border-glow);
    padding: 14px 28px;
    font-size: 1.05rem;
    backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: var(--neon-blue);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    width: fit-content;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--neon-blue);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: var(--border-glass);
}

/* HERO VISUAL */
.hero-visual {
    display: flex;
    justify-content: center;
}

.car-card-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    text-align: center;
}

.car-hero-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.7));
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.car-card-frame:hover .car-hero-img {
    transform: scale(1.1) translateY(-5px);
}

.car-card-badge {
    margin-top: 20px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.15);
    color: #4ade80;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* SECCIONES COMUNES */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: 'Racing Sans One', cursive;
    color: var(--neon-blue);
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* SERVICIOS GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.service-card.featured {
    border: 2px solid var(--primary-cyan);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.25);
}

.featured-badge {
    position: absolute;
    top: -14px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-cyan), #0284c7);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(56, 189, 248, 0.15);
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.service-features li i {
    color: var(--neon-green);
    font-size: 1.1rem;
}

.service-price {
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-glass);
}

.price-val {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: white;
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.btn-service {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    justify-content: center;
    padding: 12px;
    border: 1px solid var(--border-glass);
}

.btn-service:hover {
    background: var(--primary-cyan);
    color: #020617;
    border-color: var(--primary-cyan);
}

.btn-featured {
    background: linear-gradient(135deg, var(--primary-cyan), #0284c7);
    color: white;
    border: none;
}

.btn-featured:hover {
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
}

/* STEPS / COMO FUNCIONA */
.how-section {
    background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.9) 0%, var(--bg-main) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 35px 25px;
    position: relative;
    transition: transform 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Racing Sans One', cursive;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.06);
}

.step-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: inline-block;
}

.step-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* PROMOS SECTION */
.promo-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(225, 6, 0, 0.15));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.promo-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
}

.promo-text p {
    color: var(--text-primary);
    max-width: 650px;
    font-size: 1.05rem;
}

.btn-promo {
    background: var(--accent-gold);
    color: #020617;
    padding: 14px 28px;
    font-weight: 800;
    border-radius: 10px;
}

.btn-promo:hover {
    background: #facc15;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* CONTACTO */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 1.6rem;
    color: var(--primary-red);
    margin-top: 2px;
}

.info-item strong {
    display: block;
    color: white;
    font-size: 1rem;
}

.info-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.btn-wa {
    background: #25D366;
    color: white;
    padding: 14px 28px;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
    background: #22c55e;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.contact-card-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 35px;
    backdrop-filter: blur(12px);
}

.contact-card-box h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.contact-card-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-field input, .form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    background: rgba(2, 6, 23, 0.6);
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-field input:focus, .form-field textarea:focus {
    border-color: var(--neon-blue);
}

.btn-submit-contact {
    width: 100%;
    background: var(--primary-cyan);
    color: #020617;
    justify-content: center;
    padding: 12px;
    font-weight: 700;
}

.btn-submit-contact:hover {
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* FOOTER */
.main-footer {
    border-top: 1px solid var(--border-glass);
    padding: 30px 0;
    background: #020617;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    font-family: 'Racing Sans One', cursive;
    color: white;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-left p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 4px;
}

.footer-right {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.9rem;
}

.footer-right a {
    color: var(--neon-blue);
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

.footer-right span {
    color: var(--text-secondary);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        margin: 0 auto;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
}

/* TRACK MIRROR CIRCUIT STYLING */
.track-base {
    stroke-width: 110px;
    stroke: #4b4b4b;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.track-line {
    stroke-dasharray: 30 15;
    animation: trackFlow 1.5s linear infinite;
    opacity: 0.8;
}

@keyframes trackFlow {
    to {
        stroke-dashoffset: -45;
    }
}

.canvas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 40px repeat(7, 65px);
    gap: 8px;
    padding: 15px;
    width: 100%;
    min-height: 540px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.zone-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #38bdf8;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.grid-box {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    position: relative;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.grid-box.box-occupied-lavado {
    background: rgba(56, 189, 248, 0.15);
    border-color: #38bdf8;
    box-shadow: inset 0 0 20px rgba(56, 189, 248, 0.3);
}

.grid-box.box-occupied-secado {
    background: rgba(217, 119, 6, 0.15);
    border-color: #f59e0b;
    box-shadow: inset 0 0 20px rgba(245, 158, 11, 0.3);
}

.grid-box.box-occupied-completo {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    box-shadow: inset 0 0 20px rgba(16, 185, 129, 0.3);
}

.reserva-online {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
    border: 2px dashed #f59e0b;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #fff;
    text-shadow: 0 0 10px #f59e0b;
    box-shadow: inset 0 0 15px rgba(245, 158, 11, 0.2), 0 0 10px rgba(245, 158, 11, 0.3);
}

.car-wrapper {
    position: absolute;
    width: 90px;
    height: 45px;
    z-index: 100;
    pointer-events: none;
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1), top 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s ease;
}

.auto-icon {
    width: 140%;
    height: 140%;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.2) drop-shadow(0 5px 8px rgba(0,0,0,0.6));
}

.car-wrapper::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 2.2cm; height: 1.1cm;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.5);
    filter: blur(14px);
    z-index: -1;
    opacity: 0.85;
}

/* SPONSOR DIGITAL SCREEN */
.sponsor-screen-container {
    position: absolute;
    top: 52%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 140px;
    z-index: 50;
}

.sponsor-screen-frame {
    width: 100%;
    height: 100%;
    background: #090d16;
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4), inset 0 0 15px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.screen-header {
    background: rgba(14, 165, 233, 0.2);
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(14, 165, 233, 0.3);
}

.screen-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: 0.5px;
}

.screen-media-wrapper {
    flex: 1;
    position: relative;
    background: #000;
    overflow: hidden;
}

.screen-media-wrapper img, .screen-media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-footer {
    padding: 4px 8px;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sponsor-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sponsor-subtitle {
    font-size: 0.65rem;
    color: #94a3b8;
}

/* Badge flotante de tiempo superior sobre cada auto (idéntico al Dashboard Admin) */
.car-timer {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    font-weight: 900;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.4);
    white-space: nowrap;
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
    z-index: 30;
    pointer-events: none;
    display: block !important;
}

.car-wrapper.solo-lavado .car-timer { background: #3b82f6; box-shadow: 0 0 10px #3b82f6; }
.car-wrapper.solo-secado .car-timer { background: #22c55e; box-shadow: 0 0 10px #22c55e; }
.car-wrapper.completo .car-timer    { background: #f97316; box-shadow: 0 0 10px #f97316; }

/* Carril Vertical de SALIDA */
.salida-vertical-container {
    position: absolute;
    top: 55px;
    left: 8px;
    bottom: 25px;
    width: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    background: rgba(239, 68, 68, 0.06);
    border: 1.5px dashed rgba(239, 68, 68, 0.45);
    border-radius: 8px;
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.12), inset 0 0 10px rgba(239, 68, 68, 0.08);
}

.salida-text-vertical {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
    transform: rotate(180deg);
}

.salida-icon-top {
    color: #ef4444;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px #ef4444);
}

.salida-icon-bottom {
    color: #ef4444;
    font-size: 1.3rem;
    animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.car-wrapper.exiting-car {
    animation: carExitFade 2.2s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes carExitFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(180deg) scale(1);
    }
    60% {
        opacity: 0.7;
        transform: translate(-50%, 60px) rotate(180deg) scale(0.85);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 140px) rotate(180deg) scale(0.4);
    }
}
