:root {
  --color-navy: #0A0A0D;
  --color-navy-mid: #16161C;
  --color-gold: #D4AF37;
  --color-gold-light: #E6C657;
  --color-navy-rgb: 10, 10, 13;
  --color-navy-mid-rgb: 22, 22, 28;
  --color-gold-rgb: 212, 175, 55;
  --text-muted: #A0A6BC;
  --text-body: #D0D4E4;
}

/* ===== Road2Air Styles ===== */
/* CSS classes used by JavaScript templates */

/* Time slots */
.time-slot {
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.2s;
    background: #0c0c11;
    text-align: left;
    outline: none;
}

.time-slot:focus-visible {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(var(--color-gold-rgb), 0.3);
}

.time-slot:hover {
    border-color: var(--color-gold);
}

.time-slot.selected {
    border-color: var(--color-gold);
    background: rgba(var(--color-gold-rgb), 0.08);
}

.time-slot.full {
    opacity: 0.5;
    cursor: not-allowed;
    background: #18181b;
}

.slot-time {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: block;
}

.slot-avail {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.slot-avail.low {
    color: #e07a2a;
}

.slot-avail.full-text {
    color: #e05555;
}

.avail-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3db87a;
    display: inline-block;
}

.avail-dot.low {
    background: #e07a2a;
}

.avail-dot.full {
    background: #e05555;
}

/* Summary sidebar (JS-generated) */
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.summary-row-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.summary-row-val {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: right;
    max-width: 180px;
}

/* Route visual in summary */
.route-visual {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 20px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

.route-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.route-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
}

.route-dot.dest {
    background: #3db87a;
}

.route-line-v {
    width: 2px;
    height: 16px;
    background: rgba(var(--color-gold-rgb), 0.2);
    margin-left: 4px;
}

/* Confirmation detail rows */
.confirm-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
}

.confirm-detail-row:last-child {
    border-bottom: none;
}

.confirm-detail-row span:first-child {
    color: var(--text-muted);
}

.confirm-detail-row span:last-child {
    font-weight: 600;
    color: #ffffff;
}

/* Form panel visibility */
.form-panel {
    display: none;
}

.form-panel.active {
    display: block;
}

/* Route toggle buttons */
.route-btn {
    padding: 12px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
}

.route-btn.active {
    background: rgba(212, 175, 55, 0.12);
    color: var(--color-gold);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    outline: none;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.route-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(var(--color-gold-rgb), 0.4);
}

/* Accessibility: High-visibility focus indicators */
*:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
}

/* Passenger adjustment touch targets */
.passenger-btn {
    width: 44px !important;
    height: 44px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.passenger-btn:active {
    transform: scale(0.95);
}

/* Step indicators - Updated for professional centered look */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#s1.done .step-num, #s2.done .step-num {
    background: #3db87a !important;
    border-color: #3db87a !important;
    color: var(--color-navy) !important;
}

#s1.done .text-gray, #s2.done .text-gray {
    color: #3db87a !important;
}

/* Calendar Modal Styles */
#calendarModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#calendarModal.active {
    display: flex;
    opacity: 1;
}

.calendar-content {
    background: #0c121d;
    border: 2px solid var(--color-gold);
    border-radius: 24px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

#calendarModal.active .calendar-content {
    transform: translateY(0);
}

/* Hero animations */
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(var(--color-gold-rgb), 0.08) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 20% 80%, rgba(var(--color-navy-mid-rgb), 0.8) 0%, transparent 60%);
}

.hero-road {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(var(--color-gold-rgb), 0.04) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.road-dots {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 55%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--color-gold) 0, var(--color-gold) 20px, transparent 20px, transparent 50px);
    opacity: 0.3;
    animation: slideDots 2s linear infinite;
}

@keyframes slideDots {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 50px 0;
    }
}

/* My Bookings Modal */
#myBookingsModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(var(--color-navy-rgb), 0.85);
    backdrop-filter: blur(8px);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#myBookingsModal.active {
    display: flex;
}

/* Premium Animations */
.animate-float {
    animation: float 4s ease-in-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Calendar Modal Styles */
#calendarModal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none; /* JS toggles flex */
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-blur: 8px;
}

/* Enhanced Service Toggles */
.service-btn {
    border: 1px solid transparent !important;
}

.service-btn.active {
    background: var(--color-gold) !important;
    color: var(--color-navy) !important;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
    border-color: var(--color-gold-light) !important;
    transform: scale(1.02);
}

.service-btn:not(.active):hover {
    background: rgba(201, 168, 76, 0.1) !important;
    color: white !important;
}

/* Calendar Styles Update */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.05);
}

.calendar-day:hover:not(.disabled) {
    background: rgba(201, 168, 76, 0.2);
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.calendar-day.active {
    background: var(--color-gold);
    color: var(--color-navy) !important;
    font-weight: 700;
}

.calendar-day.today {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.calendar-day.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}


