/* ============================================
   MV LIMOUSINE — PREMIUM DESIGN ENHANCEMENTS
   Designer: ui-ux-pro-max skill
   ============================================ */

/* -------------------------------------------
   1. ENHANCED GLASSMORPHISM & LUXURY EFFECTS
   ------------------------------------------- */

.liquid-glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.glass-card-premium {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-premium:hover {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

/* Gradient border effect for premium cards */
.gradient-border {
    position: relative;
    background: #0A0A0A;
    border-radius: 24px;
    z-index: 1;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--brand) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradient-rotate 4s linear infinite;
}

.gradient-border:hover::before {
    opacity: 0.6;
}

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* -------------------------------------------
   2. SCROLL-TRIGGERED SECTION REVEALS
   ------------------------------------------- */

.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children inside revealed sections */
.stagger-children > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.56s; opacity: 1; transform: translateY(0); }

/* -------------------------------------------
   3. ENHANCED MICRO-INTERACTIONS
   ------------------------------------------- */

/* Magnetic button enhancement */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.3s ease;
    will-change: transform;
}

.magnetic-btn:hover {
    box-shadow: 0 10px 40px rgba(185, 28, 28, 0.25);
}

/* Elastic scale on interactive elements */
.elastic-scale {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.elastic-scale:active {
    transform: scale(0.96);
}

/* Glow pulse for CTAs */
.glow-pulse {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0); }
    50% { box-shadow: 0 0 30px 8px rgba(185, 28, 28, 0.15); }
}

/* Shimmer effect for premium elements */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

/* Enhanced nav link underline */
.nav-link-enhanced {
    position: relative;
    display: inline-block;
}

.nav-link-enhanced::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link-enhanced:hover::after {
    width: 100%;
    left: 0;
}

/* -------------------------------------------
   4. VEHICLE CARD ENHANCEMENTS
   ------------------------------------------- */

.vehicle-card-enhanced {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: white;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vehicle-card-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vehicle-card-enhanced:hover::before {
    background: linear-gradient(135deg, var(--gold) 0%, var(--brand) 100%);
    opacity: 1;
}

.vehicle-card-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.vehicle-card-enhanced:hover .vehicle-img {
    transform: scale(1.08);
}

/* -------------------------------------------
   5. ACCESSIBILITY IMPROVEMENTS
   ------------------------------------------- */

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--brand);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Enhanced focus visible */
*:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .section-reveal,
    .section-reveal-left,
    .section-reveal-right,
    .section-reveal-scale,
    .stagger-children > * {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .cursor-glow,
    .shimmer::after,
    .glow-pulse {
        display: none !important;
    }
    
    .marquee-content {
        animation: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .nav-link::after,
    .nav-link-enhanced::after {
        background: currentColor;
    }
    
    .vehicle-card-enhanced:hover::before,
    .gradient-border::before {
        opacity: 1;
    }
}

/* -------------------------------------------
   6. MOBILE OPTIMIZATIONS
   ------------------------------------------- */

@media (max-width: 640px) {
    .vehicle-card-enhanced:hover {
        transform: translateY(-6px);
    }
    
    .glass-card-premium:hover {
        transform: translateY(-2px);
    }
    
    /* Disable cursor glow on touch devices */
    .cursor-glow {
        display: none !important;
    }
    
    /* Simplify particles on mobile */
    #hero-particles {
        opacity: 0.5;
    }
}

