

.ride-details-section {
    background: linear-gradient(135deg, rgba(15, 86, 59, 0.95) 0%, rgba(25, 135, 84, 0.9) 100%);
    min-height: 100vh;
}

.breadcrumb-light {
    background: transparent;
    padding: 0;
}

.breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-light .breadcrumb-item a:hover {
    color: var(--bs-warning);
}

.location-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.journey-line-vertical {
    position: relative;
}

.journey-line-vertical::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: inherit;
}

.payment-method-card {
    transition: transform 0.3s;
    width: 120px;
    text-align: center;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    border-color: var(--bs-success);
}

.driver-avatar {
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.driver-avatar-placeholder {
    width: 120px;
    height: 120px;
}

.preference-card {
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.preference-card:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-3px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.seats-display {
    position: relative;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.seats-display::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 3px dashed rgba(255, 193, 7, 0.3);
    border-radius: 50%;
}

.driver-stats .stat-value {
    font-family: 'Courier New', monospace;
}

.glass-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glow {
    background: linear-gradient(135deg, var(--bs-warning) 0%, var(--bs-orange) 100%);
    border: none;
    color: #000;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    color: #000;
}

.btn-outline-warning {
    border-width: 2px;
    font-weight: 600;
}

.btn-outline-warning:hover {
    background: var(--bs-warning);
    color: #000;
}

.bg-glow {
    position: relative;
    overflow: hidden;
}

.bg-glow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    top: 0;
    left: -100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

