/* =========================
   BOOKING PAGE
========================= */

.booking-card,
.summary-card {
    background: #1F2937;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.section-subtitle {
    color: #C9A24D;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #9CA3AF;
}

.summary-divider {
    border-top: 1px solid rgba(201,162,77,0.3);
    margin: 25px 0;
}

.total-row {
    font-weight: 600;
    font-size: 18px;
}

.summary-note {
    font-size: 13px;
    color: #6B7280;
}
.booking-card small {
    font-size: 12px;
    display: block;
    margin-top: 5px;
    color: #9CA3AF;
}
.capacity-error {
    font-weight: 500;
    margin-top: 5px;
}
.vehicle-recommendation {
    background: rgba(201,162,77,0.08);
    border: 1px solid rgba(201,162,77,0.4);
    border-radius: 10px;
    font-size: 14px;
}

.vehicle-recommendation strong {
    color: #C9A24D;
}

.vehicle-recommendation button {
    margin-top: 8px;
}
.timeline {
    position: relative;
    margin-left: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 30px;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #C9A24D;
    border-radius: 50%;
}

.timeline-content {
    background: #1F2937;
    padding: 12px;
    border-radius: 6px;
}

.status-badge .badge {
    font-size: 14px;
    background: #C9A24D;
    color: #0B0F19;
}

.timeline-mini {
    background: #1F2937;
    padding: 10px 15px;
    border-radius: 6px;
}
/* =========================================
   UBER STYLE PROGRESS BAR
========================================= */

.progress-wrapper {
position: relative;
}

.progress-line {
height: 6px;
background: #2d3748;
border-radius: 6px;
position: relative;
margin-bottom: 20px;
}

.progress-fill {
height: 6px;
width: 0%;
background: #C9A24D;
border-radius: 6px;
transition: width 0.6s ease;
}

.progress-fill.completed {
background: #28a745;
}

.progress-fill.cancelled {
background: #dc3545;
}

.progress-steps {
display: flex;
justify-content: space-between;
font-size: 12px;
}

.step {
flex: 1;
text-align: center;
color: #9CA3AF;
}

.step.active {
color: #C9A24D;
font-weight: bold;
}

.step.completed {
color: #28a745;
}