/* =================================================================
   DRIVE365 — DASHBOARD & AUTH PREMIUM STYLESHEET
   ================================================================= */

/* ============================================
   AUTH PAGES — Login & Register
   ============================================ */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.06) 0%, transparent 60%),
        linear-gradient(180deg, #06080f 0%, #0B0F19 100%);
}

.auth-wrapper {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.auth-card {
    background: rgba(20, 25, 40, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 20px;
    padding: 44px 36px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}
.auth-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Cairo', sans-serif;
}
.auth-logo-drive { color: #fff; }
.auth-logo-365 { color: var(--gold-500); }
.auth-header h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 6px;
    font-family: 'Cairo', sans-serif;
}
.auth-header p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Auth Form */
.auth-form { display: flex; flex-direction: column; gap: 18px; }

.auth-field label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.auth-field label i {
    color: var(--gold-500);
    margin-right: 4px;
    font-size: 0.75rem;
}
.auth-field input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 13px 16px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}
.auth-field input::placeholder {
    color: rgba(255,255,255,0.25);
}
.auth-field input:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
    background: rgba(255,255,255,0.06);
}

.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    cursor: pointer;
}
.auth-remember input[type="checkbox"] {
    accent-color: var(--gold-500);
    width: 16px;
    height: 16px;
}

.auth-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--gold-gradient);
    color: #0B0F19;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}
.auth-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.auth-footer a {
    color: var(--gold-500);
    text-decoration: none;
    font-weight: 600;
}
.auth-footer a:hover { text-decoration: underline; }

.auth-alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}
.auth-alert-danger {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
    color: #fca5a5;
}
.auth-alert p { margin: 2px 0; }

/* ============================================
   AUTH MODAL
   ============================================ */
.auth-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-modal {
    background: rgba(20, 25, 40, 0.95);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 20px;
    padding: 0;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 32px 100px rgba(0,0,0,0.6);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.auth-modal-close {
    position: absolute;
    top: 14px; right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s;
    line-height: 1;
}
.auth-modal-close:hover { color: #fff; }

.auth-modal-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.auth-modal-tab {
    flex: 1;
    padding: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    position: relative;
}
.auth-modal-tab.active {
    color: var(--gold-500);
}
.auth-modal-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
}
.auth-modal-tab:hover { color: rgba(255,255,255,0.7); }

.auth-modal-panel {
    display: none;
    padding: 28px 32px 32px;
}
.auth-modal-panel.active {
    display: block;
}

.auth-modal-header {
    margin-bottom: 24px;
}
.auth-modal-header h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 4px;
    font-family: 'Cairo', sans-serif;
}
.auth-modal-header p {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
}

.auth-modal-alert {
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}
.auth-modal-alert.error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
    color: #fca5a5;
}
.auth-modal-alert.success {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
    color: #86efac;
}

/* ============================================
   NAVBAR USER DROPDOWN
   ============================================ */
.navbar-user-dropdown {
    position: relative;
}
.navbar-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 40px;
    padding: 6px 14px 6px 6px;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
    font-family: inherit;
}
.navbar-user-btn:hover {
    background: rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.3);
}
.navbar-user-avatar {
    width: 32px;
    height: 32px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B0F19;
    font-size: 0.8rem;
    font-weight: 700;
}
.navbar-user-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0B0F19;
}
.navbar-user-arrow {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    transition: transform 0.3s;
}

.navbar-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: rgba(20, 25, 40, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 16px 50px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1001;
}
.navbar-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.navbar-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.88rem;
    border-radius: 8px;
    transition: all 0.2s;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
}
.navbar-dropdown-item i {
    width: 16px;
    text-align: center;
    color: var(--gold-500);
    font-size: 0.8rem;
}
.navbar-dropdown-item:hover {
    background: rgba(212,175,55,0.08);
    color: #fff;
}
.navbar-dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 6px 0;
}
.navbar-dropdown-logout {
    color: rgba(239,68,68,0.8);
}
.navbar-dropdown-logout:hover {
    background: rgba(239,68,68,0.08);
    color: #ef4444;
}

/* ============================================
   DASHBOARD LAYOUT
   ============================================ */
.dash-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(212,175,55,0.04) 0%, transparent 60%),
        linear-gradient(180deg, #06080f 0%, #0B0F19 100%);
}

.dash-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* ---- Sidebar ---- */
.dash-sidebar {
    background: rgba(20, 25, 40, 0.7);
    border: 1px solid rgba(212,175,55,0.08);
    border-radius: 16px;
    padding: 0;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.dash-sidebar-header {
    padding: 28px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(212,175,55,0.03);
}
.dash-avatar {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B0F19;
    font-size: 1.3rem;
    margin: 0 auto 12px;
}
.dash-sidebar-header h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px;
}
.dash-sidebar-header p {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
}

