/* =============================================
   UmaCabs - Complete Design System
   www.umacabs.com
   ============================================= */

/* ─── Google Fonts Fallback ─────────────────── */
:root {
  --primary:    #0D2137;
  --primary-2:  #1a3a5c;
  --accent:     #FDB813;
  --accent-dark:#e6a800;
  --success:    #22c55e;
  --danger:     #ef4444;
  --info:       #3b82f6;
  --text:       #1e293b;
  --text-muted: #64748b;
  --border:     #e2e8f0;
  --bg-light:   #f8fafc;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.07);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { color: var(--text); background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }

/* ─── NAVBAR ─────────────────────────────────── */
.uc-navbar {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  padding: .75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.uc-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.1rem; flex-shrink: 0;
}
.uc-logo-icon.sm { width:32px;height:32px;font-size:.85rem;border-radius:7px; }
.brand-name { font-weight: 800; font-size: 1.25rem; color: #fff; line-height: 1; letter-spacing: -.3px; }
.brand-sub  { font-size: .65rem; color: rgba(255,255,255,.55); display: block; }
.uc-navbar .nav-link { color: rgba(255,255,255,.8) !important; font-weight: 600; padding: .45rem .85rem !important; border-radius: 8px; transition: all .2s; font-size: .9rem; }
.uc-navbar .nav-link:hover, .uc-navbar .nav-link.active { color: var(--accent) !important; background: rgba(255,255,255,.08); }
.uc-btn-yellow { background: var(--accent); color: var(--primary); border: none; border-radius: 10px; font-weight: 700; padding: .5rem 1.2rem; cursor: pointer; transition: all .2s; display: inline-block; }
.uc-btn-yellow:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(253,184,19,.4); }
.uc-btn-yellow.disabled, .uc-btn-yellow[disabled] { opacity: .5; cursor: not-allowed; pointer-events: none; }
.navbar-toggler { border: 1px solid rgba(255,255,255,.3) !important; padding: .3rem .6rem; }

/* ─── HERO ───────────────────────────────────── */
.hero-section { min-height: 100vh; background: linear-gradient(135deg, #071626 0%, var(--primary) 50%, #1e4976 100%); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 70% 50%, rgba(253,184,19,.08) 0%, transparent 60%); pointer-events:none; }
.hero-section::after { content:''; position:absolute; bottom:0; left:0; right:0; height:150px; background: linear-gradient(transparent, #fff); }
.hero-badge-pill { display: inline-flex; align-items: center; background: rgba(253,184,19,.15); border: 1px solid rgba(253,184,19,.3); color: var(--accent); font-size: .8rem; font-weight: 600; padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }
.hero-title { font-size: clamp(1.8rem, 4.5vw, 3.2rem); font-weight: 900; color: #fff; line-height: 1.15; }
.text-highlight { color: var(--accent); position: relative; }
.hero-subtitle { color: rgba(255,255,255,.7); font-size: 1.05rem; margin: 1rem 0; }
.hero-stats { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.stat-pill { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: .85rem 1.2rem; text-align: center; min-width: 90px; }
.stat-pill .num { font-size: 1.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-pill .lbl { font-size: .7rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

/* Booking Card (hero) */
.hero-booking-card { background: #fff; border-radius: 24px; box-shadow: var(--shadow-lg); overflow: hidden; max-width: 480px; margin-left: auto; }
.booking-card-header { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: var(--accent); font-weight: 700; font-size: 1rem; padding: 1rem 1.5rem; }
.booking-form-body { padding: 1.5rem; }
.trip-type-tabs { display: flex; gap: .5rem; padding: 1rem 1.5rem 0; background: #fff; }
.trip-tab { flex: 1; padding: .6rem; border: 2px solid var(--border); background: transparent; border-radius: 10px; font-weight: 600; font-size: .85rem; cursor: pointer; transition: all .2s; color: var(--text-muted); }
.trip-tab.active { border-color: var(--accent); background: var(--accent); color: var(--primary); }
.trip-tab:hover:not(.active) { border-color: var(--primary); }

/* ─── LOCATION INPUT ─────────────────────────── */
.location-input-wrap { position: relative; }
.location-dot { width: 12px; height: 12px; border-radius: 50%; position: absolute; left: 10px; top: 50%; transform: translateY(-50%); z-index: 5; }
.location-dot.pickup { background: #22c55e; border: 2px solid #fff; box-shadow: 0 0 0 2px #22c55e; }
.location-dot.drop   { background: #ef4444; border: 2px solid #fff; box-shadow: 0 0 0 2px #ef4444; }
.location-suggestions { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); z-index: 1000; max-height: 220px; overflow-y: auto; display: none; }
.location-suggestions.show { display: block; }
.suggestion-item { padding: .65rem 1rem; cursor: pointer; font-size: .85rem; border-bottom: 1px solid #f1f5f9; transition: background .15s; }
.suggestion-item:hover { background: #f8fafc; }
.swap-btn { width: 34px; height: 34px; padding: 0; }

/* Distance result */
.distance-result-box { background: linear-gradient(135deg, #eff6ff, #dbeafe); border: 1px solid #bfdbfe; border-radius: 12px; padding: 1rem 1.25rem; margin: 1rem 0; }
.distance-icon { width: 42px; height: 42px; background: var(--info); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; }
.distance-label { font-size: .75rem; color: var(--text-muted); }
.distance-value { font-size: 1.3rem; font-weight: 800; color: var(--primary); }

/* ─── TRIP TYPE SELECTOR ─────────────────────── */
.trip-type-selector { display: flex; gap: 1rem; }
.trip-type-option { flex: 1; cursor: pointer; position: relative; }
.trip-type-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.trip-type-content { border: 2px solid var(--border); border-radius: 14px; padding: 1.2rem; text-align: center; transition: all .2s; }
.trip-type-option:has(input:checked) .trip-type-content,
.trip-type-option.active .trip-type-content { border-color: var(--accent); background: #fffbeb; }
.trip-type-content i { font-size: 1.6rem; color: var(--text-muted); display: block; margin-bottom: .4rem; }
.trip-type-option:has(input:checked) .trip-type-content i { color: var(--accent); }

/* ─── CAB SELECTION ──────────────────────────── */
.cab-selection-list { max-height: 360px; overflow-y: auto; }
.cab-select-item { display: flex; align-items: center; gap: .75rem; padding: .85rem 1rem; border-bottom: 1px solid #f1f5f9; cursor: pointer; transition: background .15s; position: relative; }
.cab-select-item:hover { background: #f8fafc; }
.cab-select-item.selected { background: #fffbeb; border-left: 3px solid var(--accent); }
.cab-select-item input { position: absolute; opacity: 0; }
.cab-select-icon { width: 44px; height: 44px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.1rem; flex-shrink: 0; }
.cab-select-name { font-weight: 700; font-size: .9rem; }
.cab-select-meta { font-size: .75rem; color: var(--text-muted); }
.cab-select-price { margin-left: auto; text-align: right; flex-shrink: 0; }
.est-fare { font-weight: 800; font-size: 1rem; }

/* Fare breakdown */
.fare-breakdown-panel { border-top: 2px solid #f1f5f9; padding: 1rem; }
.fare-breakdown-title { font-weight: 700; font-size: .85rem; color: var(--primary); margin-bottom: .75rem; }
.fare-row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .85rem; border-bottom: 1px solid #f8fafc; }
.fare-note { font-size: .75rem; color: var(--info); background: #eff6ff; border-radius: 6px; padding: .4rem .7rem; margin-top: .5rem; }
.fare-total-row { display: flex; justify-content: space-between; padding: .75rem 0 0; font-weight: 700; font-size: 1rem; border-top: 2px solid var(--border); margin-top: .5rem; }
.total-amount { color: var(--accent); font-size: 1.2rem; font-weight: 800; }

/* ─── BOOKING PROGRESS ───────────────────────── */
.booking-progress { display: flex; align-items: center; justify-content: center; }
.prog-step { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.prog-num { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; color: var(--text-muted); background: #fff; }
.prog-step.active .prog-num { border-color: var(--accent); background: var(--accent); color: var(--primary); }
.prog-step.done .prog-num { border-color: var(--success); background: var(--success); color: #fff; }
.prog-label { font-size: .72rem; font-weight: 600; color: var(--text-muted); }
.prog-step.active .prog-label { color: var(--primary); }
.prog-line { flex: 1; height: 2px; background: var(--border); min-width: 60px; margin: 0 .5rem; margin-bottom: 1.5rem; }
.prog-line.done { background: var(--success); }

/* ─── SUMMARY / DETAILS ──────────────────────── */
.booking-ref-badge { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--primary); font-weight: 800; font-size: 1.1rem; padding: .6rem 1.2rem; border-radius: 10px; display: inline-block; }
.summary-grid { display: flex; flex-direction: column; gap: .5rem; }
.summary-row { display: flex; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid #f1f5f9; font-size: .9rem; }
.sum-label { font-weight: 600; color: var(--text-muted); min-width: 80px; flex-shrink: 0; }
.sum-value { color: var(--text); flex: 1; }
.fare-detail-row { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid #f8fafc; font-size: .9rem; }
.fare-detail-row.total { font-weight: 800; border-top: 2px solid var(--border); border-bottom: none; padding-top: .85rem; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.detail-item { padding: .5rem .75rem; background: #f8fafc; border-radius: 8px; }
.detail-item.full { grid-column: 1/-1; }
.detail-item label { font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); display: block; margin-bottom: .2rem; }

/* ─── PAYMENT CARD ───────────────────────────── */
.payment-card { background: #fff; }
.payment-amount-display { background: linear-gradient(135deg, var(--primary), var(--primary-2)); border-radius: 14px; padding: 1.5rem; color: #fff; margin: .5rem 0 1rem; }
.amount-label { font-size: .8rem; opacity: .7; }
.amount-value { font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.security-badges { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.sec-badge { background: #f0fdf4; color: #15803d; font-size: .72rem; font-weight: 600; padding: .3rem .7rem; border-radius: 50px; border: 1px solid #bbf7d0; }
.pay-method-badge { background: #f8fafc; border: 1px solid var(--border); border-radius: 6px; padding: .25rem .6rem; font-size: .72rem; font-weight: 600; }

/* ─── CARDS (generic) ────────────────────────── */
.uc-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid #f1f5f9; overflow: hidden; margin-bottom: 1rem; }
.uc-card-header { background: #f8fafc; border-bottom: 1px solid var(--border); padding: .9rem 1.25rem; font-weight: 700; font-size: .9rem; color: var(--primary); display: flex; align-items: center; justify-content: space-between; }
.uc-card-body { padding: 1.25rem; }

/* ─── INPUT GROUP ────────────────────────────── */
.uc-input-group { position: relative; }
.uc-input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); z-index: 5; }
.uc-input { padding-left: 38px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); width: 100%; height: 46px; font-size: .9rem; transition: border-color .2s; outline: none; }
.uc-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(253,184,19,.15); }

/* ─── FLEET CARDS ────────────────────────────── */
.section-dark { background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.section-light { background: var(--bg-light); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--primary); }
.cab-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); border: 2px solid transparent; transition: all .3s; }
.section-dark .cab-card { border-color: rgba(255,255,255,.08); }
.cab-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.cab-card-img { height: 160px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cab-img-icon { font-size: 4rem; color: var(--accent); }
.cab-type-badge { position: absolute; top: 10px; left: 10px; background: var(--accent); color: var(--primary); font-size: .65rem; font-weight: 700; padding: .25rem .7rem; border-radius: 50px; text-transform: uppercase; }
.cab-ac-badge { position: absolute; top: 10px; right: 10px; background: rgba(59,130,246,.9); color: #fff; font-size: .65rem; font-weight: 600; padding: .25rem .6rem; border-radius: 50px; }
.cab-card-body { padding: 1.25rem; }
.cab-name { font-weight: 700; font-size: .95rem; margin-bottom: .1rem; }
.cab-model { display: block; font-size: .78rem; }
.cab-features { display: flex; gap: 1rem; font-size: .78rem; color: var(--text-muted); margin: .6rem 0; }
.cab-price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .75rem; }
.price-box { background: #f8fafc; border-radius: 8px; padding: .6rem; border: 1px solid var(--border); }
.price-label { font-size: .65rem; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.price-amount { font-weight: 800; font-size: .9rem; color: var(--primary); }
.price-sub { font-size: .65rem; color: var(--text-muted); }

/* ─── HOW IT WORKS ───────────────────────────── */
.step-card { padding: 1.5rem 1rem; }
.step-num { width: 50px; height: 50px; background: var(--accent); color: var(--primary); border-radius: 50%; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto .75rem; box-shadow: 0 4px 15px rgba(253,184,19,.4); }
.step-icon { font-size: 2rem; color: var(--primary); }

/* ─── FEATURES ───────────────────────────────── */
.feature-card { padding: 1.25rem; border-radius: 14px; background: #fff; box-shadow: var(--shadow); border: 1px solid #f1f5f9; transition: all .2s; }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.feature-icon-wrap { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }

/* ─── CONTACT ────────────────────────────────── */
.contact-btn { display: flex; align-items: center; gap: .75rem; background: #fff; border: 2px solid var(--border); border-radius: 12px; padding: 1rem 1.5rem; color: var(--text); font-weight: 600; text-decoration: none; transition: all .2s; }
.contact-btn:hover { border-color: var(--accent); background: #fffbeb; color: var(--primary); }
.contact-btn.whatsapp:hover { border-color: #22c55e; background: #f0fdf4; }

/* ─── FOOTER ─────────────────────────────────── */
.uc-footer { background: linear-gradient(135deg, #071626, var(--primary)); color: #fff; }
.footer-heading { font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: .75rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { padding: .3rem 0; font-size: .87rem; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-links.contact-list li { color: #94a3b8; font-size: .87rem; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #94a3b8; text-decoration: none; transition: all .2s; font-size: .85rem; }
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }

/* ─── AUTH ───────────────────────────────────── */
.auth-card { background: #fff; border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-lg); max-width: 480px; margin: auto; }
.auth-card-logo { text-align: center; margin-bottom: 1.5rem; }
.auth-icon-wrap { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.auth-icon-wrap i { font-size: 1.8rem; color: var(--accent); }
.auth-icon-wrap.driver-icon { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.auth-icon-wrap.driver-icon i { color: var(--primary); }
.auth-role-tabs { display: flex; gap: .4rem; margin-bottom: 1.5rem; }
.role-tab { flex: 1; text-align: center; padding: .55rem; border: 2px solid var(--border); border-radius: 10px; cursor: pointer; font-size: .8rem; font-weight: 600; text-decoration: none; color: var(--text-muted); transition: all .2s; }
.role-tab.active { border-color: var(--accent); background: var(--accent); color: var(--primary); }
.admin-login-card { background: rgba(255,255,255,.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 2.5rem; color: #fff; }
.admin-login-icon { width: 64px; height: 64px; background: var(--accent); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.admin-login-icon i { font-size: 1.8rem; color: var(--primary); }
.admin-login-card .form-label { color: rgba(255,255,255,.8); }

/* ─── BOOKINGS LIST ──────────────────────────── */
.filter-tabs { display: flex; gap: .4rem; flex-wrap: wrap; }
.filter-tab { padding: .4rem .9rem; border-radius: 50px; font-size: .8rem; font-weight: 600; text-decoration: none; color: var(--text-muted); background: #f1f5f9; border: 1.5px solid transparent; transition: all .2s; }
.filter-tab.active { background: var(--accent); color: var(--primary); border-color: var(--accent-dark); }
.filter-tab:hover:not(.active) { background: #e2e8f0; }
.booking-list-card { background: #fff; border-radius: 14px; box-shadow: var(--shadow); border: 1px solid #f1f5f9; padding: 1.25rem; display: flex; gap: 1rem; transition: box-shadow .2s; }
.booking-list-card:hover { box-shadow: var(--shadow-lg); }
.blc-left { flex: 1; }
.blc-ref { font-weight: 800; font-size: 1rem; color: var(--accent); margin-bottom: .25rem; }
.blc-cab { font-size: .85rem; font-weight: 600; margin-bottom: .4rem; }
.blc-route { font-size: .8rem; color: var(--text-muted); margin-bottom: .4rem; }
.blc-meta { font-size: .78rem; color: var(--text-muted); display: flex; gap: .75rem; flex-wrap: wrap; }
.blc-right { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; flex-shrink: 0; }
.blc-fare { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.empty-state { padding: 3rem 1rem; }

/* ─── DRIVER PORTAL ──────────────────────────── */
.driver-body { background: #f0f4f8; }
.driver-navbar { background: linear-gradient(135deg, var(--primary), var(--primary-2)); padding: .5rem 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.2); }
.driver-profile-card { background: #fff; border-radius: 18px; padding: 1.25rem 1.5rem; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.dpc-left { display: flex; align-items: center; gap: 1rem; flex: 1; }
.dpc-avatar { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.driver-stat-card { background: #fff; border-radius: 14px; padding: 1rem; text-align: center; box-shadow: var(--shadow); }
.driver-stat-card.warning .dsv { color: #d97706; }
.driver-stat-card.success .dsv { color: #16a34a; }
.driver-stat-card.info .dsv { color: var(--info); }
.dsv { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.dsl { font-size: .72rem; color: var(--text-muted); font-weight: 600; }
.driver-section { background: #fff; border-radius: 16px; padding: 1.25rem; box-shadow: var(--shadow); margin-bottom: 1rem; }
.driver-section-title { font-weight: 700; font-size: 1rem; margin-bottom: 1rem; }
.trip-card-driver { border: 1.5px solid var(--border); border-radius: 12px; padding: 1rem; margin-bottom: .75rem; transition: all .2s; }
.trip-card-driver:hover { border-color: var(--accent); }
.trip-card-driver.active-trip { border-color: #22c55e; background: #f0fdf4; }
.tcd-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.tcd-ref { font-weight: 700; color: var(--accent); margin-right: .5rem; }
.tcd-time { font-size: .8rem; font-weight: 600; color: var(--primary); }
.tcd-pickup, .tcd-drop { font-size: .83rem; padding: .3rem 0; }
.tcd-meta { display: flex; gap: .75rem; font-size: .78rem; color: var(--text-muted); flex-wrap: wrap; margin-top: .5rem; }
.tcd-call { color: var(--success); text-decoration: none; font-weight: 600; }
.tcd-customer-info { background: #f8f9fa; border: 1px solid var(--border); border-radius: 8px; padding: .6rem .85rem; margin: .5rem 0; }
.tcd-customer-row { display: flex; align-items: center; gap: .5rem; padding: .25rem 0; font-size: .82rem; border-bottom: 1px dashed #e2e8f0; }
.tcd-customer-row:last-child { border-bottom: none; }
.tcd-customer-label { min-width: 70px; color: var(--text-muted); font-size: .78rem; }
.tcd-customer-value { color: var(--text); }
.tcd-call-link { color: var(--success); text-decoration: none; font-weight: 700; font-size: .88rem; }
.tcd-call-link:hover { text-decoration: underline; color: #16a34a; }
.tcd-email-link { color: var(--primary); text-decoration: none; font-size: .82rem; word-break: break-all; }
.tcd-email-link:hover { text-decoration: underline; }
.toll-tax-notice { background: #fff8e1; border: 1.5px solid #f59e0b; border-radius: 8px; padding: .65rem 1rem; font-size: .82rem; color: #92400e; margin: .75rem 0; line-height: 1.5; }
.toll-tax-notice i { color: #d97706; }
.tcd-actions { margin-top: .75rem; }
.driver-avatar-lg { width: 72px; height: 72px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); }

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
.animate-fade-up   { animation: fadeUp   .7s ease both; }
.animate-fade-left { animation: fadeLeft .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
.hero-text-col { z-index: 1; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .hero-section { min-height: auto; padding: 5rem 0 3rem; }
  .hero-section::after { display: none; }
  .hero-stats { gap: .5rem; }
  .stat-pill { min-width: 70px; padding: .6rem .8rem; }
  .hero-booking-card { max-width: 100%; }
  .trip-type-selector { flex-direction: column; }
  .detail-grid { grid-template-columns: 1fr; }
  .booking-list-card { flex-direction: column; }
  .blc-right { align-items: flex-start; }
  .driver-profile-card { flex-direction: column; text-align: center; }
  .dpc-left { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .auth-card { padding: 1.5rem; }
  .booking-form-body { padding: 1rem; }
}

/* ─── MISC ───────────────────────────────────── */
.btn-xs { padding: .25rem .5rem; font-size: .75rem; }
.cursor-pointer { cursor: pointer; }
.font-monospace { font-family: 'Courier New', monospace; }
hr.uc-divider { border-color: rgba(0,0,0,.06); }

/* ─── Google Maps Autocomplete Dropdown ───────────────── */
.pac-container {
  z-index: 9999 !important;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  border: 1px solid #e2e8f0;
  font-family: 'Montserrat', sans-serif;
  margin-top: 4px;
}
.pac-item {
  padding: 8px 14px;
  font-size: .85rem;
  cursor: pointer;
  border-top: 1px solid #f1f5f9;
}
.pac-item:first-child { border-top: none; }
.pac-item:hover { background: #f8fafc; }
.pac-item-query { font-weight: 600; color: #0D2137; }
.pac-icon { display: none; }
