/* user-dashboard-mobile.css - Mobile-Friendly User Dashboard Styles */

:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #7209b7;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --info-color: #17a2b8;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f5f7fa;
    min-height: 100vh;
    padding-bottom: 70px;
}

/* Mobile Header */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 1000;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.header-logo i {
    font-size: 1.5rem;
}

.btn-menu,
.btn-notification {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: #333;
    position: relative;
    padding: 5px;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--danger-color);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottom Navigation - Mobile Only */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    text-decoration: none;
    color: #666;
    font-size: 0.75rem;
    transition: var(--transition);
    border-radius: 8px;
}

.bottom-nav .nav-item i {
    font-size: 1.25rem;
}

.bottom-nav .nav-item.active {
    color: var(--primary-color);
}

.bottom-nav .nav-item-primary {
    background: var(--primary-color);
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -20px;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}

.bottom-nav .nav-item-primary i {
    font-size: 1.5rem;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    bottom: 0;
    width: 280px;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo i {
    font-size: 1.75rem;
}

.btn-close-sidebar {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: #333;
}

.user-profile {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.user-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.user-email {
    font-size: 0.875rem;
    color: #666;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: #666;
    transition: var(--transition);
    position: relative;
}

.sidebar-nav .nav-link i {
    font-size: 1.25rem;
    width: 24px;
}

.sidebar-nav .nav-link:hover {
    background: #f5f7fa;
    color: var(--primary-color);
}

.sidebar-nav .nav-link.active {
    color: var(--primary-color);
    background: linear-gradient(90deg, rgba(67, 97, 238, 0.1) 0%, transparent 100%);
    border-right: 3px solid var(--primary-color);
}

.sidebar-nav .badge {
    margin-left: auto;
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.btn-logout {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--danger-color);
    width: 100%;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-logout:hover {
    background: rgba(244, 67, 54, 0.1);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

body.sidebar-open {
    overflow: hidden;
}

/* Main Content */
.main-content {
    padding: 80px 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header h4 {
    color: #333;
    font-weight: 700;
    margin: 0;
}

.section-header p {
    color: #666;
    margin: 0;
    font-size: 0.875rem;
}

/* Content Sections */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.bg-success {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.bg-info {
    background: linear-gradient(135deg, #17a2b8, #3ab0c3);
}

.bg-warning {
    background: linear-gradient(135deg, #ff9800, #ffa726);
}

.stat-content h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.stat-content p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.action-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.action-card i {
    font-size: 2rem;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
}

/* Cards */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.card-header a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
}

.card-body {
    padding: 20px;
}

/* Booking Items */
.booking-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.booking-item:last-child {
    border-bottom: none;
}

.booking-info h6 {
    margin: 0 0 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.booking-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.filter-tab {
    padding: 8px 16px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #666;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Bookings List */
.bookings-list {
    display: grid;
    gap: 15px;
}

.booking-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.booking-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.booking-header h6 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #666;
}

.detail-item i {
    color: var(--primary-color);
    width: 16px;
}

.booking-footer {
    display: flex;
    gap: 10px;
}

/* Vehicle Selection */
.vehicle-selection-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vehicle-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.vehicle-card {
    background: white;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.vehicle-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vehicle-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(63, 55, 201, 0.05));
}

.vehicle-card img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.vehicle-info h6 {
    margin: 0 0 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.vehicle-info p {
    margin: 0;
    font-size: 0.75rem;
    color: #666;
}

.vehicle-price {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Service Selection */
.service-selection-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    gap: 15px;
}

.service-card {
    background: white;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    padding: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(63, 55, 201, 0.05));
}

.service-info h6 {
    margin: 0 0 5px;
    font-weight: 600;
    color: #333;
}

.service-info p {
    margin: 0 0 10px;
    font-size: 0.875rem;
    color: #666;
}

.service-price {
    display: inline-block;
    padding: 4px 12px;
    background: var(--success-color);
    color: white;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Extra Services Section */
#extraServicesButtonSection {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

#extraServicesSection {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#extraServicesSection h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.extra-service-card {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.extra-service-card.clickable {
    cursor: pointer;
}

.extra-service-card.clickable:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.1);
    transform: translateY(-2px);
}

.extra-service-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(63, 55, 201, 0.05));
}

.extra-service-card:last-child {
    margin-bottom: 0;
}

.service-content {
    flex: 1;
}

.service-content strong {
    color: #333;
    font-size: 1rem;
}

.service-content .text-muted {
    margin-top: 4px;
    display: block;
}

.service-check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: white;
    transition: var(--transition);
    margin-left: 10px;
}

.extra-service-card.selected .service-check-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.service-check-icon i {
    font-size: 0.875rem;
    opacity: 0;
    transition: var(--transition);
}

.extra-service-card.selected .service-check-icon i {
    opacity: 1;
}

.service-expand-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-left: 10px;
    transition: var(--transition);
}

.extra-options-container {
    margin-left: 15px;
    margin-top: 10px;
    padding-left: 15px;
    border-left: 3px solid var(--primary-color);
    animation: slideDown 0.3s ease;
}

.extra-option-card {
    background: white;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.extra-option-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.1);
    transform: translateX(5px);
}

