.fleet-status-container {
    margin-bottom: 12px;
}
.fleet-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 2px 4px 2px 0;
    transition: all 0.3s ease;
}
.fleet-status-badge.main-status {
    font-size: 0.85rem;
    padding: 6px 12px;
}
.fleet-status-badge.secondary-status {
    opacity: 0.7;
    font-size: 0.7rem;
}
.status-booking {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
}
.status-booked {
    background: #d4edda;
    color: #155724;
    border: 1px solid #28a745;
}
.status-trip {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #007bff;
}
.status-dropped {
    background: #e2d5f1;
    color: #563d7c;
    border: 1px solid #6f42c1;
}
.status-available {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #17a2b8;
}
.status-maintenance {
    background: #343a40;
    color: #f8f9fa;
    border: 1px solid #212529;
}
.status-preparing {
    background: #4a4e69;
    color: #f8f9fa;
    border: 1px solid #22223b;
}
.status-full {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    border: 1px solid #bd2130;
}
.fleet-status-badge.maintenance-mode {
    display: block;
    text-align: center;
    padding: 8px 12px;
    font-size: 0.8rem;
}
.fleet-booking-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 8px;
    color: #fff;
}
.fleet-booking-info .icon-calendar {
    color: #ffc107;
}
.fleet-booking-counter {
    font-weight: 700;
    color: #ffc107;
}
.demand-notice {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    color: #fff;
}
.demand-notice h5 {
    color: #ffc107;
    margin-bottom: 10px;
}
.demand-notice p {
    margin-bottom: 0;
    opacity: 0.9;
}
.high-demand-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}
.status-frame {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}
.status-frame--available {
    border: 2px solid #17a2b8;
    box-shadow: 0 0 12px rgba(23, 162, 184, 0.5);
}
.status-frame--under-booking {
    border: 2px solid #ffc107;
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.6);
}
.status-frame--booked {
    border: 2px solid #28a745;
    box-shadow: 0 0 12px rgba(40, 167, 69, 0.5);
}
.status-frame--during-trip {
    border: 2px solid #6f42c1;
    box-shadow: 0 0 12px rgba(111, 66, 193, 0.6);
}
.status-frame--dropped-off {
    border: 2px solid #9c27b0;
    box-shadow: 0 0 12px rgba(156, 39, 176, 0.5);
}
.status-frame--maintenance {
    border: 2px solid #6c757d;
    box-shadow: 0 0 12px rgba(108, 117, 125, 0.4);
}
.status-frame--preparing {
    border: 2px solid #4a4e69;
    box-shadow: 0 0 12px rgba(74, 78, 105, 0.5);
}
.status-frame--full {
    border: 2px solid #dc3545;
    box-shadow: 0 0 12px rgba(220, 53, 69, 0.6);
}
.fleet-cta-busy {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529;
    cursor: not-allowed;
    opacity: 0.9;
}

/* ============================================
   FLEET PAGE RESPONSIVE IMPROVEMENTS
   ============================================ */

@media (max-width: 575px) {
    .fleet-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .fleet-image-container {
        height: 160px;
    }
    
    .fleet-status-container {
        flex-wrap: wrap;
    }
    
    .fleet-status-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
        margin-bottom: 4px;
    }
    
    .fleet-booking-info {
        flex-wrap: wrap;
        font-size: 0.85rem;
    }
    
    .demand-notice {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .demand-notice h5 {
        font-size: 1rem;
    }
    
    .demand-notice p {
        font-size: 0.9rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .fleet-section .col-lg-4,
    .fleet-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .fleet-image-container {
        height: 180px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .fleet-section .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