.dash-sidebar-nav {
    padding: 12px;
}
.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.2s;
    margin-bottom: 2px;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
}
.dash-nav-item i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}
.dash-nav-item:hover,
.dash-nav-item.active {
    background: rgba(212,175,55,0.08);
    color: #fff;
}
.dash-nav-item.active i,
.dash-nav-item:hover i {
    color: var(--gold-500);
}
.dash-nav-item.active {
    border-left: 3px solid var(--gold-500);
}

.dash-sidebar-footer {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.dash-nav-logout { color: rgba(239,68,68,0.7); }
.dash-nav-logout:hover { background: rgba(239,68,68,0.08); color: #ef4444; }

/* ---- Main Content ---- */
.dash-main { min-width: 0; }

/* Welcome Card */
.dash-welcome {
    background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, rgba(20,25,40,0.8) 100%);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.dash-welcome h2 {
    color: #fff;
    font-size: 1.3rem;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 4px;
}
.gold-text { color: var(--gold-500); }
.dash-welcome p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.dash-welcome-icon {
    width: 56px;
    height: 56px;
    background: rgba(212,175,55,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Stats Grid */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.dash-stat-card {
    background: rgba(20, 25, 40, 0.7);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s;
}
.dash-stat-card:hover {
    border-color: rgba(212,175,55,0.15);
    transform: translateY(-2px);
}
.dash-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.dash-stat-num {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    display: block;
}
.dash-stat-label {
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Cards */
.dash-card {
    background: rgba(20, 25, 40, 0.7);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}
.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-card-header h3 {
    color: #fff;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dash-card-header h3 i { color: var(--gold-500); font-size: 0.9rem; }

.dash-link {
    color: var(--gold-500);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.dash-link:hover { color: var(--gold-400); }

/* Tables */
.dash-table-wrap {
    overflow-x: auto;
}
.dash-table {
    width: 100%;
    border-collapse: collapse;
}
.dash-table th {
    padding: 12px 20px;
    text-align: left;
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.02);
}
.dash-table td {
    padding: 14px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.dash-table tbody tr:hover {
    background: rgba(212,175,55,0.03);
}

.dash-booking-num {
    color: var(--gold-500);
    font-weight: 600;
    text-decoration: none;
    font-family: 'Cairo', monospace;
}
.dash-booking-num:hover { text-decoration: underline; }

.dash-vehicle-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dash-vehicle-cell img {
    width: 48px;
    height: 32px;
    object-fit: cover;
    border-radius: 6px;
}

.dash-amount {
    color: var(--gold-500) !important;
    font-weight: 700;
}
.dash-mono {
    font-family: 'Cairo', monospace;
    font-size: 0.82rem !important;
}

/* Status Badges */
.dash-badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dash-badge-lg { padding: 6px 16px; font-size: 0.8rem; }
.dash-badge-success { background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.dash-badge-warning { background: rgba(245,158,11,0.1); color: #f59e0b; border: 1px solid rgba(245,158,11,0.2); }
.dash-badge-info { background: rgba(59,130,246,0.1); color: #3b82f6; border: 1px solid rgba(59,130,246,0.2); }
.dash-badge-danger { background: rgba(239,68,68,0.1); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }
.dash-badge-gray { background: rgba(156,163,175,0.1); color: #9ca3af; border: 1px solid rgba(156,163,175,0.2); }

/* Empty States */
.dash-empty {
    text-align: center;
    padding: 48px 24px;
}
.dash-empty i {
    font-size: 2.5rem;
    color: rgba(212,175,55,0.3);
    margin-bottom: 16px;
}
.dash-empty h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.dash-empty p {
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.dash-empty a { color: var(--gold-500); }

/* Page Header */
.dash-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.dash-page-header h2 {
    color: #fff;
    font-size: 1.3rem;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}
.dash-page-header h2 i { color: var(--gold-500); }
.dash-page-header p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ============================================
   FORMS — Dashboard
   ============================================ */
.dash-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 24px;
}
.dash-field label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.dash-field input,
.dash-field select,
.dash-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font-size: 0.92rem;
    transition: all 0.3s;
    outline: none;
    font-family: inherit;
}
.dash-field input:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.dash-field input::placeholder {
    color: rgba(255,255,255,0.2);
}

.dash-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

/* Buttons */
.dash-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    font-family: inherit;
}
.dash-btn-primary {
    background: var(--gold-gradient);
    color: #3d2e00 !important;
    font-weight: 800;
}
.dash-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.3);
}
.dash-btn-primary i {
    color: #3d2e00 !important;
}
.dash-btn-outline {
    background: transparent;
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold-500);
}
.dash-btn-outline:hover {
    background: rgba(212,175,55,0.08);
}
.dash-btn-sm {
    padding: 6px 14px;
    font-size: 0.82rem;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.12);
    color: var(--gold-500);
    border-radius: 8px;
}
.dash-btn-sm:hover {
    background: rgba(212,175,55,0.15);
}

/* Alerts */
.dash-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dash-alert-success {
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.15);
    color: #86efac;
}
.dash-alert-danger {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.15);
    color: #fca5a5;
    flex-direction: column;
    align-items: flex-start;
}

/* ============================================
   BOOKING CARDS
   ============================================ */
.dash-bookings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.dash-booking-card {
    background: rgba(20, 25, 40, 0.7);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}
.dash-booking-card:hover {
    border-color: rgba(212,175,55,0.15);
}
.dash-booking-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dash-booking-vehicle {
    display: flex;
    align-items: center;
    gap: 14px;
}
.dash-booking-vehicle img {
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}
.dash-booking-no-img {
    width: 72px;
    height: 48px;
    background: rgba(212,175,55,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212,175,55,0.3);
    font-size: 1.2rem;
}
.dash-booking-vehicle h4 {
    color: #fff;
    font-size: 1rem;
}
.dash-booking-num-label {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    font-family: monospace;
}
.dash-booking-details {
    display: flex;
    gap: 24px;
    padding: 16px 24px;
    flex-wrap: wrap;
}
.dash-booking-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}
.dash-booking-detail i {
    color: var(--gold-500);
    font-size: 0.8rem;
}
.dash-booking-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
    background: rgba(0,0,0,0.1);
}
.dash-booking-price {
    color: var(--gold-500);
    font-size: 1.2rem;
    font-weight: 800;
}

/* ============================================
   BOOKING DETAIL — Timeline
   ============================================ */
.dash-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    gap: 0;
}
.dash-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.dash-timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    transition: all 0.3s;
}
.dash-timeline-step.completed .dash-timeline-dot {
    background: rgba(212,175,55,0.15);
    border-color: var(--gold-500);
    color: var(--gold-500);
}
.dash-timeline-step span {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-weight: 600;
}
.dash-timeline-step.completed span {
    color: var(--gold-500);
}
.dash-timeline-line {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    margin: 0 4px;
    margin-bottom: 28px;
}
.dash-timeline-line.completed {
    background: var(--gold-500);
}