.extra-option-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(63, 55, 201, 0.05));
}

.extra-option-card.selected .service-check-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.extra-option-card.selected .service-check-icon i {
    opacity: 1;
}

.extra-option-card:last-child {
    margin-bottom: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Booking Form */
.booking-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-step {
    margin-bottom: 20px;
}

.form-step h6 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

/* Price Display */
.price-display {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.price-breakdown h6 {
    margin: 0 0 15px;
    font-weight: 600;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-item:last-of-type {
    border-bottom: none;
}

.price-item span {
    flex: 1;
}

.btn-remove-service {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 10px;
}

.btn-remove-service:hover {
    background: rgba(244, 67, 54, 0.8);
    transform: scale(1.1);
}

.btn-remove-service i {
    font-size: 0.875rem;
}

.price-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

/* Form Footer */
.form-footer {
    margin-top: 20px;
}

/* Profile */
.profile-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.profile-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h5 {
    margin: 0 0 5px;
    font-weight: 600;
    color: #333;
}

.profile-info p {
    margin: 0;
    color: #666;
    font-size: 0.875rem;
}

.profile-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Badges */
.badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bg-warning {
    background: var(--warning-color) !important;
}

.bg-info {
    background: var(--info-color) !important;
}

.bg-success {
    background: var(--success-color) !important;
}

.bg-danger {
    background: var(--danger-color) !important;
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Modal Customization */
.modal-content {
    border-radius: var(--border-radius);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* Booking Details View */
.booking-details-view {
    padding: 10px 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

.detail-label {
    font-weight: 500;
    color: #666;
}

.detail-value {
    font-weight: 600;
    color: #333;
}

/* Map Controls */
.map-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

/* Responsive Design */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .mobile-header,
    .bottom-nav {
        display: none;
    }

    .sidebar {
        left: 0;
    }

    .main-content {
        margin-left: 280px;
        padding: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .booking-details {
        grid-template-columns: repeat(4, 1fr);
    }

    .vehicle-types-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 576px) {
    .vehicle-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section.active {
    animation: fadeIn 0.3s ease;
}

/* Loading States */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

/* Toast Notifications */
.toast {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Utility Classes */
.text-muted {
    color: #666 !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.w-100 {
    width: 100% !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.g-3 {
    gap: 1rem;
}

/* Multiple Vehicles Summary */
.multiple-vehicles-summary {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--primary-color);
}

.multiple-vehicles-summary h6 {
    margin: 0 0 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.added-vehicle-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dee2e6;
}

.vehicle-header strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.vehicle-services {
    margin: 10px 0;
}

.service-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.service-item-row:last-child {
    border-bottom: none;
}

.service-item-row > div {
    display: flex;
    align-items: center;
}

.vehicle-total {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    margin-top: 10px;
    background: white;
    border-radius: 8px;
    font-size: 1.1rem;
}

.grand-total-box {
    padding: 15px;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--primary-color), #3f37c9);
    color: white;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
}

.added-vehicle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
}

.added-vehicle-item:last-of-type {
    margin-bottom: 15px;
}

.vehicle-summary {
    flex: 1;
}

.vehicle-summary strong {
    color: #333;
}

.grand-total {
    padding-top: 15px;
    border-top: 2px solid var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

/* Bike Sub-Options Modal */
.bike-options-grid {
    display: grid;
    gap: 15px;
}

.bike-option-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.bike-option-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(63, 55, 201, 0.05));
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bike-option-image {
    width: 100%;
    max-width: 120px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
}

.bike-option-card h6 {
    margin: 0 0 10px;
    font-weight: 600;
    color: #333;
}

.bike-option-card p {
    margin: 0 0 15px;
    font-size: 0.875rem;
}

.bike-price {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
}