/* Better touch targets */
@media (pointer: coarse) {
    .nav-link,
    .nav-link-enhanced {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    .faq-toggle {
        min-height: 48px;
    }
    
    .route-chip {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }
}

/* -------------------------------------------
   7. PERFORMANCE OPTIMIZATIONS
   ------------------------------------------- */

/* Content visibility for below-fold sections */
section:not(#hero) {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* GPU acceleration for animated elements */
.animate-gpu {
    transform: translateZ(0);
    will-change: transform;
}

/* Respect user's data saver preference */
@media (prefers-reduced-data: reduce) {
    #hero-particles,
    .cursor-glow,
    .shimmer::after {
        display: none !important;
    }
}

/* -------------------------------------------
   8. TOAST NOTIFICATION STYLES
   ------------------------------------------- */

.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #0A0A0A;
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 90vw;
    text-align: center;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.copy-tooltip.show {
    opacity: 1 !important;
}

/* -------------------------------------------
   9. COOKIE CONSENT ENHANCEMENTS
   ------------------------------------------- */

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

@media (max-width: 640px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* -------------------------------------------
   10. TABLE ACCESSIBILITY IMPROVEMENTS
   ------------------------------------------- */

.price-table th {
    position: sticky;
    top: 0;
    z-index: 10;
}

.price-table caption {
    text-align: left;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0A0A0A;
}

/* -------------------------------------------
   11. FORM ACCESSIBILITY
   ------------------------------------------- */

.wizard-input:focus-visible {
    border-color: #B91C1C;
    background: white;
    box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.12);
    outline: none;
}

input[type="date"],
input[type="time"] {
    min-height: 44px;
}

/* -------------------------------------------
   12. LOADING SCREEN OPTIMIZATION
   ------------------------------------------- */

.loading-screen {
    will-change: opacity, visibility;
}

/* Reduce loading time on repeat visits */
.loaded-before .loading-screen {
    display: none !important;
}

/* -------------------------------------------
   13. PREMIUM VISUAL ENHANCEMENTS
   ------------------------------------------- */

/* Animated gradient text */
.text-gradient-animate {
    background: linear-gradient(90deg, var(--gold), #fff, var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 4s linear infinite;
}

@keyframes gradient-text {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Subtle aurora background for dark sections */
.aurora-bg {
    position: relative;
    overflow: hidden;
}

.aurora-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(185, 28, 28, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(201, 168, 76, 0.1), transparent);
    filter: blur(60px);
    animation: aurora-shift 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes aurora-shift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    33% { transform: translate(2%, -2%) scale(1.1); opacity: 0.8; }
    66% { transform: translate(-1%, 1%) scale(0.95); opacity: 0.5; }
}

/* Premium hover lift for cards */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Line decoration animation */
.line-decor {
    position: relative;
    display: inline-block;
}

.line-decor::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(185, 28, 28, 0.2), rgba(201, 168, 76, 0.2));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.line-decor.visible::after,
.section-reveal.visible .line-decor::after {
    transform: scaleX(1);
}

/* Enhanced service card icon animation */
.service-card .service-icon svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon svg {
    transform: scale(1.15) rotate(12deg);
}

/* Booking wizard step connector */
.wizard-step-item:not(:last-child)::after {
    background: linear-gradient(to right, #E5E5E5 0%, #E5E5E5 100%);
    background-size: 200% 100%;
}

.wizard-step-item.completed:not(:last-child)::after {
    background: linear-gradient(to right, var(--brand) 0%, var(--brand) 100%);
}

/* Stats counter highlight */
.stat-highlight {
    position: relative;
}

.stat-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(185, 28, 28, 0.08), transparent);
    border-radius: 4px;
    z-index: -1;
}

/* Smooth image zoom container */
.img-zoom-enhanced {
    overflow: hidden;
    border-radius: inherit;
}

.img-zoom-enhanced img {
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-zoom-enhanced:hover img {
    transform: scale(1.08);
}

/* Footer link hover effect */
footer a {
    position: relative;
    transition: color 0.3s ease;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

footer a:hover::after {
    width: 100%;
}

/* Price row highlight */
.price-table tbody tr {
    transition: background-color 0.2s ease;
}

/* Ensure content visibility doesn't break sticky positioning */
section:has(.price-table) {
    content-visibility: visible;
}

/* ============================================
   14. BOOKING WIZARD UX ENHANCEMENTS
   ============================================ */

/* Inline validation styles */
.wizard-input.error {
    border-color: #DC2626;
    background: rgba(220, 38, 38, 0.03);
}

.wizard-input.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.wizard-input.valid {
    border-color: #16A34A;
    background: rgba(22, 163, 74, 0.03);
}

.wizard-input.valid:focus {
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.field-error {
    color: #DC2626;
    font-size: 12px;
    font-weight: 500;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.25s ease;
}

.field-error.show {
    opacity: 1;
    transform: translateY(0);
}

.field-hint {
    color: #888;
    font-size: 11px;
    margin-top: 4px;
}

/* Shake animation for validation errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.shake {
    animation: shake 0.4s ease;
}

/* Route swap button */
.route-swap-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F0F0F0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #555;
    margin: 8px auto 0;
}

.route-swap-btn:hover {
    background: #B91C1C;
    color: white;
    transform: rotate(180deg);
}

.route-swap-btn:active {
    transform: rotate(180deg) scale(0.9);
}

/* Required field indicator */
.required-indicator {
    color: #B91C1C;
    margin-left: 2px;
}

/* Success / Confirmation Screen */
.wizard-success {
    display: none;
    text-align: center;
    padding: 24px 8px;
    animation: successFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-success.active {
    display: block;
}

@keyframes successFadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.success-checkmark {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 30px rgba(22, 163, 74, 0.3);
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes successPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.success-checkmark svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawCheck 0.4s ease 0.5s forwards;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.booking-ref {
    display: inline-block;
    background: linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 100%);
    border: 2px dashed #D0D0D0;
    border-radius: 12px;
    padding: 12px 24px;
    font-family: 'Space Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: #0A0A0A;
    letter-spacing: 0.05em;
    margin: 16px 0;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.btn-success-secondary {
    padding: 12px 24px;
    border: 2px solid #E5E5E5;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: #555;
}

.btn-success-secondary:hover {
    border-color: #0A0A0A;
    color: #0A0A0A;
}

/* Loading spinner for submit button */
.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
    display: none;
}

.btn-wizard-next.loading .btn-spinner {
    display: block;
}

.btn-wizard-next.loading .btn-text {
    display: none;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* Improved summary card */
.summary-section {
    background: linear-gradient(135deg, #F8F8F8 0%, #FAFAFA 100%);
    border: 1px solid #EAEAEA;
}

.summary-row {
    padding: 8px 0;
}

.summary-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Progress persistence indicator */
.form-persist-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #888;
    margin-top: 12px;
    justify-content: center;
}

/* Mobile-first wizard improvements */
@media (max-width: 640px) {
    .booking-wizard {
        padding: 20px !important;
        border-radius: 20px !important;
    }
    
    .wizard-steps {
        margin-bottom: 20px;
    }
    
    .step-bubble {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .wizard-step-item:not(:last-child)::after {
        top: 14px;
    }
    
    .wizard-step-item.active .step-bubble {
        box-shadow: 0 0 0 3px rgba(185,28,28,0.15);
        transform: scale(1.05);
    }
    
    .vehicle-wizard-card {
        padding: 12px;
        gap: 10px;
    }
    
    .vehicle-thumb-placeholder {
        width: 52px;
        height: 40px;
    }
    
    .vehicle-wizard-name {
        font-size: 13px;
    }
    
    .vehicle-wizard-specs {
        font-size: 10px;
    }
    
    .vehicle-wizard-price .price-amount {
        font-size: 15px;
    }
    
    .wizard-input {
        padding: 14px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .wizard-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-wizard-back,
    .btn-wizard-next {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        min-height: 48px;
    }
    
    .route-chip {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .success-checkmark {
        width: 64px;
        height: 64px;
    }
    
    .success-checkmark svg {
        width: 32px;
        height: 32px;
    }
    
    .booking-ref {
        font-size: 16px;
        padding: 10px 18px;
    }
}

/* Touch device optimizations */
@media (pointer: coarse) {
    .vehicle-wizard-card {
        min-height: 64px;
    }
    
    .route-chip {
        min-height: 40px;
    }
    
    .extra-checkbox-label {
        min-height: 48px;
    }
    
    .wizard-input {
        min-height: 48px;
    }
}

/* Better checkbox styling */
.extra-checkbox-label:has(input:checked) {
    border-color: #B91C1C;
    background: rgba(185,28,28,0.05);
}

/* Focus within for checkbox labels */
.extra-checkbox-label:focus-within {
    box-shadow: 0 0 0 3px rgba(185,28,28,0.1);
}