/* Detail Grid */
.dash-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.dash-detail-vehicle {
    padding: 24px;
    text-align: center;
}
.dash-detail-vehicle img {
    max-width: 240px;
    margin-bottom: 14px;
    border-radius: 10px;
}
.dash-detail-vehicle h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.dash-detail-vehicle p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Info List */
.dash-info-list {
    padding: 8px 0;
}
.dash-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.dash-info-row:last-child { border: none; }
.dash-info-label {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dash-info-label i { color: var(--gold-500); font-size: 0.8rem; width: 16px; text-align: center; }
.dash-info-value {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
}

/* Pricing */
.dash-pricing { padding: 8px 0; }
.dash-price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 24px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.dash-price-discount span:last-child { color: #22c55e; }
.dash-price-total {
    border-top: 1px solid rgba(212,175,55,0.15);
    margin-top: 4px;
    padding-top: 14px;
}
.dash-price-total span {
    color: var(--gold-500) !important;
    font-weight: 800;
    font-size: 1.1rem;
}

/* Pagination */
.dash-pagination {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}
.dash-pagination nav {
    display: flex;
    gap: 4px;
}
.dash-pagination .pagination {
    display: flex;
    gap: 4px;
    list-style: none;
    padding: 0;
}
.dash-pagination .page-link {
    padding: 8px 14px;
    background: rgba(20,25,40,0.7);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.dash-pagination .page-link:hover {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.2);
    color: var(--gold-500);
}
.dash-pagination .page-item.active .page-link {
    background: var(--gold-gradient);
    color: #0B0F19;
    border-color: transparent;
    font-weight: 700;
}

/* ============================================
   DASHBOARD MOBILE
   ============================================ */
@media (max-width: 768px) {
    .dash-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dash-sidebar {
        position: static;
    }
    .dash-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .dash-detail-grid {
        grid-template-columns: 1fr;
    }
    .dash-form-grid {
        grid-template-columns: 1fr;
    }
    .dash-timeline {
        flex-wrap: wrap;
        gap: 8px;
    }
    .dash-timeline-line {
        width: 30px;
    }
    .auth-row {
        grid-template-columns: 1fr;
    }
    .auth-card {
        padding: 32px 24px;
    }
    .auth-modal {
        margin: 16px;
        max-height: calc(100vh - 32px);
    }
    .auth-modal-panel {
        padding: 24px 20px 28px;
    }
    .dash-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .dash-booking-details {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .dash-stats-grid {
        grid-template-columns: 1fr;
    }
    .dash-welcome {
        padding: 20px;
    }
    .dash-welcome h2 {
        font-size: 1.1rem;
    }
}
