/* Opulence Client App — Rebuilt from scratch */

/* ── DESIGN TOKENS ─────────────────────────────── */
:root {
  --bg:          #09111F;
  --surface:     #111C2E;
  --surface-2:   #182438;
  --surface-3:   #1E2D45;
  --gold:        #C8A84B;
  --gold-dark:   #8B6914;
  --gold-light:  #E0C97A;
  --gold-glow:   rgba(200,168,75,0.15);
  --gold-border: rgba(200,168,75,0.2);
  --white:       #FFFFFF;
  --gray:        #8A93A8;
  --gray-light:  #C4C9D6;
  --border:      rgba(255,255,255,0.07);
  --danger:      #C0392B;
  --danger-bg:   rgba(192,57,43,0.15);
  --success:     #1A8C4E;
  --success-bg:  rgba(26,140,78,0.15);
  --warn:        #E67E22;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   6px;
  --tab-h:       44px;
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; overflow: hidden; background: var(--bg); font-family: Arial, Helvetica, sans-serif; color: var(--white); }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 14px; color: var(--white); outline: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 2px; }

/* ── PAGE CURTAIN ─────────────────────────────── */
#page-curtain {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99999;
  transition: opacity 0.3s ease;
}
#page-curtain.lifted { opacity: 0; pointer-events: none; }

/* ── APP SHELL ─────────────────────────────────── */
body {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
}

#app {
  width: 100%;
  max-width: 430px;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 431px) {
  body { background: #09111F; }
  #app { height: 100vh; }
}

/* ── SCREENS ───────────────────────────────────── */
#screens-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.screen {
  display: none;
  flex-direction: column;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg);
  z-index: 0;
}
.screen.active { display: flex; z-index: 10; animation: slideInFromRight 0.28s ease-out; }
.screen.prev { pointer-events: none; z-index: 9; animation: slideOutToLeft 0.28s ease-out forwards; }

/* ── SCREEN HEADER ───────────────────────────── */
.screen-header {
  display: flex; align-items: center; gap: 12px;
  padding: 56px 20px 16px;
  background: var(--bg);
  flex-shrink: 0; position: relative; z-index: 10;
}
.screen-header::after {
  content: ''; position: absolute; bottom: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.25), transparent);
}
.back-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface); border: 1px solid rgba(200,168,75,0.2);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: background 0.15s;
}
.back-btn:active { background: var(--surface-2); }
.screen-header-title {
  position: absolute; left: 0; right: 0;
  text-align: center; pointer-events: none; padding: 0 62px;
  font-family: Georgia, serif; font-size: 1.05rem; font-weight: bold; color: var(--white);
}

.screen-tab-header { display: flex; align-items: center; justify-content: center; padding: 56px 20px 12px; flex-shrink: 0; position: relative; }
.screen-tab-header::after {
  content: ''; position: absolute; bottom: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.25), transparent);
}
.screen-tab-title { font-family: Georgia, serif; font-size: 1.2rem; font-weight: bold; color: var(--white); }

/* ── BOOKING PROGRESS BAR ───────────────────────── */
.progress-bar { height: 2px; background: var(--border); flex-shrink: 0; overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: 0 2px 2px 0;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% 100%;
  animation: progressShimmer 2.5s ease-in-out infinite;
  transition: width 0.4s ease;
}
@keyframes progressShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── BOTTOM TAB NAV ────────────────────────────── */
.bottom-nav {
  display: flex; height: var(--tab-h);
  background: #000; border-top: 1px solid rgba(255,255,255,0.06);
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
  overflow: hidden;
}
.bottom-nav.hidden { display: none; }
.nav-tab {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 3px 2px; color: rgba(255,255,255,0.35); transition: color 0.15s;
}
.nav-tab.active { color: var(--gold); }
.nav-tab-icon {
  width: 36px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-tab.active .nav-tab-icon {
  background: rgba(200,168,75,0.15);
}
.nav-tab-icon svg { width: 18px; height: 18px; stroke-width: 1.5; }
.nav-tab-label { font-size: 8px; font-weight: 600; letter-spacing: 0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

/* ── SPLASH ─────────────────────────────────────── */
#screen-splash {
  background: #0d1b35;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.splash-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 15%, rgba(30,60,110,0.6) 0%, transparent 70%), #0d1b35;
  z-index: 0;
}
.splash-corner {
  position: absolute; width: 44px; height: 44px; z-index: 2;
}
.splash-corner-tl {
  top: 28px; left: 28px;
  border-top: 1.5px solid rgba(200,168,75,0.7);
  border-left: 1.5px solid rgba(200,168,75,0.7);
}
.splash-corner-br {
  bottom: 28px; right: 28px;
  border-bottom: 1.5px solid rgba(200,168,75,0.7);
  border-right: 1.5px solid rgba(200,168,75,0.7);
}
.splash-rays { display: none; }
.splash-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  width: 100%; height: 100%;
  padding: 28px 28px 40px;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
}
.splash-logo-wrap { margin-bottom: 24px; flex-shrink: 0; display: flex; justify-content: center; width: 100%; }
.splash-logo { width: 220px; height: 220px; object-fit: contain; display: block; margin: 0 auto; }
.splash-brand {
  font-family: Georgia, serif; font-size: 1.25rem; font-weight: 400;
  color: #fff; letter-spacing: 0.35em;
  margin-bottom: 0; white-space: nowrap;
}
.splash-divider {
  width: 75%; height: 1px;
  background: rgba(200,168,75,0.55);
  margin: 10px auto 8px;
}
.splash-divider-dot { display: none; }
.splash-title {
  font-family: Georgia, serif; font-size: 1.5rem; font-weight: 400;
  font-style: italic; color: var(--gold);
  letter-spacing: 0.04em; margin-bottom: 0; text-align: center;
}
.splash-tagline {
  font-family: Arial, sans-serif;
  font-size: 0.72rem; font-weight: 400; font-style: normal;
  color: rgba(200,168,75,0.6); line-height: 1.3; letter-spacing: 0.14em;
  text-transform: uppercase; white-space: normal;
  margin-top: 10px; margin-bottom: 0;
  text-align: center; width: 100%;
}
.splash-sep {
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.12);
  margin-top: 32px; margin-bottom: 16px;
}
.splash-actions { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.splash-sub { font-size: 13px; color: rgba(255,255,255,0.6); }
.splash-sub span { color: var(--gold); font-weight: 600; }

/* ── AUTH SCREEN ────────────────────────────────── */
.auth-hero {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 72px 32px 40px;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(200,168,75,0.1) 0%, transparent 70%), var(--bg);
  border-bottom: 1px solid var(--border); text-align: center;
}
.auth-hero-overlay { display: none; }
.auth-hero-logo img { width: 64px; height: 64px; object-fit: contain; filter: drop-shadow(0 4px 16px rgba(200,168,75,0.35)); margin-bottom: 20px; }
.auth-hero-logo p { font-family: Georgia, serif; font-size: 1rem; color: var(--gray); font-weight: 400; font-style: italic; letter-spacing: 0.06em; margin-bottom: 6px; }
.auth-body { flex: 1; display: flex; flex-direction: column; padding: 32px 24px 24px; gap: 14px; overflow-y: auto; }
.auth-title { font-family: Georgia, serif; font-size: 1.3rem; color: var(--white); text-align: center; margin-bottom: 4px; }
.auth-subtitle { font-size: 13px; color: var(--gray); text-align: center; margin-bottom: 8px; }
.auth-btn-apple {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; background: var(--white); color: #000;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: bold; transition: opacity 0.15s;
}
.auth-btn-apple:active { opacity: 0.85; }
.auth-btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; background: var(--surface); color: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-weight: bold;
}
.auth-btn-google:active { background: var(--surface-2); }
.auth-btn-email {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; background: transparent; color: var(--gold);
  border: 1px solid var(--gold-border); border-radius: var(--radius-sm); font-size: 14px; font-weight: bold;
}
.auth-btn-email:active { background: var(--gold-glow); }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--gray); font-size: 12px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-footer { text-align: center; font-size: 12px; color: var(--gray); margin-top: auto; padding-top: 8px; }
.auth-footer span { color: var(--gold); cursor: pointer; }

/* ── FORMS ──────────────────────────────────────── */
.form-body { flex: 1; padding: 8px 24px 32px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 10px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-label-hint { font-weight: normal; text-transform: none; letter-spacing: 0; font-size: 11px; margin-left: 4px; }
.form-input {
  width: 100%; padding: 13px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--white); font-size: 14px;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: rgba(200,168,75,0.45); box-shadow: 0 0 0 3px rgba(200,168,75,0.07); outline: none; }
.form-input::placeholder { color: rgba(255,255,255,0.2); }
textarea.form-input { resize: none; line-height: 1.5; }
select.form-input {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A84B' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-input-icon { position: relative; }
.form-input-icon .form-input { padding-right: 44px; }
.input-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--gray); cursor: pointer; padding: 4px; }
.form-field-error { display: block; font-size: 11px; color: #e05555; margin-top: 5px; min-height: 14px; }
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }
.form-forgot { float: right; font-size: 11px; color: var(--gold); cursor: pointer; margin-top: -14px; margin-bottom: 14px; }
.section-title-sm { font-family: Georgia, serif; font-size: 1rem; font-weight: bold; color: var(--white); margin-bottom: 4px; text-align: center; }
.section-sub { font-size: 13px; color: var(--gray); margin-bottom: 20px; text-align: center; }
.terms { font-size: 11px; color: var(--gray); text-align: center; line-height: 1.6; margin-top: 8px; }
.terms a { color: var(--gold); }

/* ── BUTTONS ────────────────────────────────────── */
.btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 15px; background: var(--gold); color: #09111F;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: bold;
  letter-spacing: 0.1em; text-transform: uppercase; transition: opacity 0.15s;
}
.btn-primary:active { opacity: 0.85; }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-outline {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; background: transparent; color: var(--gold);
  border: 1px solid var(--gold-border); border-radius: var(--radius-sm);
  font-size: 13px; font-weight: bold; letter-spacing: 0.08em; text-transform: uppercase;
}
.btn-outline:active { background: var(--gold-glow); }

/* ── HOME SCREEN ────────────────────────────────── */
.home-wrap { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: 88px; }
.svc-page-wrap { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: 16px; }
.home-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }

/* ── HOME GREETING ──────────────────────────────── */
.home-greeting-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 58px 20px 16px; flex-shrink: 0;
  background: radial-gradient(ellipse 220% 100% at 50% 0%, rgba(200,168,75,0.13) 0%, rgba(200,168,75,0.03) 50%, transparent 75%);
}
.home-greeting-line { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.38); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.home-greeting-name { font-family: Georgia, serif; font-size: 1.65rem; font-weight: bold; color: var(--white); }
.home-greeting-right { display: flex; align-items: center; gap: 10px; }
.home-loyalty-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.3);
  border-radius: 20px; padding: 7px 14px;
  font-size: 11px; font-weight: 700; color: var(--gold);
  cursor: pointer;
}
.home-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #D4B86A 0%, #C8A84B 50%, #9e7b29 100%);
  border: 2px solid rgba(200,168,75,0.45);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.12), 0 4px 12px rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: bold; color: #0D0D0D;
  cursor: pointer; flex-shrink: 0; letter-spacing: 0.05em;
}
.svc-hero {
  padding: 64px 24px 32px;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(200,168,75,0.1) 0%, transparent 65%);
  text-align: center; border-bottom: 1px solid var(--border);
}
.svc-hero-logo { width: 48px; height: 48px; object-fit: contain; margin-bottom: 16px; filter: drop-shadow(0 4px 16px rgba(200,168,75,0.3)); }
.svc-hero-title { font-family: Georgia, serif; font-size: 1.5rem; font-weight: bold; color: var(--white); margin-bottom: 4px; }
.svc-hero-sub { font-size: 12px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.svc-hero-tagline { font-size: 13px; color: var(--gray); }
.home-section-label { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 20px 20px 12px; }
.svc-card-list { display: flex; flex-direction: column; gap: 12px; padding: 0 16px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; gap: 16px; align-items: flex-start;
}
.svc-card:active { background: var(--surface-2); }
.svc-card-icon {
  width: 44px; height: 44px; background: var(--gold-glow); border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 20px;
}
.svc-card-body { flex: 1; }
.svc-card-title { font-family: Georgia, serif; font-size: 1rem; font-weight: bold; color: var(--white); margin-bottom: 4px; }
.svc-card-desc { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 10px; }
.svc-card-list-items { font-size: 12px; color: var(--gray-light); line-height: 1.8; margin-bottom: 12px; padding-left: 12px; }
.svc-card-list-items li::marker { color: var(--gold); }
.svc-card-cta { font-size: 11px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 4px; }
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 16px; }
.quick-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; display: flex; flex-direction: column; gap: 8px; cursor: pointer;
}
.quick-card:active { background: var(--surface-2); }
.quick-card-icon { width: 36px; height: 36px; background: var(--gold-glow); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; }
.quick-card-title { font-size: 13px; font-weight: bold; color: var(--white); }
.quick-card-sub { font-size: 11px; color: var(--gray); }
.quick-card-arrow { color: var(--gray); font-size: 12px; align-self: flex-end; margin-top: auto; }

/* ── BOOK A SERVICE SCREEN ──────────────────────── */
.bsvc-header { padding: 56px 24px 0; flex-shrink: 0; }
.bsvc-title { font-family: Georgia, serif; font-size: 2rem; font-weight: bold; color: var(--white); margin-bottom: 16px; }
.bsvc-divider { height: 1px; background: var(--border); margin-bottom: 0; }
.bsvc-grid-wrap { flex: 1; overflow-y: auto; padding: 32px 20px 88px; }
.bsvc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; }
.bsvc-card {
  background: var(--surface-2); border: 1px solid var(--gold-border);
  border-radius: 20px; padding: 20px 18px 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer; transition: background 0.15s, border-color 0.15s;
  min-height: 190px;
}
.bsvc-card:active { background: var(--surface-3); border-color: rgba(200,168,75,0.5); }
.bsvc-card-icon { color: var(--gold); margin-bottom: 4px; }
.bsvc-card-bottom { margin-top: auto; }
.bsvc-card-title {
  font-family: Georgia, serif; font-size: 1.35rem; font-weight: bold;
  color: var(--white); line-height: 1.2; margin-bottom: 7px;
}
.bsvc-card-sub { font-size: 12px; color: var(--gray); line-height: 1.5; }
.bsvc-card-arrow { color: var(--gray); font-size: 15px; }
/* ── ACTIVE BOOKING BANNER ──────────────────────── */
.home-verify-banner {
  margin: 0 16px 14px;
  background: rgba(200,168,75,0.07);
  border: 1px solid rgba(200,168,75,0.3);
  border-left: 3px solid #C8A84B;
  border-radius: 14px;
  padding: 13px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.home-verify-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.home-verify-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(200,168,75,0.15); border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: #C8A84B;
}
.home-verify-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.home-verify-sub   { font-size: 11px; color: var(--gray); }
.home-verify-btn {
  flex-shrink: 0;
  background: #C8A84B; color: #09111F;
  border: none; border-radius: 8px;
  padding: 8px 14px; font-size: 12px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.03em;
}
.home-verify-btn:active { opacity: 0.8; }

.home-active-booking {
  margin: 0 16px 16px;
  background: linear-gradient(135deg, var(--surface-2) 0%, rgba(200,168,75,0.08) 100%);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 12px;
}
.home-active-booking:active { opacity: 0.85; }
.home-active-booking-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.home-active-pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(200,168,75,0.5);
  animation: activePulse 1.8s infinite;
}
@keyframes activePulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,168,75,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(200,168,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,168,75,0); }
}
.home-active-label { font-size: 10px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.home-active-type  { font-size: 13px; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.home-active-pickup { font-size: 11px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
.home-active-booking-right { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; color: var(--gold); gap: 1px; }
.home-active-eta { font-size: 16px; font-weight: bold; color: var(--gold); line-height: 1; }
.home-active-eta-label { font-size: 9px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }


.svc-why-section { padding: 40px 16px 8px; }
.svc-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.svc-why-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; }
.svc-why-icon { font-size: 24px; margin-bottom: 8px; }
.svc-why-item p:first-of-type { font-size: 12px; font-weight: bold; color: var(--white); margin-bottom: 4px; }
.svc-why-item p:last-of-type { font-size: 11px; color: var(--gray); line-height: 1.4; }
.svc-footer-note { font-size: 11px; color: var(--gray); text-align: center; padding: 16px 24px 32px; }

/* ── SERVICE TIER SELECTION ─────────────────────── */
.tier-scroll { flex: 1; overflow-y: auto; padding: 24px 20px 100px; -webkit-overflow-scrolling: touch; }
.tier-intro { margin-bottom: 28px; text-align: left; }
.tier-intro-title { font-family: Georgia, serif; font-size: 1.9rem; font-weight: bold; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.tier-intro-sub { font-size: 13px; color: var(--gray); }
.tier-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 22px; margin-bottom: 14px;
  cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s;
}
.tier-card.selected { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(200,168,75,0.15); }
.tier-card:active { opacity: 0.9; }
.tier-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.tier-card-info { flex: 1; min-width: 0; }
.tier-card-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.tier-name { font-family: Georgia, serif; font-size: 1.9rem; font-weight: bold; color: var(--white); line-height: 1.1; margin-bottom: 0; }
.tier-subtitle { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tier-vehicles { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 6px; }
.tier-price-tag { font-size: 11px; color: var(--gray); text-align: right; line-height: 1.4; }
.tier-price-tag strong { font-size: 14px; color: var(--white); font-weight: 700; display: block; }
.tier-radio {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border);
  flex-shrink: 0; position: relative; transition: border-color 0.2s;
}
.tier-card.selected .tier-radio { border-color: var(--gold); }
.tier-card.selected .tier-radio::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 11px; height: 11px; background: var(--gold); border-radius: 50%;
}
.tier-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.tier-car-photo { margin: 0 -22px 16px; height: 200px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.tier-car-photo-img {
  width: 100%; height: 100%; display: block;
  object-fit: contain; object-position: center center;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.45));
}
.tier-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.tier-pill {
  font-size: 11px; color: var(--gray);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 5px 12px; background: transparent;
  transition: color 0.2s, border-color 0.2s;
}
.tier-card.selected .tier-pill { color: rgba(200,168,75,0.8); border-color: rgba(200,168,75,0.25); }

/* ── VEHICLES ───────────────────────────────────── */
.vehicle-scroll { flex: 1; overflow-y: auto; padding: 8px 16px 100px; -webkit-overflow-scrolling: touch; }
.vehicle-tier-header { font-size: 10px; font-weight: bold; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 20px 4px 10px; }
.vehicle-tier-header:first-child { padding-top: 8px; }
.vehicle-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; display: flex; gap: 16px; align-items: center; margin-bottom: 10px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.vehicle-card.selected { border-color: var(--gold); background: var(--surface-2); }
.vehicle-card--icon { border-color: rgba(200,168,75,0.3); }
.vehicle-img { width: 90px; height: 56px; object-fit: contain; flex-shrink: 0; }
.vehicle-info { flex: 1; }
.vehicle-class { font-size: 10px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.vehicle-name { font-size: 14px; font-weight: bold; color: var(--white); margin-bottom: 4px; }
.vehicle-pax { font-size: 11px; color: var(--gray); margin-bottom: 6px; }
.vehicle-price { font-size: 13px; font-weight: bold; color: var(--white); }
.price-from, .price-unit { font-size: 10px; color: var(--gray); font-weight: normal; }
.vehicle-radio {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s; position: relative;
}
.vehicle-card.selected .vehicle-radio { border-color: var(--gold); }
.vehicle-card.selected .vehicle-radio::after { content: ''; position: absolute; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }

/* ── JOURNEY ────────────────────────────────────── */
.journey-body { flex: 1; overflow-y: auto; padding: 24px 20px 40px; -webkit-overflow-scrolling: touch; }
.jt-screen-title {
  font-family: Georgia, serif; font-size: 2rem; font-weight: bold;
  color: var(--white); line-height: 1.2; margin-bottom: 28px;
}
.journey-type-grid { display: flex; flex-direction: column; }
.journey-type-tile {
  display: flex; flex-direction: row; align-items: center; gap: 16px;
  padding: 18px 0; cursor: pointer;
  border: none; border-bottom: 1px solid var(--border);
  background: none; border-radius: 0;
  transition: opacity 0.15s;
}
.journey-type-tile:first-child { border-top: 1px solid var(--border); }
.journey-type-tile:active { opacity: 0.7; }
.journey-type-tile.selected { background: none; }
.jt-icon {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); transition: all 0.2s;
}
.journey-type-tile.selected .jt-icon {
  background: rgba(200,168,75,0.1); border-color: rgba(200,168,75,0.35);
  color: var(--gold);
}
.jt-text { flex: 1; min-width: 0; }
.jt-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.jt-sub { font-size: 12px; color: var(--gray); line-height: 1.4; }
.jt-check {
  color: var(--border); flex-shrink: 0; transition: color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.journey-type-tile.selected .jt-check { color: var(--gold); }
.jt-info-card { display: none !important; }
.jt-info-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.jt-info-icon { font-size: 16px; }
.jt-info-title { font-size: 13px; font-weight: bold; color: var(--gold); }
.jt-info-desc { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 8px; }
.jt-info-features { font-size: 12px; color: var(--gray-light); line-height: 1.8; }
.jt-info-text { font-size: 12px; color: var(--gray); }
.journey-map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gold-border); margin: 0 16px 16px; flex-shrink: 0; }
#journey-map { height: 200px; width: 100%; background: var(--surface); }
.leaflet-control-zoom a { background: rgba(9,17,31,0.9) !important; color: var(--gold) !important; border-color: var(--gold-border) !important; }
.leaflet-tile-pane { filter: brightness(0.85) contrast(1.1); }
.map-badge {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(9,17,31,0.92); border: 1px solid var(--gold-border);
  color: var(--gold); font-size: 12px; font-weight: bold; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; white-space: nowrap; backdrop-filter: blur(4px);
}

/* ── BOOKING DETAILS ────────────────────────────── */
/* ── BOOKING DETAILS INTRO ──────────────────────── */
.booking-intro { padding: 20px 0 22px; text-align: left; }
.booking-intro-title { font-family: Georgia, serif; font-size: 2rem; font-weight: bold; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.booking-intro-sub { font-size: 13px; color: var(--gray); }
.details-section-label { font-size: 10px; font-weight: bold; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; margin-top: 20px; }
.booking-footer { padding: 16px 20px 32px; flex-shrink: 0; background: linear-gradient(to top, var(--bg) 60%, transparent); position: relative; z-index: 2; }

/* ── LOCATION INPUTS ────────────────────────────── */
.location-input-wrap {
  padding: 0; margin: 0 0 4px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.location-input-wrap:focus-within {
  border-color: rgba(200,168,75,0.5);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.07);
}
.location-row {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 18px; margin: 0;
  background: none; border: none; border-radius: 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.location-row:focus-within { background: rgba(200,168,75,0.02); }
#dropoff-section .location-row { border-bottom: none; }
.location-suggestions {
  display: none; margin: 8px 0 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.location-suggestion-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.location-suggestion-item:last-child { border-bottom: none; }
.location-suggestion-item:active { background: var(--surface-2); }
.location-suggestion-icon { color: var(--gray); flex-shrink: 0; }
.location-suggestion-main { font-size: 14px; color: var(--white); margin-bottom: 2px; }
.location-suggestion-sub { font-size: 11px; color: var(--gray); }
.location-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(200,168,75,0.18); }
.location-row.dropoff .location-dot { background: rgba(255,255,255,0.3); box-shadow: none; }
.location-row input { flex: 1; background: none; border: none; font-size: 15px; color: var(--white); }
.location-row input::placeholder { color: rgba(255,255,255,0.22); }
.swap-btn { width: 34px; height: 34px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.add-stop-btn { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gold); padding: 13px 18px; width: 100%; border-top: 1px solid var(--border); }
.bj-add-stop-btn { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gold); padding: 10px 0 2px; width: 100%; border-top: 1px solid rgba(255,255,255,0.07); margin-top: 6px; background: none; cursor: pointer; }
.bj-stop-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.07); }
.bj-stop-row .bj-field-input { flex: 1; margin: 0; }
.bj-stop-dot { width: 8px; height: 8px; border-radius: 50%; background: transparent; border: 2px solid var(--gold); flex-shrink: 0; }
.bj-stop-remove { flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: var(--bl-text-muted); background: transparent; border: none; cursor: pointer; border-radius: 50%; }
.bj-stop-remove:active { color: var(--gold); }

/* ── DATE / TIME CARDS ──────────────────────────── */
.date-time-row { display: flex; gap: 10px; padding: 0; margin-bottom: 8px; }
.dt-card { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px 16px; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; }
.dt-card:focus-within { border-color: rgba(200,168,75,0.5); box-shadow: 0 0 0 3px rgba(200,168,75,0.07); }
.dt-card-label { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.dt-card-value { font-size: 14px; color: var(--white); font-weight: 600; }
.guest-counter { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; width: fit-content; }
.guest-btn { width: 28px; height: 28px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 50%; font-size: 18px; color: var(--white); display: flex; align-items: center; justify-content: center; }
.guest-val { font-size: 16px; font-weight: bold; color: var(--white); min-width: 20px; text-align: center; }
.c2c-roundtrip-toggle { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; }
.c2c-rt-left { flex: 1; }
.c2c-rt-title { font-size: 14px; font-weight: bold; color: var(--white); }
.c2c-rt-sub { font-size: 12px; color: var(--gray); }
.c2c-route-info { padding: 0 16px 16px; }
.c2c-price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.c2c-price-label { font-size: 12px; color: var(--gray); }
.c2c-price-value { font-size: 18px; font-weight: bold; color: var(--gold); }
.c2c-price-right { text-align: right; }
.c2c-disclaimer { font-size: 11px; color: var(--gray); text-align: center; padding: 8px 0; }
.c2c-distance { font-size: 11px; color: var(--gold); }
.c2c-return-label { font-size: 11px; color: var(--gray); }
.trip-stages { display: flex; align-items: center; padding: 0 16px 12px; }
.trip-stage { display: flex; align-items: center; }
.tstage-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.tstage-lbl { font-size: 11px; color: var(--gray); margin: 0 4px; }
.tstage-line { flex: 1; height: 1px; background: var(--border); min-width: 20px; }

/* ── BOOKING SUMMARY ───────────────────────────── */

/* Vehicle hero */
.sum-hero-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 22px 20px 18px;
  display: flex; align-items: flex-end; justify-content: space-between;
  min-height: 130px;
}
.sum-hero-info { z-index: 1; }
.sum-hero-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 6px;
}
.sum-hero-name {
  font-family: Georgia, serif; font-size: 1.9rem;
  font-weight: bold; color: var(--white); line-height: 1.1; margin-bottom: 4px;
}
.sum-hero-class { font-size: 12px; color: var(--gray); }
.sum-hero-car {
  position: absolute; right: -10px; bottom: -8px;
  width: 210px; height: auto; pointer-events: none;
  filter: drop-shadow(-4px 8px 18px rgba(0,0,0,0.6));
}

/* Route card */
.sum-route-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 18px 20px;
}
.sum-route-row { display: flex; align-items: flex-start; gap: 14px; }
.sum-route-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px;
}
.sum-route-dot.pickup  { background: var(--gold); }
.sum-route-dot.dropoff { background: var(--white); }
.sum-route-dot.stop    { background: transparent; border: 2px solid var(--gold); }
.sum-route-text { flex: 1; }
.sum-route-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 3px; }
.sum-route-value { font-size: 14px; color: var(--white); font-weight: 500; line-height: 1.35; }
.sum-route-connector {
  width: 1px; height: 22px; background: var(--border);
  margin: 6px 0 6px 4px;
  border-left: 1px dashed rgba(200,168,75,0.3);
}

/* Details grid */
.sum-details-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.sum-detail-cell {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px;
}
.sum-detail-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 5px;
}
.sum-detail-value { font-size: 14px; color: var(--white); font-weight: 600; }

/* Total row */
.sum-total-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 20px;
}
.sum-total-label { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.sum-total-sub   { font-size: 11px; color: var(--gray); }
.sum-total-amount { font-family: Georgia, serif; font-size: 26px; font-weight: bold; color: var(--gold); }

/* Actions */
.sum-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; padding-bottom: 12px; }
.btn-ghost-sm {
  background: none; border: none; color: var(--gray);
  font-size: 13px; font-weight: 500; cursor: pointer; padding: 4px 8px;
}

/* Legacy hidden */
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--border); }
.summary-row:last-of-type { border-bottom: none; }
.summary-label { font-size: 12px; color: var(--gray); }
.summary-value { font-size: 13px; color: var(--white); font-weight: 600; text-align: right; max-width: 60%; }

/* ── LEAFLET MAP OVERRIDES ────────────────────────── */
.leaflet-container { background: #111 !important; }
.leaflet-control-zoom a { background: var(--surface) !important; color: var(--white) !important; border-color: var(--border) !important; }
.leaflet-control-zoom a:hover { background: var(--surface-2) !important; }

/* ── PAYMENT ─────────────────────────────────────── */
.payment-amount { text-align: center; padding: 24px; border-bottom: 1px solid var(--border); }
.payment-amount-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.payment-amount-value { font-family: Georgia, serif; font-size: 2.4rem; font-weight: bold; color: var(--gold); }
.payment-methods-label { font-size: 10px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); padding: 20px 24px 10px; }
.payment-methods { display: flex; flex-direction: column; gap: 8px; padding: 0 16px; }
.payment-method { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; cursor: pointer; transition: border-color 0.15s; }
.payment-method:active { border-color: var(--gold-border); }
.payment-method.selected { border-color: var(--gold); }
.payment-method-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: bold; color: var(--white); flex-shrink: 0; }
.pm-mtn   { background: #FFC107; color: #000; }
.pm-voda  { background: #E60000; }
.pm-airtel{ background: #E60000; }
.pm-apple { background: #1C1C1E; }
.pm-google{ background: #FFFFFF; color: #333; }
.pm-paypal{ background: #003087; }
.pm-card  { background: var(--surface-2); color: var(--gold); }
.payment-method-info { flex: 1; }
.payment-method-name { font-size: 14px; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.payment-method-sub { font-size: 12px; color: var(--gray); }
.payment-method-arrow { color: var(--gray); font-size: 18px; }
.momo-icon { font-size: 40px; text-align: center; margin: 16px 0 8px; }
.momo-network-row { display: flex; gap: 8px; margin-bottom: 16px; }
.momo-net-btn {
  flex: 1; padding: 11px 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.4); text-align: center; cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.momo-net-btn.active {
  border-color: rgba(200,168,75,0.45);
  background: rgba(200,168,75,0.08);
  color: var(--white);
}
.momo-note { font-size: 11px; color: var(--gray); margin-top: 8px; line-height: 1.5; }
.card-icons { display: flex; gap: 8px; margin-bottom: 16px; }
.card-brand { height: 28px; padding: 0 10px; background: var(--surface-2); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: bold; color: var(--gray); }
.save-card { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.save-card-label { font-size: 13px; color: var(--gray); }
#screen-add-payment .screen-header {
  background: radial-gradient(ellipse 180% 120% at 50% 0%, rgba(200,168,75,0.12) 0%, transparent 65%);
}
.add-pmethod-tabs {
  display: flex; margin: 0 0 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; padding: 4px; gap: 4px;
}
.add-pmethod-tab {
  flex: 1; padding: 10px 8px;
  background: transparent; border: none; border-radius: 10px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4);
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.add-pmethod-tab.active {
  background: linear-gradient(135deg, #C8A84B, #E0C06A);
  color: #09111F;
  box-shadow: 0 2px 10px rgba(200,168,75,0.3);
}
.toggle { width: 48px; height: 28px; background: var(--surface-2); border-radius: 14px; position: relative; cursor: pointer; transition: background 0.2s; border: 1px solid var(--border); flex-shrink: 0; }
.toggle.on { background: var(--gold); border-color: var(--gold); }
.toggle-slider { position: absolute; width: 22px; height: 22px; background: var(--white); border-radius: 50%; top: 2px; left: 2px; transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.toggle.on .toggle-slider { transform: translateX(20px); }

/* iOS-style toggle switch for settings */
.toggle-switch {
  position: relative; display: inline-block;
  width: 48px; height: 28px; flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.toggle-switch .toggle-slider {
  position: absolute; inset: 0; border-radius: 14px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
  width: auto; height: auto; box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch .toggle-slider::after {
  content: ''; position: absolute;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; top: 2px; left: 2px;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.35);
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--gold); border-color: var(--gold);
}
.toggle-switch input:checked + .toggle-slider::after {
  transform: translateX(20px);
}
/* ── PAYMENTS & CARDS SCREEN ────────────────────── */
#screen-payment-methods .screen-header {
  background: radial-gradient(ellipse 180% 120% at 50% 0%, rgba(200,168,75,0.12) 0%, transparent 65%);
}
.pmethods-body { flex: 1; overflow-y: auto; padding: 12px 16px 40px; }
.pmethods-note {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 11px; color: rgba(255,255,255,0.35); text-align: center;
  margin: 4px 0 8px; letter-spacing: 0.02em;
}
.pmethods-note::before {
  content: '🔒'; font-size: 11px; opacity: 0.6;
}

/* Payment method cards */
#pmethod-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.pmethod-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 14px 16px;
  cursor: pointer; transition: border-color 0.15s, background 0.15s;
}
.pmethod-card:not(.pmethod-card--tap) {
  border-color: rgba(200,168,75,0.3);
  background: linear-gradient(135deg, rgba(200,168,75,0.08) 0%, rgba(200,168,75,0.02) 50%, var(--surface) 100%);
  box-shadow: inset 3px 0 0 rgba(200,168,75,0.55);
}
.pmethod-card--tap:active { border-color: rgba(200,168,75,0.3); background: rgba(200,168,75,0.03); }
.pmethod-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.2);
  color: var(--gold);
}
.pmethod-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.pmethod-name { font-size: 14px; font-weight: 600; color: var(--white); display: block; }
.pmethod-detail { font-size: 12px; color: rgba(255,255,255,0.38); display: block; }
.pmethod-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; flex-shrink: 0;
  background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.3); color: var(--gold);
}
.pmethod-set-default { font-size: 11px; color: rgba(255,255,255,0.25); flex-shrink: 0; white-space: nowrap; }
.pmethod-delete-btn {
  background: none; border: none; color: rgba(255,255,255,0.18);
  cursor: pointer; padding: 6px; flex-shrink: 0; transition: color 0.15s;
}
.pmethod-delete-btn:active { color: rgba(239,68,68,0.7); }

/* Empty state */
#pmethod-list p { padding: 32px 0 16px; font-size: 13px; color: rgba(255,255,255,0.35); text-align: center; }

/* Add button */
.pmethods-add-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px; margin-top: 4px;
  background: linear-gradient(135deg, rgba(200,168,75,0.12) 0%, rgba(200,168,75,0.05) 100%);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 16px; font-size: 13px; font-weight: 700;
  color: var(--gold); width: 100%; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  letter-spacing: 0.03em;
}
.pmethods-add-btn:active { background: rgba(200,168,75,0.18); border-color: rgba(200,168,75,0.5); }

/* ── CONFIRMATION ───────────────────────────────── */
.confirm-icon { font-size: 56px; text-align: center; margin: 32px 0 16px; }
.confirm-title { font-family: Georgia, serif; font-size: 1.4rem; font-weight: bold; color: var(--white); text-align: center; margin-bottom: 8px; }
.confirm-sub { font-size: 13px; color: var(--gray); text-align: center; margin-bottom: 24px; padding: 0 24px; }
.confirm-ref { margin: 0 16px 20px; background: var(--surface); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 16px 20px; text-align: center; }
.confirm-ref-label { font-size: 10px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.confirm-ref-value { font-family: Georgia, serif; font-size: 1.4rem; font-weight: bold; color: var(--white); letter-spacing: 0.08em; }
.confirm-details { margin: 0 16px 24px; }
.confirm-detail-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.confirm-detail-label { font-size: 12px; color: var(--gray); }
.confirm-detail-value { font-size: 12px; color: var(--white); font-weight: bold; text-align: right; }
.confirm-actions { padding: 0 16px 32px; display: flex; flex-direction: column; gap: 10px; }

/* ── CONFIRMATION DRIVER CARD ───────────────────── */
.confirm-driver-card {
  margin: 0 16px 20px;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.confirm-driver-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-glow);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.confirm-driver-info { flex: 1; min-width: 0; }
.confirm-driver-name { font-size: 14px; font-weight: bold; color: var(--white); margin-bottom: 3px; }
.confirm-driver-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }
.confirm-driver-stars { display: flex; gap: 2px; color: var(--gold); }
.confirm-driver-rating { font-size: 12px; color: var(--gold); font-weight: bold; }
.confirm-driver-vehicle { font-size: 11px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.confirm-eta-badge {
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  text-align: center;
  flex-shrink: 0;
}
.confirm-eta-label { font-size: 9px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.confirm-eta-value { font-size: 16px; font-weight: bold; color: var(--white); white-space: nowrap; }

/* ── TRACKING ───────────────────────────────────── */
.track-map-container {
  height: 55vh; min-height: 200px; flex-shrink: 0;
  position: relative;
  background:
    repeating-linear-gradient(0deg,   transparent, transparent 39px, rgba(200,168,75,0.06) 40px),
    repeating-linear-gradient(90deg,  transparent, transparent 39px, rgba(200,168,75,0.06) 40px),
    linear-gradient(160deg, #0c1a2e 0%, #09111f 60%, #0d1e33 100%);
}
#track-map { width: 100%; height: 100%; }
.track-back-btn {
  position: absolute; top: 56px; left: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(9,17,31,0.9); border: 1px solid var(--gold-border);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  z-index: 800; cursor: pointer; backdrop-filter: blur(4px);
}
.track-back-btn:active { background: rgba(9,17,31,1); }
.track-status-pill {
  position: absolute; top: 56px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg);
  border-radius: 20px; padding: 6px 18px;
  display: flex; align-items: center; gap: 8px;
  z-index: 800; white-space: nowrap;
  font-weight: bold; font-size: 12px; letter-spacing: 0.06em;
}
.track-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bg); animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }
.track-cancel-btn { position: absolute; top: 56px; right: 16px; padding: 8px 14px; background: rgba(192,57,43,0.85); border-radius: 20px; font-size: 11px; font-weight: bold; color: var(--white); z-index: 800; backdrop-filter: blur(4px); }
.track-sheet {
  background: var(--surface);
  border-radius: 20px 20px 0 0;
  padding: 8px 20px 32px;
  flex-shrink: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}
.track-sheet-handle { width: 36px; height: 4px; background: var(--border); border-radius: 2px; margin: 8px auto 16px; }
.track-driver-row { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.track-driver-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-glow); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.track-driver-name { font-size: 15px; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.track-driver-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray); }
.track-driver-stars { color: var(--gold); display: flex; gap: 2px; }
.track-meta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.track-meta-item { text-align: center; background: var(--surface-2); border-radius: var(--radius-sm); padding: 10px 8px; }
.track-meta-sep { display: none; }
.track-meta-label { font-size: 10px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.track-meta-value { font-size: 14px; font-weight: bold; color: var(--white); }
.track-eta-badge {
  background: var(--gold); border-radius: var(--radius-sm);
  padding: 10px 16px; text-align: center;
  margin-left: auto; flex-shrink: 0;
}
.track-eta-label { font-size: 9px; font-weight: bold; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bg); margin-bottom: 2px; }
.track-eta-value { font-size: 18px; font-weight: bold; color: var(--bg); }
.track-location-row { display: flex; flex-direction: row; gap: 10px; align-items: flex-start; margin-bottom: 16px; }
.track-loc-pin { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 3px; }
.track-loc-label { font-size: 10px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 1px; }
.track-loc-addr { font-size: 13px; color: var(--white); }
.track-divider { height: 1px; background: var(--border); margin: 4px 0; }
.track-share-section { margin-bottom: 14px; }
.track-share-label { font-size: 11px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 10px; }
.track-share-btns { display: flex; gap: 8px; }
.share-btn { flex: 1; padding: 10px 8px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 11px; font-weight: bold; color: var(--gray-light); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.share-btn span:first-child { font-size: 18px; }
.track-actions { display: flex; gap: 10px; margin-bottom: 16px; }
.track-action-btns { display: flex; gap: 10px; }
.track-action-btn {
  flex: 1; padding: 13px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 12px; font-weight: bold;
  color: var(--white); display: flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 48px;
}
.track-action-btn:active { background: var(--surface-3, #1e2d45); border-color: var(--gold-border); }
.track-action-icon { color: var(--gold); display: flex; align-items: center; }

/* ── TRIP ARRIVED POPUP ─────────────────────────── */
#trip-arrived-popup { display: none; position: absolute; inset: 0; z-index: 2000; flex-direction: column; justify-content: flex-end; }
#trip-arrived-popup.show { display: flex; }
.trip-arrived-backdrop { position: absolute; inset: 0; background: rgba(9,17,31,0.7); backdrop-filter: blur(4px); }
.trip-arrived-sheet { position: relative; background: var(--surface); border-radius: 24px 24px 0 0; padding: 24px 24px 40px; border-top: 1px solid var(--gold-border); }
.trip-arrived-indicator { width: 64px; height: 64px; margin: 0 auto 16px; position: relative; }
.trip-arrived-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--gold-glow); animation: trip-pulse 1.5s infinite; }
@keyframes trip-pulse { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(1.5);opacity:0} }
.trip-arrived-core { position: absolute; inset: 6px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--bg); }
.trip-arrived-title { font-family: Georgia, serif; font-size: 1.4rem; font-weight: bold; color: var(--white); text-align: center; margin-bottom: 6px; }
.trip-arrived-sub { font-size: 13px; color: var(--gray); text-align: center; margin-bottom: 20px; }
.trip-arrived-meta { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.trip-arrived-chip { background: var(--surface-2); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; font-size: 12px; color: var(--gray-light); }
.trip-arrived-share-row { margin-top: 16px; }
.trip-arrived-share-lbl { font-size: 11px; color: var(--gray); text-align: center; margin-bottom: 10px; }
.trip-arrived-share-btns { display: flex; gap: 8px; justify-content: center; }
.arrived-share-btn { padding: 8px 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 11px; font-weight: bold; color: var(--gray-light); display: flex; align-items: center; gap: 6px; }

/* ── MY RIDES ───────────────────────────────────── */
.my-rides-list { flex: 1; overflow-y: auto; padding: 8px 16px 100px; display: flex; flex-direction: column; gap: 10px; -webkit-overflow-scrolling: touch; }
.my-rides-body { flex: 1; overflow-y: auto; padding: 8px 20px 100px; -webkit-overflow-scrolling: touch; }
.rides-section-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; margin-top: 8px;
  display: flex; align-items: center; gap: 12px;
}
.rides-section-label::after {
  content: ''; flex: 1; height: 1px; background: rgba(200,168,75,0.15);
}
#rides-upcoming { display: flex; flex-direction: column; gap: 12px; }
#rides-previous { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.rides-section-empty {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(200,168,75,0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200,168,75,0.05) 0%, transparent 60%);
  color: rgba(255,255,255,0.38); font-size: 13px; gap: 8px;
  position: relative; overflow: hidden;
}
.rides-section-empty::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(200,168,75,0.25) 50%, transparent 90%);
}
.rides-section-empty svg {
  color: rgba(200,168,75,0.5); margin-bottom: 6px;
  filter: drop-shadow(0 0 8px rgba(200,168,75,0.2));
}
.rides-empty { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 60px 32px; gap: 12px; }
.rides-empty-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 4px; }
.rides-empty-title { font-family: Georgia, serif; font-size: 1.1rem; font-weight: bold; color: var(--white); }
.rides-empty-sub { font-size: 13px; color: var(--gray); line-height: 1.55; max-width: 240px; }
.rides-empty-cta { margin-top: 8px; }

/* Ride cards */
.ride-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 16px 18px; cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.ride-card:active { border-color: rgba(200,168,75,0.4); box-shadow: 0 1px 6px rgba(0,0,0,0.15); }
#rides-upcoming .ride-card {
  border-color: rgba(200,168,75,0.25);
  background: linear-gradient(135deg, rgba(200,168,75,0.08) 0%, rgba(200,168,75,0.02) 45%, var(--surface) 100%);
  box-shadow: inset 3px 0 0 rgba(200,168,75,0.55), 0 2px 16px rgba(0,0,0,0.25);
}
.ride-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(200,168,75,0.18) 0%, rgba(200,168,75,0.07) 100%);
  border: 1px solid rgba(200,168,75,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.ride-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.ride-ref { font-size: 11px; font-weight: 700; color: rgba(200,168,75,0.7); letter-spacing: 0.08em; margin: 2px 0 6px; }
.ride-status { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 11px; border-radius: 20px; white-space: nowrap; }
.ride-status.completed  { background: rgba(46,204,113,0.12); color: #2ecc71; border: 1px solid rgba(46,204,113,0.25); }
.ride-status.confirmed  { background: rgba(200,168,75,0.12); color: var(--gold); border: 1px solid rgba(200,168,75,0.25); }
.ride-status.en_route   { background: rgba(200,168,75,0.12); color: var(--gold); border: 1px solid rgba(200,168,75,0.25); }
.ride-status.in_progress { background: rgba(200,168,75,0.12); color: var(--gold); border: 1px solid rgba(200,168,75,0.25); }
.ride-status.pending    { background: rgba(230,126,34,0.15); color: var(--warn); border: 1px solid rgba(230,126,34,0.25); }
.ride-status.cancelled  { background: rgba(231,76,60,0.1); color: #e74c3c; border: 1px solid rgba(231,76,60,0.2); }
.ride-card-route { font-size: 13px; color: rgba(255,255,255,0.45); margin: 6px 0 4px; display: flex; align-items: center; gap: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ride-card-meta { font-size: 12px; color: var(--gray); display: flex; gap: 12px; }
.ride-card-left { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.ride-card-svc  { font-size: 14px; font-weight: 700; color: var(--white); }
.ride-card-when { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.ride-driver-row { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 5px; margin: 4px 0; }
.ride-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.ride-card-amount { font-size: 15px; font-weight: 700; color: var(--gold); }
.ride-card-btns { display: flex; gap: 8px; }
.ride-btn {
  font-size: 12px; font-weight: 700; padding: 8px 18px; border-radius: 10px;
  cursor: pointer; border: none;
  background: linear-gradient(135deg, #C8A84B, #E0C06A);
  color: #09111F; letter-spacing: 0.03em; transition: opacity 0.15s;
  box-shadow: 0 3px 12px rgba(200,168,75,0.28);
}
.ride-btn:active { opacity: 0.8; }
.ride-btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); box-shadow: none; }
.ride-btn--rate  { background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.35); color: var(--gold); box-shadow: none; }
.rides-loading { display: flex; gap: 8px; padding: 20px; justify-content: center; }
.rides-loading span { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: 0.4; animation: rides-pulse 1.2s ease-in-out infinite; }
.rides-loading span:nth-child(2) { animation-delay: 0.2s; }
.rides-loading span:nth-child(3) { animation-delay: 0.4s; }
@keyframes rides-pulse { 0%,100%{opacity:0.2;transform:scale(0.85)} 50%{opacity:1;transform:scale(1)} }

/* ── Skeleton loaders ───────────────────────── */
@keyframes skel-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skel {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 800px 100%;
  animation: skel-shimmer 1.5s infinite linear;
  border-radius: 6px;
}
.skel-ride { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--surface); border-radius: var(--radius); margin-bottom: 10px; border: 1px solid var(--border); }
.skel-ride-badge { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; }
.skel-ride-body { flex: 1; display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.skel-ride-line-lg { height: 13px; width: 75%; border-radius: 4px; }
.skel-ride-line-sm { height: 11px; width: 90%; border-radius: 4px; }

/* ── PROFILE ────────────────────────────────────── */
.prof-banner {
  padding: 20px 16px 18px;
  background: linear-gradient(180deg, rgba(200,168,75,0.1) 0%, transparent 100%);
  display: flex; flex-direction: row; align-items: center; gap: 14px;
  position: relative; flex-shrink: 0;
}
.prof-banner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(200,168,75,0.18) 35%, rgba(200,168,75,0.18) 65%, transparent 95%);
}
.prof-banner-info { flex: 1; min-width: 0; }
.prof-edit-btn {
  align-self: flex-start;
  background: rgba(200,168,75,0.06); border: 1px solid rgba(200,168,75,0.28);
  border-radius: 16px; padding: 5px 14px;
  font-size: 11px; font-weight: 600; color: var(--gold); cursor: pointer;
  letter-spacing: 0.04em; flex-shrink: 0;
}
.prof-edit-btn:active { background: rgba(200,168,75,0.12); }
.prof-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #E0C97A 0%, #C8A84B 45%, #8B6914 100%);
  box-shadow: 0 0 0 2px rgba(200,168,75,0.4), 0 0 20px rgba(200,168,75,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 1.1rem; font-weight: bold;
  color: #09111F; flex-shrink: 0;
  letter-spacing: 0.04em;
}
.prof-name { font-family: Georgia, serif; font-size: 1.1rem; font-weight: bold; color: var(--white); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prof-email { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 7px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prof-tier-badge {
  display: inline-block; padding: 3px 10px;
  background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.32);
  border-radius: 20px; font-size: 9px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.prof-stats-row {
  display: flex; align-items: center;
  margin: 0; padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.prof-stat { flex: 1; text-align: center; }
.prof-stat-val { font-family: Georgia, serif; font-size: 1.05rem; font-weight: bold; color: var(--gold); display: block; }
.prof-stat-lbl { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 2px; display: block; }
.prof-stat-sep { width: 1px; height: 24px; background: rgba(255,255,255,0.07); flex-shrink: 0; }

/* Loyalty card */
.loyalty-card {
  margin: 10px 16px 6px;
  background: linear-gradient(135deg, rgba(200,168,75,0.12) 0%, rgba(200,168,75,0.04) 100%);
  border: 1px solid rgba(200,168,75,0.22);
  border-radius: 14px; padding: 14px 16px;
  position: relative; overflow: hidden;
}
.loyalty-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.loyalty-tier-info { display: flex; align-items: center; gap: 10px; }
.loyalty-tier-icon { font-size: 16px; line-height: 1; color: var(--gold); opacity: 0.7; }
.loyalty-tier-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.loyalty-pts-label { font-size: 11px; color: rgba(255,255,255,0.45); }
.loyalty-badge { background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.3); color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.loyalty-progress-wrap { margin-top: 4px; }
.loyalty-progress-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; margin-bottom: 6px; }
.loyalty-progress-fill { height: 100%; background: linear-gradient(90deg, #C8A84B, #E8CF80); border-radius: 2px; transition: width 0.6s ease-out; }
.loyalty-progress-label { font-size: 11px; color: rgba(255,255,255,0.4); }

/* Profile menu as grouped card */
.prof-sec-lbl {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(200,168,75,0.55); padding: 12px 16px 4px; display: block;
}
.prof-menu-wrap { padding: 0 16px 10px; }
.prof-menu-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.prof-menu-item {
  display: flex; align-items: center; gap: 12px; background: none; border: none;
  border-bottom: 1px solid var(--border); width: 100%; text-align: left;
  padding: 12px 14px; cursor: pointer; transition: background 0.15s;
}
.prof-menu-item:last-child { border-bottom: none; }
.prof-menu-item:active { background: rgba(200,168,75,0.05); }
.prof-menu-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(200,168,75,0.18) 0%, rgba(200,168,75,0.08) 100%);
  border: 1px solid rgba(200,168,75,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold);
}
.prof-menu-body { flex: 1; }
.prof-menu-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 1px; display: block; }
.prof-menu-sub { font-size: 11px; color: rgba(255,255,255,0.36); display: block; }
.prof-menu-arrow { color: rgba(255,255,255,0.2); font-size: 18px; line-height: 1; }

/* Sign out */
.prof-signout-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 6px 16px 0; width: calc(100% - 32px);
  padding: 12px; background: none;
  border: 1px solid rgba(239,68,68,0.18); border-radius: 12px;
  font-size: 13px; font-weight: 600; color: rgba(239,68,68,0.5); cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.prof-signout-btn:active { background: rgba(239,68,68,0.07); color: rgba(239,68,68,0.8); }
.prof-version { font-size: 11px; color: rgba(255,255,255,0.15); text-align: center; padding: 14px 0 24px; letter-spacing: 0.04em; }
.edit-prof-body { flex: 1; overflow-y: auto; padding: 16px 16px 32px; }
.edit-prof-avatar-wrap { display: flex; flex-direction: column; align-items: center; margin-bottom: 24px; }
.edit-prof-change-photo { margin-top: 10px; font-size: 12px; color: var(--gold); background: none; border: none; cursor: pointer; }

/* ── SETTINGS ───────────────────────────────────── */
#screen-settings .screen-header {
  background: radial-gradient(ellipse 180% 120% at 50% 0%, rgba(200,168,75,0.12) 0%, transparent 65%);
}
.settings-body { flex: 1; overflow-y: auto; padding: 0 0 52px; -webkit-overflow-scrolling: touch; }
.settings-section-label { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,168,75,0.6); padding: 20px 20px 8px; }

/* Profile card */
.settings-profile-card {
  display: flex; align-items: center; gap: 14px;
  margin: 20px 16px 4px;
  background: linear-gradient(135deg, rgba(200,168,75,0.12) 0%, rgba(200,168,75,0.04) 60%, var(--surface) 100%);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 18px; padding: 16px;
  position: relative; overflow: hidden;
}
.settings-profile-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(200,168,75,0.4) 40%, rgba(200,168,75,0.4) 60%, transparent 95%);
}
.settings-prof-av {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #D4B86A 0%, #C8A84B 50%, #9e7b29 100%);
  border: 2px solid rgba(200,168,75,0.4);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.1), 0 4px 12px rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 1.1rem; font-weight: bold;
  color: #0D0D0D; flex-shrink: 0; letter-spacing: 0.04em;
}
.settings-prof-meta { flex: 1; min-width: 0; }
.settings-prof-name { font-size: 15px; font-weight: 700; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.settings-prof-sub  { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.settings-prof-edit-btn {
  flex-shrink: 0; padding: 8px 18px;
  background: rgba(200,168,75,0.07); border: 1px solid rgba(200,168,75,0.28);
  border-radius: 20px; font-size: 12px; font-weight: 600;
  color: var(--gold); cursor: pointer; letter-spacing: 0.04em;
}
.settings-prof-edit-btn:active { background: rgba(200,168,75,0.14); }

/* Groups as rounded cards */
.settings-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; margin: 0 16px 4px; overflow: hidden;
}
.settings-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.settings-row:last-child { border-bottom: none; }
.settings-row-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(200,168,75,0.18) 0%, rgba(200,168,75,0.07) 100%);
  border: 1px solid rgba(200,168,75,0.16);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.settings-row-label { flex: 1; font-size: 14px; color: var(--white); }
.settings-row-val { font-size: 13px; color: rgba(255,255,255,0.38); max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: right; }
.settings-action-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; text-align: left; cursor: pointer; transition: background 0.15s; }
.settings-action-row:last-child { border-bottom: none; }
.settings-action-row:active { background: rgba(200,168,75,0.04); }
.settings-action-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(200,168,75,0.18) 0%, rgba(200,168,75,0.07) 100%);
  border: 1px solid rgba(200,168,75,0.16);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.settings-action-label { flex: 1; font-size: 14px; color: var(--white); }
.settings-action-arrow { color: rgba(255,255,255,0.2); font-size: 20px; line-height: 1; }
.settings-toggle-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.settings-toggle-row:last-child { border-bottom: none; }
.settings-danger-icon { background: rgba(224,85,85,0.12) !important; border-color: rgba(224,85,85,0.2) !important; color: #e05555 !important; }
.settings-danger-label { color: #e05555 !important; }
.settings-danger-card { border-color: rgba(224,85,85,0.2) !important; }

/* Sign out */
.settings-signout-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 20px 16px 0; width: calc(100% - 32px);
  padding: 15px; background: none;
  border: 1px solid rgba(239,68,68,0.18); border-radius: 14px;
  font-size: 14px; font-weight: 600; color: rgba(239,68,68,0.5); cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.settings-signout-btn:active { background: rgba(239,68,68,0.07); color: rgba(239,68,68,0.8); }
.settings-version { text-align: center; font-size: 11px; color: rgba(255,255,255,0.15); padding: 20px 20px 0; letter-spacing: 0.04em; }
.tier-label { font-size: 11px; color: var(--gold); }

/* ── Chat unread badge ──────────────────────────────────────── */
.chat-unread-badge { background: var(--gold); color: #09111F; font-size: 10px; font-weight: 700; border-radius: 10px; padding: 1px 6px; margin-right: 4px; min-width: 16px; text-align: center; }

/* ── Chat screen ────────────────────────────────────────────── */
.chat-status-label { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; margin-top: 1px; }
#screen-chat { display: flex; flex-direction: column; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px 16px 8px; display: flex; flex-direction: column; gap: 10px; -webkit-overflow-scrolling: touch; }
.chat-welcome { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 24px 16px; gap: 10px; }
.chat-welcome-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.25); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.chat-welcome-title { font-size: 16px; font-weight: 600; color: #fff; margin: 0; }
.chat-welcome-sub { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; line-height: 1.5; }
.chat-bubble { max-width: 80%; padding: 9px 13px; border-radius: 16px; font-size: 13px; line-height: 1.5; word-break: break-word; }
.chat-bubble.client { align-self: flex-end; background: var(--gold); color: #09111F; border-bottom-right-radius: 4px; }
.chat-bubble.dispatch { align-self: flex-start; background: rgba(255,255,255,0.08); color: #fff; border-bottom-left-radius: 4px; }
.chat-bubble-wrap { display: flex; flex-direction: column; gap: 2px; }
.chat-bubble-wrap.client { align-items: flex-end; }
.chat-bubble-wrap.dispatch { align-items: flex-start; }
.chat-time { font-size: 10px; color: rgba(255,255,255,0.25); padding: 0 4px; }
.chat-sending { opacity: 0.55; }
.chat-composer { display: flex; align-items: flex-end; gap: 10px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,0.07); background: var(--bg, #09111F); flex-shrink: 0; }
.chat-input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; color: #fff; font-size: 14px; padding: 9px 14px; resize: none; line-height: 1.4; max-height: 120px; overflow-y: auto; }
.chat-input::placeholder { color: rgba(255,255,255,0.25); }
.chat-input:focus { outline: none; border-color: rgba(200,168,75,0.4); }
.chat-send-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #09111F; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: opacity .15s; }
.chat-send-btn:active { opacity: 0.75; }
.tier-line { font-size: 14px; color: var(--white); }

/* ── Change Password screen ─────────────────────────────────── */
.chpw-intro { font-size: 14px; color: var(--gray); line-height: 1.55; margin-bottom: 24px; }
.chpw-error-bar { display: none; background: rgba(224,85,85,0.1); border: 1px solid rgba(224,85,85,0.3); border-radius: 10px; color: #e05555; font-size: 13px; padding: 10px 14px; margin-bottom: 18px; }

/* ── Delete Account sheet ───────────────────────────────────── */
.del-acct-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.del-acct-overlay.visible { opacity: 1; pointer-events: all; }
.del-acct-sheet { position: fixed; bottom: -2px; left: 50%; transform: translateX(-50%) translateY(100%); width: 100%; max-width: 430px; background: var(--surface); border-radius: 20px 20px 0 0; padding: 24px 20px 40px; z-index: 201; transition: transform 0.35s cubic-bezier(0.34,1.1,0.64,1); }
.del-acct-sheet.visible { transform: translateX(-50%) translateY(0); }
.del-acct-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.del-acct-title { font-size: 17px; font-weight: 700; color: #e05555; }
.del-acct-close { background: none; border: none; font-size: 22px; color: var(--gray); cursor: pointer; padding: 4px 8px; }
.del-acct-warning { font-size: 13px; color: var(--gray); line-height: 1.55; margin-bottom: 20px; }
.del-acct-warning strong { color: var(--white); }
.del-acct-error-bar { display: none; background: rgba(224,85,85,0.1); border: 1px solid rgba(224,85,85,0.3); border-radius: 10px; color: #e05555; font-size: 13px; padding: 10px 14px; margin-bottom: 14px; }
.del-acct-btn { width: 100%; padding: 14px; background: #e05555; border: none; border-radius: 12px; color: #fff; font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 8px; }
.del-acct-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── HOTELS & RESTAURANTS ────────────────────────── */
.concierge-hero { padding: 56px 20px 20px; background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(200,168,75,0.08) 0%, transparent 70%); flex-shrink: 0; }
.concierge-hero-label { font-size: 10px; font-weight: bold; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.concierge-hero-title { font-family: Georgia, serif; font-size: 1.3rem; font-weight: bold; color: var(--white); margin-bottom: 4px; }
.concierge-hero-sub { font-size: 13px; color: var(--gray); }
.concierge-search-row { padding: 12px 16px; }
.concierge-search-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; padding: 0 14px; }
.concierge-search-input { flex: 1; background: none; border: none; padding: 12px 0; font-size: 14px; color: var(--white); }
.concierge-search-input::placeholder { color: rgba(255,255,255,0.25); }
.concierge-filter-tabs { display: flex; gap: 8px; padding: 0 16px 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.concierge-tab { padding: 7px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; font-weight: bold; color: var(--gray); white-space: nowrap; flex-shrink: 0; transition: all 0.15s; }
.concierge-tab.active { background: var(--gold-glow); border-color: var(--gold-border); color: var(--gold); }
.concierge-list { flex: 1; overflow-y: auto; padding: 0 16px 100px; display: flex; flex-direction: column; gap: 12px; -webkit-overflow-scrolling: touch; }
.hotel-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.hotel-card-img { height: 160px; background: var(--surface-2); position: relative; background-size: cover; background-position: center; }
.hotel-card-img--business { background: linear-gradient(135deg, #0f1f2d 0%, #1a2d3f 50%, #243855 100%); }
.hotel-badge { position: absolute; top: 10px; left: 10px; background: rgba(9,17,31,0.85); border: 1px solid var(--gold-border); color: var(--gold); font-size: 10px; font-weight: bold; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 20px; backdrop-filter: blur(4px); }
.hotel-card-body { padding: 14px 16px; }
.hotel-top-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.hotel-name { font-size: 15px; font-weight: bold; color: var(--white); }
.hotel-area { font-size: 11px; color: var(--gray); margin-top: 2px; }
.hotel-stars { font-size: 12px; color: var(--gold); }
.hotel-amenities { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.hotel-amenity { padding: 3px 10px; background: var(--surface-2); border-radius: 20px; font-size: 11px; color: var(--gray-light); }
.hotel-footer { display: flex; align-items: center; justify-content: space-between; }
.hotel-price { font-size: 16px; font-weight: bold; color: var(--gold); }
.hotel-price-sub { font-size: 11px; color: var(--gray); }
.hotel-book-btn { padding: 8px 18px; background: var(--gold); color: var(--bg); border-radius: var(--radius-sm); font-size: 12px; font-weight: bold; }
.resto-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.resto-img { height: 140px; background: var(--surface-2); position: relative; background-size: cover; background-position: center; }
.resto-img--default { background: linear-gradient(135deg, #111827 0%, #1f2d3d 50%, #2d3f55 100%); }
.resto-badge { position: absolute; top: 10px; left: 10px; background: rgba(9,17,31,0.85); border: 1px solid var(--gold-border); color: var(--gold); font-size: 10px; font-weight: bold; padding: 3px 10px; border-radius: 20px; backdrop-filter: blur(4px); }
.resto-rating-pill { position: absolute; top: 10px; right: 10px; background: rgba(9,17,31,0.85); border: 1px solid var(--gold-border); color: var(--gold); font-size: 11px; font-weight: bold; padding: 3px 10px; border-radius: 20px; backdrop-filter: blur(4px); }
.resto-body { padding: 14px 16px; }
.resto-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.resto-name { font-size: 15px; font-weight: bold; color: var(--white); }
.resto-cuisine { font-size: 11px; color: var(--gray); margin-top: 2px; }
.resto-price { font-size: 12px; color: var(--gold); font-weight: bold; }
.resto-desc { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 12px; }
.resto-slots-label { font-size: 10px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.resto-slots { display: flex; gap: 6px; flex-wrap: wrap; }
.resto-slot { padding: 6px 12px; background: var(--surface-2); border: 1px solid var(--gold-border); border-radius: var(--radius-sm); font-size: 12px; font-weight: bold; color: var(--gold); cursor: pointer; }
.resto-slot:active { background: var(--gold-glow); }
.resto-slot--full { opacity: 0.4; cursor: not-allowed; color: var(--gray); border-color: var(--border); }
.concierge-booking-body { flex: 1; overflow-y: auto; padding: 8px 16px 32px; -webkit-overflow-scrolling: touch; }
.cbook-summary { display: flex; gap: 14px; background: var(--surface); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 14px; margin-bottom: 20px; }
.cbook-img { width: 72px; height: 56px; border-radius: var(--radius-sm); background: var(--surface-2); object-fit: cover; flex-shrink: 0; }
.cbook-info { flex: 1; }
.cbook-name { font-size: 14px; font-weight: bold; color: var(--white); margin-bottom: 2px; }
.cbook-sub { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.cbook-time-badge { display: inline-block; padding: 2px 8px; background: var(--gold-glow); border: 1px solid var(--gold-border); border-radius: 20px; font-size: 11px; color: var(--gold); margin-bottom: 4px; }
.cbook-price { font-size: 15px; font-weight: bold; color: var(--gold); }

/* ── ABOUT / LEGAL ──────────────────────────────── */
.about-body { flex: 1; overflow-y: auto; padding-bottom: 40px; -webkit-overflow-scrolling: touch; }

/* Hero — dramatic brand moment */
.about-hero {
  padding: 48px 24px 32px;
  background: radial-gradient(ellipse 220% 150% at 50% 0%, rgba(200,168,75,0.22) 0%, rgba(200,168,75,0.05) 50%, transparent 70%);
  text-align: center; position: relative; flex-shrink: 0;
}
.about-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(200,168,75,0.28) 35%, rgba(200,168,75,0.28) 65%, transparent 95%);
}
.about-hero-logo {
  width: 72px; height: 72px; object-fit: contain; margin-bottom: 18px;
  filter: drop-shadow(0 0 24px rgba(200,168,75,0.45)) drop-shadow(0 6px 16px rgba(200,168,75,0.25));
}
.about-hero-name {
  font-family: Georgia, serif; font-size: 1.75rem; font-weight: bold;
  color: var(--white); margin-bottom: 6px; letter-spacing: 0.04em;
}
.about-hero-tagline {
  font-size: 10px; color: rgba(200,168,75,0.8);
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* Sections — scoped to about screen as premium cards */
#screen-about .about-section {
  margin: 14px 16px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 18px 18px 16px;
  position: relative; overflow: hidden;
}
#screen-about .about-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(200,168,75,0.2) 50%, transparent 90%);
}
#screen-about .about-section-title {
  font-family: Georgia, serif; font-size: 0.95rem; font-weight: bold;
  color: var(--gold); margin-bottom: 10px; padding-bottom: 0; border-bottom: none;
  opacity: 0.9;
}

/* Privacy / ToS sections — keep original lighter style */
.about-section { padding: 20px 20px 0; }
.about-section-title { font-family: Georgia, serif; font-size: 1rem; font-weight: bold; color: var(--white); margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }

.about-section-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 8px; }
.about-list { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 2; padding-left: 16px; }
.about-list li::marker { color: var(--gold); }

/* Contact rows */
.about-contact-list { display: flex; flex-direction: column; gap: 12px; }
.about-contact-row { display: flex; gap: 14px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.65); }
.about-contact-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(200,168,75,0.18) 0%, rgba(200,168,75,0.07) 100%);
  border: 1px solid rgba(200,168,75,0.18);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}

.about-version { font-size: 11px; color: rgba(255,255,255,0.2); text-align: center; padding: 24px 20px 0; letter-spacing: 0.04em; }

/* Header gradient for about screen */
#screen-about .screen-header {
  background: radial-gradient(ellipse 180% 120% at 50% 0%, rgba(200,168,75,0.12) 0%, transparent 65%);
}

/* ── TRIP REVIEW ─────────────────────────────────── */
.review-inner { flex: 1; overflow-y: auto; padding: 32px 20px 40px; display: flex; flex-direction: column; -webkit-overflow-scrolling: touch; }
.review-header { text-align: center; margin-bottom: 24px; }
.review-icon-wrap { width: 72px; height: 72px; margin: 0 auto 16px; position: relative; }
.review-icon-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--gold-glow); animation: trip-pulse 2s infinite; }
.review-icon-core { position: absolute; inset: 6px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--bg); }
.review-title { font-family: Georgia, serif; font-size: 1.3rem; font-weight: bold; color: var(--white); margin-bottom: 6px; }
.review-sub { font-size: 13px; color: var(--gray); }
.review-booking-ref { font-size: 12px; color: var(--gold); margin-top: 6px; display: flex; align-items: center; gap: 6px; justify-content: center; }
.review-ref-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 14px; }
.review-card-label { font-size: 11px; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.review-card-sub { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.star-row { display: flex; gap: 8px; justify-content: center; margin-bottom: 4px; }
.star-btn { font-size: 28px; color: var(--border); transition: color 0.15s; background: none; border: none; cursor: pointer; }
.star-btn.lit { color: var(--gold); }
.star-hint { font-size: 11px; color: var(--gray); text-align: center; min-height: 16px; }
.tip-preset-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.tip-btn { padding: 8px 14px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 12px; font-weight: bold; color: var(--gray-light); transition: all 0.15s; }
.tip-btn.active { background: var(--gold-glow); border-color: var(--gold); color: var(--gold); }
.tip-btn--no { color: var(--gray); }
.tip-custom-wrap { display: flex; align-items: center; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 12px; }
.tip-custom-prefix { font-size: 14px; color: var(--gold); margin-right: 6px; font-weight: bold; }
.tip-custom-input { flex: 1; background: none; border: none; padding: 12px 0; font-size: 14px; color: var(--white); }
.review-textarea { min-height: 80px; }
.review-optional { font-size: 11px; color: var(--gray); margin-bottom: 4px; }
.review-submit-btn { margin-top: auto; }
.review-skip-btn { text-align: center; margin-top: 12px; font-size: 12px; color: var(--gray); cursor: pointer; }

/* ── AUTH LOADING & TOAST ────────────────────────── */
#auth-loading { display: none; position: absolute; inset: 0; z-index: 9999; background: rgba(9,17,31,0.93); backdrop-filter: blur(6px); flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
#auth-loading.show { display: flex; }
.auth-spinner { width: 44px; height: 44px; border: 3px solid var(--border); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
#auth-loading-msg { font-size: 14px; color: var(--gray); }
#auth-toast { position: absolute; bottom: 100px; left: 16px; right: 16px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 13px; color: var(--white); z-index: 9000; box-shadow: 0 8px 32px rgba(0,0,0,0.4); transform: translateY(20px); opacity: 0; transition: transform 0.25s, opacity 0.25s; pointer-events: none; }
#auth-toast.show, #auth-toast.visible { transform: translateY(0); opacity: 1; }
#auth-toast.error { border-color: rgba(192,57,43,0.4); }
#auth-toast.success { border-color: rgba(26,140,78,0.4); }
.auth-provider-badges { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.auth-provider-badge { font-size: 10px; color: var(--gray); padding: 2px 8px; }

/* ── UTILITIES ──────────────────────────────────── */
.hidden      { display: none !important; }
.text-center { text-align: center; }
.mt-8        { margin-top: 8px; }
.mt-16       { margin-top: 16px; }
.mt-24       { margin-top: 24px; }
.mb-24       { margin-bottom: 24px; }
.px-0        { padding-left: 0; padding-right: 0; }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeIn  { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideUp { from{transform:translateY(100%)} to{transform:translateY(0)} }
@keyframes slideIn { from{transform:translateX(100%)} to{transform:translateX(0)} }
@keyframes slideInFromRight { from{transform:translateX(100%)} to{transform:translateX(0)} }
@keyframes slideOutToLeft   { from{transform:translateX(0)} to{transform:translateX(-100%)} }
@keyframes pinPulse { 0%,100%{transform:translate(-50%,-100%) scale(1);opacity:1} 50%{transform:translate(-50%,-100%) scale(1.25);opacity:0.7} }

/* ── HOME SEARCH (Uber-style) ───────────────────── */
.home-search-card {
  margin: 8px 16px 16px;
  background: var(--surface);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.home-search-card:focus-within { border-color: rgba(200,168,75,0.55); box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 3px rgba(200,168,75,0.06); }
.home-search-wrap {
  display: flex; align-items: center; gap: 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 20px;
  min-height: 54px;
  cursor: text;
  box-shadow: none;
  transition: none;
}
.home-search-wrap:focus-within { border-color: var(--gold); box-shadow: none; }
.home-search-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(200,168,75,0.5);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
.home-search-field {
  flex: 1; background: none; border: none; outline: none;
  font-size: 16px; font-weight: 600; color: var(--white);
  font-family: inherit; caret-color: var(--gold);
}
.home-search-field::placeholder { color: rgba(255,255,255,0.32); font-weight: 600; }
.home-suggestions {
  display: none; margin: 0 16px 12px;
  background: var(--surface);
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
.home-suggestion-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px; cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.home-suggestion-item:last-child { border-bottom: none; }
.home-suggestion-item:active { background: var(--surface-2); }
.home-suggestion-icon { color: var(--gray); flex-shrink: 0; }
.home-suggestion-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.home-suggestion-main { font-size: 14px; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.home-suggestion-sub { font-size: 11px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.home-suggestion-loading { padding: 14px 20px; font-size: 13px; color: var(--gray); }

/* ── SAVE PLACE BOTTOM SHEET ────────────────────── */
.save-place-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.save-place-overlay.visible { opacity: 1; pointer-events: all; }
.save-place-sheet {
  position: fixed; bottom: -2px; left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%; max-width: 430px;
  background: var(--surface); border-radius: 24px 24px 0 0;
  border: 1px solid var(--border); border-bottom: none;
  padding: 12px 20px 44px; z-index: 201;
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
}
.save-place-sheet.visible { transform: translateX(-50%) translateY(0); }
.save-place-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--border); margin: 0 auto 20px;
}
.save-place-title {
  font-family: Georgia, serif; font-size: 1.2rem;
  font-weight: bold; color: var(--white); margin-bottom: 18px;
}
.save-place-search-wrap {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 8px;
  transition: border-color 0.2s;
}
.save-place-search-wrap:focus-within { border-color: var(--gold); }
.save-place-input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 15px; color: var(--white); font-family: inherit;
  caret-color: var(--gold);
}
.save-place-input::placeholder { color: rgba(255,255,255,0.3); }
.save-place-clear {
  background: none; border: none; color: var(--gray);
  font-size: 22px; line-height: 1; cursor: pointer; padding: 0; flex-shrink: 0;
}
#save-place-suggestions {
  border-radius: 14px; overflow: hidden; margin-bottom: 16px;
  border: 1px solid var(--border); display: none;
}
.save-place-suggestion-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; cursor: pointer;
  border-bottom: 1px solid var(--border);
  background: var(--bg); transition: background 0.15s;
}
.save-place-suggestion-item:last-child { border-bottom: none; }
.save-place-suggestion-item:active { background: var(--surface); }
.save-place-suggestion-main { font-size: 14px; color: var(--white); margin-bottom: 2px; }
.save-place-suggestion-sub { font-size: 11px; color: var(--gray); }
.save-place-footer { margin-top: 4px; }

/* ── HOME SAVED PLACES ──────────────────────────── */
.home-saved-row {
  display: flex; gap: 10px; padding: 10px 14px 14px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.home-saved-row::-webkit-scrollbar { display: none; }
.home-saved-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 10px 14px;
  cursor: pointer; flex-shrink: 0; min-width: 116px;
  transition: background 0.15s, border-color 0.15s;
}
.home-saved-chip:active { background: var(--surface-2); border-color: var(--gold-border); }
.home-saved-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(145deg, #131e30 0%, #0c1521 100%);
  border: 1px solid rgba(200,168,75,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.home-saved-name { font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 1px; }
.home-saved-addr { font-size: 10px; color: var(--gray); }

/* ── HOME SERVICE ROW ────────────────────────────── */
.home-svc-row {
  display: flex; justify-content: space-evenly;
  padding: 0 8px 24px;
}
.home-svc-item {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  cursor: pointer; width: 74px;
}
.home-svc-item-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: linear-gradient(145deg, #131e30 0%, #0c1521 100%);
  border: 1px solid rgba(200,168,75,0.18);
  box-shadow: inset 0 1px 0 rgba(200,168,75,0.13), 0 4px 14px rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: border-color 0.2s, box-shadow 0.2s;
}
.home-svc-item:active .home-svc-item-icon {
  border-color: rgba(200,168,75,0.5);
  box-shadow: inset 0 1px 0 rgba(200,168,75,0.2), 0 2px 8px rgba(0,0,0,0.25);
}
.home-svc-item-label { font-size: 11px; color: rgba(255,255,255,0.6); text-align: center; font-weight: 500; letter-spacing: 0.01em; }

/* ── HOME RECENT ACTIVITY ───────────────────────── */
.home-recent-header { display: flex; align-items: center; justify-content: space-between; padding-right: 20px; }
.home-recent-list { padding: 0 16px; }
.home-recent-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity 0.15s;
}
.home-recent-item:last-child { border-bottom: none; }
.home-recent-item:active { opacity: 0.7; }
.home-recent-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); flex-shrink: 0;
}
.home-recent-info { flex: 1; min-width: 0; }
.home-recent-name { font-size: 14px; color: var(--white); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.home-recent-sub { font-size: 12px; color: var(--gray); }
.home-recent-arrow { color: var(--gray); flex-shrink: 0; }
.home-recent-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 32px 0 16px; }
.home-recent-empty p { font-size: 13px; color: var(--gray); text-align: center; }

/* ── SCREEN: WHERE TO? ──────────────────────────── */
.whereto-header {
  display: flex; align-items: center; gap: 14px;
  padding: 52px 20px 20px; flex-shrink: 0;
}
.whereto-header-title { font-size: 16px; font-weight: 600; color: var(--white); }
.whereto-body { flex: 1; overflow-y: auto; padding: 0 16px; -webkit-overflow-scrolling: touch; }
.whereto-inputs {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; margin-bottom: 24px;
}
.whereto-row { display: flex; align-items: center; gap: 14px; padding: 17px 18px; }
.whereto-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.whereto-dot.pickup { background: var(--gold); box-shadow: 0 0 6px rgba(200,168,75,0.5); }
.whereto-dot.dropoff { background: #e05555; box-shadow: 0 0 6px rgba(224,85,85,0.4); }
.whereto-input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 16px; color: var(--white); font-family: inherit; caret-color: var(--gold);
}
.whereto-input::placeholder { color: rgba(255,255,255,0.3); }
.whereto-divider { height: 1px; background: var(--border); margin: 0 18px; }
.whereto-recent-label {
  font-size: 10px; font-weight: bold; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.whereto-recent-item {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--border); cursor: pointer;
  transition: opacity 0.15s;
}
.whereto-recent-item:last-child { border-bottom: none; }
.whereto-recent-item:active { opacity: 0.7; }
.whereto-recent-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); flex-shrink: 0;
}
.whereto-recent-name { font-size: 14px; color: var(--white); font-weight: 500; margin-bottom: 2px; }
.whereto-recent-sub { font-size: 12px; color: var(--gray); }
.whereto-footer { padding: 16px; flex-shrink: 0; border-top: 1px solid var(--border); }
@keyframes inputShake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-6px); }
  40%,80%  { transform: translateX(6px); }
}
.input-shake { animation: inputShake 0.35s ease; }

/* ── SCREEN: BOOK SERVICE ───────────────────────── */
#screen-book-service .svc-page-wrap { padding-top: 0; }

/* ── BOOKING SCREEN SHELL ───────────────────────── */
.booking-screen { background: var(--bg); }

/* ── VEHICLE / TIER SELECTION ─────────────────── */
#screen-book-vehicle {
  background: radial-gradient(ellipse 200% 140% at 50% 0%, rgba(200,168,75,0.14) 0%, rgba(200,168,75,0.03) 55%, transparent 75%);
}
#screen-book-vehicle .screen-header {
  background: transparent;
  border-bottom-color: rgba(200,168,75,0.12);
}
.bl-vc-scroll {
  flex: 1; overflow-y: auto; padding: 20px 16px 60px;
  -webkit-overflow-scrolling: touch;
}
.bl-vc-heading {
  font-family: Georgia, serif; font-size: 1.75rem; font-weight: bold;
  color: var(--white); margin: 0 0 4px; line-height: 1.2;
}
.bl-vc-subheading {
  font-size: 13px; color: rgba(255,255,255,0.35); margin: 0 0 22px;
}

/* Card shell */
.bl-vc-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.035) 0%, var(--surface) 100%);
  border: 1px solid rgba(200,168,75,0.14);
  border-radius: 22px; padding: 18px 18px 20px;
  margin-bottom: 14px; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}
.bl-vc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(200,168,75,0.18) 50%, transparent 90%);
  transition: background 0.2s;
}
.bl-vc-card.selected {
  background: linear-gradient(150deg, rgba(200,168,75,0.12) 0%, rgba(200,168,75,0.04) 55%, var(--surface) 100%);
  border-color: rgba(200,168,75,0.6);
  box-shadow: 0 0 0 1px rgba(200,168,75,0.14), 0 8px 32px rgba(0,0,0,0.3);
}
.bl-vc-card.selected::before {
  background: linear-gradient(90deg, transparent 5%, rgba(200,168,75,0.55) 40%, rgba(200,168,75,0.55) 60%, transparent 95%);
}
.bl-vc-card:active { opacity: 0.88; }

/* Check circle */
.bl-vc-check {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #E0C06A, #C8A84B);
  color: #09111F;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.6);
  transition: opacity 0.2s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 2px 10px rgba(200,168,75,0.4);
}
.bl-vc-card.selected .bl-vc-check { opacity: 1; transform: scale(1); }

/* Topbar row */
.bl-vc-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-right: 36px;
}
.bl-vc-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(200,168,75,0.07); border: 1px solid rgba(200,168,75,0.16);
  color: rgba(200,168,75,0.55); padding: 4px 10px; border-radius: 50px;
  transition: all 0.2s;
}
.bl-vc-card.selected .bl-vc-badge {
  background: rgba(200,168,75,0.14); border-color: rgba(200,168,75,0.4); color: var(--gold);
}
.bl-vc-price { font-size: 11px; color: rgba(255,255,255,0.35); text-align: right; }
.bl-vc-price strong {
  font-size: 18px; font-weight: 700; color: var(--white);
  display: block; font-family: Georgia, serif; line-height: 1.1; margin-top: 1px;
  transition: color 0.2s;
}
.bl-vc-card.selected .bl-vc-price strong { color: var(--gold); }

/* Body row */
.bl-vc-body { display: flex; align-items: flex-start; gap: 14px; }
.bl-vc-info { flex: 1; min-width: 0; }

/* Tier name + subtitle + models */
.bl-vc-name {
  font-family: Georgia, serif; font-size: 1.65rem; font-weight: bold;
  color: var(--white); margin: 0 0 3px; line-height: 1.1;
}
.bl-vc-subtitle {
  font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(200,168,75,0.7); margin-bottom: 5px;
}
.bl-vc-models {
  font-size: 11px; color: rgba(255,255,255,0.3); margin: 0 0 14px; letter-spacing: 0.01em;
}

/* Feature list */
.bl-vc-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.bl-vc-features li {
  font-size: 12px; color: rgba(255,255,255,0.4);
  display: flex; align-items: flex-start; gap: 7px; line-height: 1.4;
  transition: color 0.2s;
}
.bl-vc-features li::before {
  content: '◆'; font-size: 6px; color: rgba(200,168,75,0.45);
  flex-shrink: 0; margin-top: 4px;
}
.bl-vc-card.selected .bl-vc-features li { color: rgba(255,255,255,0.75); }
.bl-vc-card.selected .bl-vc-features li::before { color: var(--gold); }

/* Car photo */
.bl-vc-photo-wrap {
  width: 124px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: flex-end;
  margin-top: -4px;
}
.bl-vc-photo {
  width: 100%; height: auto; object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6)) drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: filter 0.2s;
}
.bl-vc-card.selected .bl-vc-photo {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.55)) drop-shadow(0 0 18px rgba(200,168,75,0.22));
}

/* ── SCREEN-INNER (trip review wrapper) ──────────── */
.screen-inner { flex: 1; display: flex; flex-direction: column; overflow: hidden; }

/* ── AIRPORT/FLIGHT INFO ────────────────────────── */
.airport-info-header { padding: 0 16px 12px; }

/* ══════════════════════════════════════════════════
   LOYALTY REWARDS SCREEN
══════════════════════════════════════════════════ */
#screen-loyalty .screen-header {
  background: radial-gradient(ellipse 180% 120% at 50% 0%, rgba(200,168,75,0.12) 0%, transparent 65%);
}
.lys-wrap { flex: 1; overflow-y: auto; padding: 12px 16px 48px; display: flex; flex-direction: column; gap: 12px; }
.lys-wrap > * { flex-shrink: 0; }

/* Summary card */
.lys-card {
  background: linear-gradient(150deg, #111C2E 0%, #0c1828 60%, #0a1520 100%);
  border: 1px solid rgba(200,168,75,0.24);
  border-radius: 16px; padding: 16px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.lys-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(200,168,75,0.45) 40%, rgba(200,168,75,0.45) 60%, transparent 95%);
}
.lys-card-tier-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; position: relative; z-index: 1; }
.lys-tier-icon {
  font-size: 16px; flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.22);
  display: flex; align-items: center; justify-content: center;
}
.lys-tier-name { font-size: 15px; font-weight: 700; color: var(--white); font-family: Georgia, serif; }
.lys-tier-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.lys-badge { margin-left: auto; font-size: 9px; font-weight: 800; letter-spacing: 0.14em; border: 1px solid; padding: 3px 10px; border-radius: 20px; flex-shrink: 0; white-space: nowrap; }

.lys-balance-row {
  display: flex; align-items: center; margin-bottom: 14px;
  border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0; position: relative; z-index: 1;
}
.lys-balance-box { flex: 1; text-align: center; }
.lys-balance-val { font-size: 17px; font-weight: 700; color: var(--gold); font-family: Georgia, serif; display: block; }
.lys-balance-lbl { font-size: 9px; color: rgba(255,255,255,0.35); letter-spacing: 0.07em; margin-top: 2px; text-transform: uppercase; display: block; }
.lys-balance-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.07); flex-shrink: 0; }

.lys-prog-wrap { position: relative; z-index: 1; }
.lys-prog-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; margin-bottom: 6px; }
.lys-prog-fill { height: 100%; border-radius: 2px; transition: width 0.6s ease-out; background: linear-gradient(90deg, #C8A84B, #E8CF80); }
.lys-prog-label { font-size: 11px; color: rgba(255,255,255,0.4); }

/* Redeem button */
.lys-redeem-btn { margin: 0; }

/* Section title */
.lys-section-title { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,168,75,0.6); margin: 0; }

/* Tier list */
.lys-tiers { display: flex; flex-direction: column; background: var(--surface); border-radius: 14px; border: 1px solid rgba(200,168,75,0.12); overflow: hidden; }
.lys-tier-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.15s; }
.lys-tier-item:last-child { border-bottom: none; }
.lys-tier-item--active {
  background: linear-gradient(135deg, rgba(200,168,75,0.1) 0%, rgba(200,168,75,0.03) 100%);
  box-shadow: inset 3px 0 0 rgba(200,168,75,0.55);
}
.lys-tier-item-icon { font-size: 11px; flex-shrink: 0; width: 16px; text-align: center; }
.lys-tier-item-body { flex: 1; min-width: 0; }
.lys-tier-item-name { font-size: 13px; font-weight: 600; color: var(--white); }
.lys-tier-item-sub { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 1px; }
.lys-tier-item-badge { font-size: 8px; font-weight: 800; letter-spacing: 0.1em; border: 1px solid; padding: 2px 7px; border-radius: 20px; flex-shrink: 0; }

/* How you earn card */
.lys-earn-card {
  background: var(--surface); border-radius: 14px;
  border: 1px solid rgba(200,168,75,0.14); padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.lys-earn-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(200,168,75,0.25) 50%, transparent 90%);
}
.lys-earn-row { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.lys-earn-bullet { font-size: 9px; color: rgba(200,168,75,0.6); margin-top: 4px; flex-shrink: 0; }

/* Transaction list */
.lys-tx-list { display: flex; flex-direction: column; background: var(--surface); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.lys-tx-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.lys-tx-item:last-child { border-bottom: none; }
.lys-tx-icon { font-size: 16px; flex-shrink: 0; width: 20px; text-align: center; }
.lys-tx-body { flex: 1; min-width: 0; }
.lys-tx-desc { font-size: 12px; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lys-tx-date { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.lys-tx-pts { font-size: 14px; font-weight: 700; flex-shrink: 0; }
.lys-tx-empty { padding: 28px 16px; font-size: 13px; color: rgba(255,255,255,0.35); text-align: center; }

/* ── PAYMENT SCREEN loyalty toggle ───────────────── */
.pay-loyalty-row { display: flex; align-items: center; gap: 12px; margin: 0 16px 16px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--gold-border); border-radius: 12px; }
.pay-loyalty-info { flex: 1; min-width: 0; }
.pay-loyalty-pts { font-size: 13px; font-weight: 600; color: var(--white); }
.pay-loyalty-ghs { font-size: 11px; color: var(--gold); margin-top: 2px; }
.pay-loyalty-toggle { font-size: 12px; font-weight: 700; padding: 8px 14px; border-radius: 20px; border: 1px solid var(--gold); color: var(--gold); background: transparent; cursor: pointer; transition: all 0.2s; flex-shrink: 0; letter-spacing: 0.04em; }
.pay-loyalty-toggle.active { background: var(--gold); color: #09111F; }

/* ── REDEMPTION SHEET ────────────────────────────── */
.lys-redeem-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.lys-redeem-overlay.visible { opacity: 1; pointer-events: auto; }
.lys-redeem-sheet {
  position: fixed; bottom: -2px; left: 50%; transform: translateX(-50%) translateY(100%);
  width: 100%; max-width: 430px; background: var(--surface);
  border-radius: 20px 20px 0 0; padding: 0 20px calc(36px + env(safe-area-inset-bottom, 0px));
  z-index: 301; transition: transform 0.35s cubic-bezier(.32,1,.41,1);
}
.lys-redeem-sheet.open { transform: translateX(-50%) translateY(0); box-shadow: 0 -8px 40px rgba(0,0,0,0.5); }
.lys-redeem-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.15); margin: 10px auto 16px;
}
.lys-redeem-title { font-size: 17px; font-weight: 700; font-family: Georgia, serif; color: var(--white); margin: 0 0 16px; }
.lys-redeem-info { display: flex; align-items: center; gap: 0; background: var(--bg); border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; }
.lys-redeem-info-item { flex: 1; text-align: center; }
.lys-redeem-info-val { font-size: 16px; font-weight: 700; color: var(--gold); }
.lys-redeem-info-lbl { font-size: 10px; color: var(--gray); margin-top: 3px; letter-spacing: 0.06em; text-transform: uppercase; }
.lys-redeem-chips {
  display: flex; gap: 8px; margin-bottom: 16px;
}
.lys-redeem-chip {
  flex: 1; padding: 9px 4px; background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.25); border-radius: 8px;
  color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; font-family: inherit; transition: background 0.15s;
}
.lys-redeem-chip:active { background: rgba(200,168,75,0.18); }
.lys-redeem-chip:disabled { opacity: 0.3; pointer-events: none; }
.lys-redeem-chip--max { background: rgba(200,168,75,0.15); }
.lys-redeem-field-wrap { margin-bottom: 12px; }
.lys-redeem-field-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; display: block; margin-bottom: 8px; }
.lys-redeem-input {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px; font-size: 20px; font-weight: 700;
  color: var(--white); box-sizing: border-box; font-family: inherit;
  transition: border-color 0.2s;
}
.lys-redeem-input:focus { outline: none; border-color: var(--gold); }
.lys-redeem-input--error { border-color: rgba(231,76,60,0.6) !important; }
.lys-redeem-saving {
  background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.2);
  border-radius: 10px; padding: 12px 16px; margin-bottom: 12px; text-align: center;
}
.lys-redeem-saving-label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 4px; }
.lys-redeem-saving-amount { font-size: 22px; font-weight: 700; color: var(--gold); font-family: Georgia, serif; margin: 0; }
.lys-redeem-note { font-size: 11px; color: var(--gray); margin-bottom: 16px; text-align: center; }
.lys-redeem-confirm-btn { width: 100%; }

/* ══════════════════════════════════════════════════
   ONBOARDING FLOW
══════════════════════════════════════════════════ */
.onb-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: #09111F;
  display: flex; flex-direction: column; align-items: stretch;
  opacity: 0; transition: opacity 0.4s ease;
  max-width: 430px; margin: 0 auto;
}
.onb-overlay.onb-visible { opacity: 1; }

/* Skip */
.onb-skip-btn {
  position: absolute; top: 20px; right: 20px; z-index: 10;
  font-size: 13px; color: var(--gray); background: none; border: none;
  cursor: pointer; padding: 8px 4px; letter-spacing: 0.04em;
}

/* Slides */
.onb-slides-viewport { flex: 1; overflow: hidden; position: relative; }
.onb-track { display: flex; width: 500%; height: 100%; transition: transform 0.45s cubic-bezier(.32,1,.41,1); }
.onb-slide { width: 20%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 0 32px; box-sizing: border-box; }
.onb-slide-inner { width: 100%; text-align: center; }

/* Slide 0 — Welcome */
.onb-slide--welcome .onb-slide-inner { padding-top: 20px; }
.onb-logo-diamond { font-size: 52px; color: var(--gold); margin-bottom: 28px; display: block; animation: onbPulse 2.5s ease-in-out infinite; }
@keyframes onbPulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.7; transform:scale(1.08); } }
.onb-welcome-title { font-size: 30px; font-weight: 700; font-family: Georgia, serif; color: var(--white); line-height: 1.25; margin-bottom: 12px; }
.onb-welcome-name { font-size: 34px; font-weight: 700; font-family: Georgia, serif; color: var(--gold); margin-bottom: 20px; }
.onb-welcome-sub { font-size: 15px; color: var(--gray); line-height: 1.6; }

/* Slides 1-3 shared */
.onb-slide-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.onb-slide-title { font-size: 24px; font-weight: 700; font-family: Georgia, serif; color: var(--white); line-height: 1.3; margin-bottom: 28px; }
.onb-slide-sub { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 28px; }

/* Slide 1 — Services */
.onb-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.onb-svc-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 12px 16px; text-align: center; }
.onb-svc-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(200,168,75,0.12); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: var(--gold); }
.onb-svc-name { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.onb-svc-desc { font-size: 11px; color: var(--gray); line-height: 1.4; }

/* Slide 2 — Loyalty tiers */
.onb-tiers-visual { background: var(--surface); border-radius: 14px; padding: 18px 20px; margin-bottom: 18px; text-align: left; }
.onb-tier-row { display: flex; align-items: center; gap: 10px; }
.onb-tier-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--tier-color); flex-shrink: 0; box-shadow: 0 0 6px var(--tier-color); }
.onb-tier-dot--top { width: 12px; height: 12px; }
.onb-tier-label { font-size: 13px; font-weight: 600; color: var(--tier-color); flex: 1; }
.onb-tier-pts, .onb-tier-start { font-size: 11px; color: var(--gray); }
.onb-tier-start { color: var(--gold); font-weight: 600; }
.onb-tier-connector { width: 2px; height: 10px; background: var(--border); margin-left: 4px; }
.onb-earn-rule { font-size: 13px; color: var(--gray); padding: 12px 16px; background: var(--bg); border-radius: 10px; border: 1px solid var(--border); }
.onb-earn-rule strong { color: var(--gold); }

/* Slide 3 — Addresses */
.onb-addr-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.onb-addr-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); font-size: 14px; font-weight: 600; color: var(--white); cursor: pointer; transition: all 0.2s; }
.onb-addr-btn:active { opacity: 0.7; }
.onb-addr-btn--saved { border-color: var(--gold); color: var(--gold); background: rgba(200,168,75,0.08); }
.onb-addr-check { font-size: 14px; color: var(--gold); }
.onb-addr-note { font-size: 11px; color: var(--gray); }

/* Slide 4 — Finish */
.onb-slide--finish { background: radial-gradient(ellipse at center top, rgba(200,168,75,0.12) 0%, transparent 70%); }
.onb-finish-star { font-size: 64px; color: var(--gold); margin-bottom: 24px; display: block; animation: onbSpin 0.6s ease-out; }
@keyframes onbSpin { from { transform: rotate(-20deg) scale(0.5); opacity:0; } to { transform: rotate(0) scale(1); opacity:1; } }
.onb-finish-title { font-size: 30px; font-weight: 700; font-family: Georgia, serif; color: var(--white); margin-bottom: 14px; }
.onb-finish-sub { font-size: 15px; color: var(--gray); line-height: 1.65; }

/* Dots */
.onb-dots { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 0 8px; flex-shrink: 0; }
.onb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: all 0.3s; }
.onb-dot--active { width: 20px; border-radius: 3px; background: var(--gold); }

/* Nav */
.onb-nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px 36px; flex-shrink: 0; }
.onb-nav-btn { font-size: 14px; font-weight: 600; padding: 12px 24px; border-radius: 12px; border: none; cursor: pointer; transition: all 0.2s; }
.onb-nav-back { background: var(--surface); color: var(--gray); }
.onb-nav-next { background: var(--surface); color: var(--white); border: 1px solid var(--border); min-width: 110px; }
.onb-nav-next.onb-btn-gold { background: var(--gold); color: #09111F; border-color: var(--gold); font-size: 15px; padding: 14px 28px; }

#screen-profile { overflow-y: auto; }

/* ══════════════════════════════════════════════════
   REWARDS OVERVIEW SCREEN
══════════════════════════════════════════════════ */
.rwd-wrap { flex: 1; overflow-y: auto; padding: 16px 16px 0; display: flex; flex-direction: column; gap: 20px; }
#screen-rewards .screen-header {
  background: radial-gradient(ellipse 160% 100% at 50% 0%, rgba(200,168,75,0.1) 0%, transparent 65%);
}

/* Hero status card */
.rwd-hero {
  background: linear-gradient(150deg, #111C2E 0%, #0c1828 60%, #0a1520 100%);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 20px; padding: 22px 24px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.rwd-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(200,168,75,0.5) 40%, rgba(200,168,75,0.5) 60%, transparent 95%);
}
.rwd-hero-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; position: relative; z-index: 1; }
.rwd-hero-tier { display: flex; align-items: center; gap: 14px; }
.rwd-hero-icon {
  font-size: 22px; flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(200,168,75,0.15);
}
.rwd-hero-tier-name { font-size: 20px; font-weight: 700; color: var(--white); font-family: Georgia, serif; }
.rwd-hero-tier-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 3px; }
.rwd-hero-badge { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; border: 1px solid; padding: 5px 12px; border-radius: 20px; flex-shrink: 0; white-space: nowrap; }
.rwd-hero-balance { display: flex; align-items: center; margin-bottom: 20px; position: relative; z-index: 1; background: rgba(0,0,0,0.2); border-radius: 12px; padding: 14px 0; }
.rwd-hero-bal-item { flex: 1; text-align: center; }
.rwd-hero-bal-val { font-size: 20px; font-weight: 700; color: var(--gold); font-family: Georgia, serif; display: block; }
.rwd-hero-bal-lbl { font-size: 9px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 3px; display: block; }
.rwd-hero-bal-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.rwd-hero-progress { position: relative; z-index: 1; }
.rwd-prog-bar { height: 7px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.rwd-prog-fill { height: 100%; border-radius: 4px; transition: width 0.7s ease-out; background: linear-gradient(90deg, #C8A84B, #E8CF80); }
.rwd-prog-label { font-size: 11px; color: rgba(255,255,255,0.4); }

/* Quick actions */
.rwd-actions { display: flex; gap: 10px; }
.rwd-action-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 10px; border-radius: 14px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: opacity 0.15s; }
.rwd-action-primary { background: linear-gradient(135deg, #C8A84B, #E8CF80); color: #09111F; }
.rwd-action-secondary { background: var(--surface); color: var(--white); border: 1px solid rgba(200,168,75,0.25); }

/* Section title */
.rwd-section-title { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin: 0; opacity: 0.8; }

/* Tier journey vertical timeline */
.rwd-journey { position: relative; padding-left: 36px; }
.rwd-tier-row { position: relative; padding-bottom: 0; }
.rwd-tier-row--last .rwd-tier-line { display: none; }

.rwd-tier-dot-wrap { position: absolute; left: -36px; top: 0; display: flex; flex-direction: column; align-items: center; height: 100%; }
.rwd-tier-dot { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--border); background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; z-index: 1; }
.rwd-tier-dot.rwd-dot--active {
  width: 30px; height: 30px; margin-left: -2px;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,168,75,0.18), 0 0 12px rgba(200,168,75,0.3);
}
.rwd-tier-line { flex: 1; width: 2px; background: var(--border); margin-top: 4px; min-height: 20px; }

.rwd-tier-content { padding: 0 0 24px 0; }
.rwd-tier-row--active .rwd-tier-content { padding-bottom: 28px; }
.rwd-tier-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; padding-top: 2px; }
.rwd-tier-name { font-size: 15px; font-weight: 700; }
.rwd-tier-mult { font-size: 12px; font-weight: 600; }
.rwd-tier-threshold { font-size: 11px; color: var(--gray); margin-bottom: 8px; }
.rwd-tier-benefits { margin: 0; padding: 0 0 0 14px; display: none; }
.rwd-tier-row--active .rwd-tier-benefits,
.rwd-tier-row--done .rwd-tier-benefits { display: block; }
.rwd-tier-benefits li { font-size: 12px; color: #c0c8d8; margin-bottom: 5px; line-height: 1.4; }
.rwd-tier-row--active .rwd-tier-name { font-size: 17px; }
.rwd-tier-row--active .rwd-tier-threshold { color: var(--white); }
.rwd-tier-row--future .rwd-tier-name,
.rwd-tier-row--future .rwd-tier-threshold { color: var(--gray); }
.rwd-tier-row--active .rwd-tier-content {
  background: linear-gradient(135deg, rgba(200,168,75,0.08) 0%, rgba(200,168,75,0.03) 100%);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: 14px; padding: 12px 14px 16px; margin-left: -4px;
}

/* "How it works" cards */
.rwd-how-grid { display: flex; gap: 10px; }
.rwd-how-card { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 12px; text-align: center; }
.rwd-how-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,168,75,0.25) 0%, rgba(200,168,75,0.1) 100%);
  border: 1px solid rgba(200,168,75,0.4);
  color: var(--gold); font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.rwd-how-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.rwd-how-desc { font-size: 11px; color: var(--gray); line-height: 1.5; }

/* Refer & earn CTA */
.rwd-refer-cta {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, rgba(200,168,75,0.14) 0%, rgba(200,168,75,0.05) 100%);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 16px; padding: 18px 16px; cursor: pointer;
  position: relative; overflow: hidden;
}
.rwd-refer-cta::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(200,168,75,0.45) 50%, transparent 90%);
}
.rwd-refer-cta-body { flex: 1; min-width: 0; }
.rwd-refer-cta-title { font-size: 14px; font-weight: 700; color: var(--white); }
.rwd-refer-cta-sub { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ══════════════════════════════════════════════════
   REFERRAL PROGRAM
══════════════════════════════════════════════════ */
/* Signup referral toggle link */
.ref-toggle-link { font-size: 13px; color: var(--gold); cursor: pointer; }
.ref-toggle-link span:hover { text-decoration: underline; }

/* Referral code card */
.ref-code-card { background: var(--surface); border: 1px solid var(--gold-border); border-radius: 14px; padding: 18px 16px 14px; margin-bottom: 0; }
.ref-code-label { font-size: 10px; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.ref-code-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.ref-code { font-size: 26px; font-weight: 700; letter-spacing: 0.15em; color: var(--gold); font-family: Georgia, serif; flex: 1; }
.ref-copy-btn { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; padding: 8px 16px; border-radius: 20px; border: 1px solid var(--gold); color: var(--gold); background: transparent; cursor: pointer; flex-shrink: 0; transition: all 0.2s; }
.ref-copy-btn:active { background: var(--gold); color: #09111F; }
.ref-code-desc { font-size: 12px; color: var(--gray); margin-bottom: 14px; }
.ref-share-btn { display: flex; align-items: center; gap: 8px; width: 100%; justify-content: center; padding: 11px; border-radius: 10px; background: rgba(200,168,75,0.12); border: 1px solid var(--gold-border); font-size: 13px; font-weight: 600; color: var(--gold); cursor: pointer; letter-spacing: 0.03em; }

/* Referral — enter a friend's code */
.ref-enter-wrap { margin-top: 12px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.ref-enter-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 10px; }
.ref-enter-row { display: flex; gap: 8px; align-items: center; }
.ref-enter-input { flex: 1; background: var(--bg); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--white); font-size: 14px; font-weight: 600; padding: 10px 12px; font-family: inherit; }
.ref-enter-input:focus { outline: none; border-color: rgba(200,168,75,0.45); }
.ref-enter-input::placeholder { color: rgba(255,255,255,0.2); font-weight: 400; letter-spacing: 0; text-transform: none; }
.ref-enter-btn { padding: 10px 18px; border-radius: 8px; background: var(--gold); color: #09111F; font-size: 13px; font-weight: 700; border: none; cursor: pointer; flex-shrink: 0; }
.ref-enter-btn:disabled { opacity: 0.6; cursor: default; }
.ref-enter-err { font-size: 12px; color: #e07070; margin-top: 8px; }
.ref-applied-row { display: flex; align-items: center; gap: 6px; margin-top: 12px; padding: 10px 14px; background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.2); border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--gold); }

/* Referral stats */
.ref-stats-row { display: flex; align-items: center; gap: 0; background: var(--bg); border-radius: 10px; padding: 14px 16px; margin-top: 10px; }
.ref-stat { flex: 1; text-align: center; }
.ref-stat-val { font-size: 20px; font-weight: 700; color: var(--white); font-family: Georgia, serif; }
.ref-stat-lbl { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ══════════════════════════════════════════════════
   IN-APP NOTIFICATION TOAST
══════════════════════════════════════════════════ */
.notif-toast {
  position: fixed;
  top: 0; left: 50%; transform: translateX(-50%) translateY(-110%);
  width: 100%; max-width: 430px;
  display: flex; align-items: center; gap: 12px;
  background: #111C2E;
  border-bottom: 1px solid rgba(200,168,75,0.3);
  padding: 14px 16px;
  z-index: 500;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.notif-toast.visible { transform: translateX(-50%) translateY(0); }
.notif-toast-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,168,75,0.15); border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.notif-toast-text { flex: 1; min-width: 0; }
.notif-toast-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.notif-toast-sub   { font-size: 12px; color: var(--gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notif-toast-x {
  background: none; border: none; color: var(--gray); font-size: 18px;
  cursor: pointer; padding: 4px; line-height: 1; flex-shrink: 0; opacity: 0.7;
}

/* ══════════════════════════════════════════════════
   NOTIFICATION BADGE
══════════════════════════════════════════════════ */
.notif-badge {
  position: absolute; top: -4px; right: -6px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: #e05050; border-radius: 8px;
  font-size: 9px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; border: 1.5px solid var(--bg);
}
.notif-badge-inline {
  position: absolute; top: -3px; right: -3px;
  min-width: 14px; height: 14px; padding: 0 3px;
  background: #e05050; border-radius: 7px;
  font-size: 8px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* ══════════════════════════════════════════════════
   NOTIFICATIONS SCREEN
══════════════════════════════════════════════════ */
#screen-notifications .screen-hdr {
  background: radial-gradient(ellipse 200% 140% at 50% 0%, rgba(200,168,75,0.16) 0%, rgba(200,168,75,0.03) 55%, transparent 75%);
  border-bottom: none;
  padding-bottom: 16px;
}
#screen-notifications .screen-hdr::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(200,168,75,0.22) 35%, rgba(200,168,75,0.22) 65%, transparent 95%);
}
.notif-wrap { padding: 12px 16px 48px; display: flex; flex-direction: column; gap: 8px; }
.notif-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: background 0.15s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.notif-item--unread {
  background: linear-gradient(135deg, rgba(200,168,75,0.09) 0%, rgba(200,168,75,0.03) 100%);
  border-color: rgba(200,168,75,0.24);
  box-shadow: inset 3px 0 0 rgba(200,168,75,0.7), 0 2px 12px rgba(0,0,0,0.2);
}
.notif-item:active { opacity: 0.85; }
.notif-item-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(200,168,75,0.14) 0%, rgba(200,168,75,0.06) 100%);
  border: 1px solid rgba(200,168,75,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-top: 1px;
}
.notif-item--unread .notif-item-icon {
  background: linear-gradient(135deg, rgba(200,168,75,0.22) 0%, rgba(200,168,75,0.1) 100%);
  border-color: rgba(200,168,75,0.4);
  box-shadow: 0 0 12px rgba(200,168,75,0.15);
}
.notif-item-body { flex: 1; min-width: 0; }
.notif-item-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.notif-item-sub   { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.55; margin-bottom: 6px; }
.notif-item-time  { font-size: 11px; color: rgba(255,255,255,0.25); }
.notif-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 24px; text-align: center;
}
.notif-empty-icon {
  width: 76px; height: 76px; border-radius: 50%; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(200,168,75,0.12) 0%, rgba(200,168,75,0.05) 100%);
  border: 1px solid rgba(200,168,75,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(200,168,75,0.5);
  box-shadow: 0 0 0 8px rgba(200,168,75,0.05), 0 0 32px rgba(200,168,75,0.1);
}
.notif-empty-title { font-family: Georgia, serif; font-size: 1.2rem; font-weight: bold; color: var(--white); margin-bottom: 10px; }
.notif-empty-sub   { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; max-width: 240px; }

/* Screen header (shared) */
.screen-hdr {
  display: flex; align-items: center; gap: 12px;
  padding: 56px 20px 16px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--bg); z-index: 10;
  position: relative;
}
.screen-hdr-title { flex: 1; font-family: Georgia, serif; font-size: 1.2rem; font-weight: bold; color: var(--white); }
.notif-clear-all {
  background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.22);
  border-radius: 20px; font-size: 11px; font-weight: 700; color: var(--gold);
  cursor: pointer; padding: 5px 14px; letter-spacing: 0.04em;
  transition: background 0.15s;
}
.notif-clear-all:active { background: rgba(200,168,75,0.15); }
.screen-hdr-icon-btn {
  background: none; border: none; color: var(--gray); cursor: pointer;
  padding: 8px; display: flex; align-items: center; justify-content: center;
  position: relative; margin-right: -4px;
}
/* Override tab header justify for my-rides (has bell icon) */
#screen-my-rides .screen-tab-header {
  justify-content: space-between;
  background: radial-gradient(ellipse 200% 130% at 50% 0%, rgba(200,168,75,0.14) 0%, rgba(200,168,75,0.03) 55%, transparent 75%);
}
#screen-my-rides .screen-hdr-icon-btn {
  width: 38px; height: 38px; border-radius: 50%; padding: 0;
  background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.18);
  color: rgba(255,255,255,0.65);
}


/* ── Booking Amendment Sheet ─────────────────────────────────────────────── */

.amend-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.amend-overlay.visible { opacity: 1; pointer-events: all; }

.amend-sheet {
  position: fixed; bottom: -2px; left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%; max-width: 430px;
  background: var(--surface); border-radius: 24px 24px 0 0;
  border: 1px solid var(--border); border-bottom: none;
  padding: 12px 20px 48px; z-index: 201;
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
  max-height: 85vh; overflow-y: auto;
}
.amend-sheet.visible { transform: translateX(-50%) translateY(0); }

.amend-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--border); margin: 0 auto 20px;
}

.amend-hdr { margin-bottom: 20px; }
.amend-title {
  font-family: Georgia, serif; font-size: 1.15rem;
  font-weight: bold; color: var(--white); margin-bottom: 4px;
}
.amend-ref { font-size: 12px; color: var(--gold); letter-spacing: .04em; font-weight: 600; }

.amend-fields { display: flex; flex-direction: column; gap: 14px; }

.amend-field-row { display: flex; flex-direction: column; gap: 6px; }
.amend-label {
  font-size: 12px; color: var(--gray); text-transform: uppercase;
  letter-spacing: .06em; font-weight: 600;
}
.amend-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: #4a5a6a; }

.amend-input {
  background: var(--bg); color: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color .2s; width: 100%;
}
.amend-input:focus { border-color: var(--gold); }
.amend-input--short { max-width: 80px; }
.amend-textarea { resize: none; line-height: 1.5; }

.amend-footer {
  display: flex; gap: 10px; margin-top: 24px;
}
.amend-cancel-btn { flex: 1; }
.amend-save-btn   { flex: 2; }

/* ══════════════════════════════════════════════════
   VISUAL POLISH — v47
══════════════════════════════════════════════════ */

/* Forgot / Reset password auth wrapper (previously unstyled) */
.auth-screen-inner {
  flex: 1; overflow-y: auto;
  padding: 60px 28px 40px;
  display: flex; flex-direction: column;
}
.auth-logo-wrap {
  display: flex; justify-content: center; margin-bottom: 28px;
}
.auth-logo {
  width: 60px; height: 60px; object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(200,168,75,0.3));
}
.auth-sub { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* Book-Service screen: use standard header */
.bsvc-hero-header {
  display: flex; align-items: center; gap: 12px;
  padding: 56px 20px 16px;
  background: var(--bg); flex-shrink: 0; position: relative; z-index: 10;
}
.bsvc-hero-header::after {
  content: ''; position: absolute; bottom: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.25), transparent);
}

/* Splash sep spacing */
.splash-sep { margin-top: 28px !important; margin-bottom: 20px !important; }

/* My rides tab header — title centered between left edge and bell btn */
#screen-my-rides .screen-tab-header .screen-tab-title {
  flex: 1; text-align: center; font-size: 1.3rem;
}

/* ══════════════════════════════════════════════════
   ENRICHED UI — HERO, FLEET, STATS, SPLASH RINGS
══════════════════════════════════════════════════ */


/* ── Auth trust chips ─────────────────────────────── */
.auth-trust-row {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 4px;
}
.auth-trust-chip {
  display: flex; align-items: center; gap: 5px;
  background: rgba(200,168,75,0.07); border: 1px solid rgba(200,168,75,0.2);
  border-radius: 20px; padding: 5px 12px;
  font-size: 11px; font-weight: 600; color: rgba(200,168,75,0.85);
  letter-spacing: 0.02em;
}

/* ── Home hero booking card ──────────────────────── */
.home-hero-card {
  margin: 8px 16px 20px;
  background: linear-gradient(120deg, #09111F 0%, #0d1828 40%, #111e30 100%);
  border: 1px solid rgba(200,168,75,0.28);
  border-radius: 22px;
  padding: 24px 20px 0 22px;
  overflow: visible;
  position: relative;
  cursor: pointer;
  min-height: 182px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 12px 48px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
}
.home-hero-card:active { border-color: rgba(200,168,75,0.65); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.home-hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(200,168,75,0.55) 40%, rgba(200,168,75,0.55) 60%, transparent 95%);
  border-radius: 22px 22px 0 0;
}
.home-hero-glow {
  position: absolute; right: -20px; top: -30px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.13) 0%, transparent 60%);
  pointer-events: none;
}
.home-hero-content { position: relative; z-index: 1; }
.home-hero-eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(200,168,75,0.75); margin-bottom: 10px;
  display: flex; align-items: center; gap: 7px;
}
.home-hero-eyebrow::before {
  content: ''; display: inline-block; width: 18px; height: 1px; background: rgba(200,168,75,0.5);
}
.home-hero-title {
  font-family: Georgia, serif; font-size: 1.6rem; font-weight: bold;
  color: var(--white); line-height: 1.2; margin-bottom: 16px;
}
.home-hero-cta-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.home-hero-cta {
  background: linear-gradient(135deg, #C8A84B, #E0C06A);
  color: #09111F;
  border-radius: 20px; padding: 9px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(200,168,75,0.3);
}
.home-hero-price {
  font-size: 12px; color: rgba(255,255,255,0.4); font-style: italic;
}
.home-hero-car {
  position: absolute; right: -14px; bottom: -60px;
  width: 280px; pointer-events: none; z-index: 10;
}
.home-hero-car-img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(-8px 14px 28px rgba(0,0,0,0.75)) drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

/* ── Fleet showcase ───────────────────────────────── */
.home-fleet-row {
  display: flex; gap: 12px; padding: 0 20px 8px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.home-fleet-row::-webkit-scrollbar { display: none; }
.home-fleet-card {
  flex-shrink: 0; width: 140px;
  background: linear-gradient(150deg, #0e1826 0%, #111C2E 100%);
  border: 1px solid rgba(200,168,75,0.14);
  border-radius: 18px; padding: 14px 14px 14px;
  cursor: pointer; transition: border-color 0.15s, background 0.15s;
  position: relative; overflow: hidden;
}
.home-fleet-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(200,168,75,0.3) 50%, transparent 90%);
}
.home-fleet-card:active { border-color: rgba(200,168,75,0.55); }
.home-fleet-card--premier { border-color: rgba(200,168,75,0.2); background: linear-gradient(150deg, #0f1929 0%, #131e30 100%); }
.home-fleet-card--icon {
  border-color: rgba(200,168,75,0.28);
  background: linear-gradient(145deg, #111C2E 0%, #0e1829 50%, #141f30 100%);
}
.home-fleet-card--icon::before { background: linear-gradient(90deg, transparent 5%, rgba(200,168,75,0.5) 40%, rgba(200,168,75,0.5) 60%, transparent 95%); }
.home-fleet-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); margin-bottom: 10px;
  box-shadow: 0 0 8px rgba(200,168,75,0.5);
}
.home-fleet-card--premier .home-fleet-dot { background: #D4B86A; box-shadow: 0 0 8px rgba(212,184,106,0.5); }
.home-fleet-card--icon .home-fleet-dot { background: #E8CF80; box-shadow: 0 0 12px rgba(232,207,128,0.7); }
.home-fleet-name {
  font-family: Georgia, serif; font-size: 0.92rem; font-weight: bold;
  color: var(--white); margin-bottom: 2px;
}
.home-fleet-sub {
  font-size: 9px; color: rgba(255,255,255,0.38); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 8px;
}
.home-fleet-car-svg {
  width: 100%; height: 42px; display: block; margin-bottom: 8px;
}
.home-fleet-car-img {
  width: 100%; height: 140px; object-fit: contain;
  display: block; margin-bottom: 8px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.6));
}
.home-fleet-price {
  font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.02em;
}

/* ── Stats / trust bar ────────────────────────────── */
.home-stats-bar {
  display: flex; align-items: center;
  margin: 8px 16px 16px;
  background: linear-gradient(135deg, rgba(200,168,75,0.1) 0%, rgba(200,168,75,0.04) 50%, var(--surface) 100%);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 16px; padding: 18px 0; overflow: hidden;
  position: relative;
}
.home-stats-bar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(200,168,75,0.3) 40%, rgba(200,168,75,0.3) 60%, transparent 90%);
}
.home-stat-item { flex: 1; text-align: center; padding: 0 4px; }
.home-stat-val {
  font-family: Georgia, serif; font-size: 1.1rem; font-weight: bold;
  color: var(--gold); line-height: 1;
}
.home-stat-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 4px;
}
.home-stat-sep {
  width: 1px; height: 28px; background: rgba(255,255,255,0.07); flex-shrink: 0;
}

/* ── Package nav arrows & dots ───────────────────── */
.pkg-nav-arrows {
  display: flex; align-items: center; gap: 6px; margin-left: auto;
}
.pkg-nav-btn {
  background: none; border: none; padding: 4px;
  color: var(--white); cursor: pointer; line-height: 0;
  transition: opacity 0.2s;
}
.pkg-dots { display: flex; gap: 5px; align-items: center; }
.pkg-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gray); transition: background 0.2s, transform 0.2s;
}
.pkg-dot.active { background: var(--gold-accent); transform: scale(1.3); }

/* ── Package Detail Screen ────────────────────────── */
.pkg-detail-hero { height: 52vh; min-height: 280px; }
.pkg-hero-badge {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--gold-accent);
  border: 1px solid rgba(200,168,75,0.5);
  border-radius: 20px; padding: 4px 14px;
  background: rgba(200,168,75,0.08);
}
.pkg-hero-class {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}
.pkg-hero-img {
  width: 100%; max-width: 280px;
  object-fit: contain; margin: 0 auto 16px;
  display: block;
}
.pkg-hero-price {
  font-family: Georgia, serif; font-size: 1.2rem;
  color: var(--gold-accent);
}

.pkg-body { padding: 24px 20px; }

.pkg-section-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gray);
  margin: 0 0 14px;
}

.pkg-features-list { display: flex; flex-direction: column; gap: 10px; }

.pkg-feature-row {
  display: flex; align-items: flex-start; gap: 12px;
}
.pkg-feature-check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-accent);
}
.pkg-feature-row span {
  font-size: 14px; color: var(--white); line-height: 1.4; padding-top: 3px;
}

.pkg-vehicle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.pkg-vehicle-img {
  width: 100%; object-fit: contain;
  background: var(--surface-2, #111c2e);
  padding: 16px; max-height: 160px;
}
.pkg-vehicle-info { padding: 16px; }
.pkg-vehicle-name {
  font-family: Georgia, serif; font-size: 1.05rem;
  color: var(--white); margin-bottom: 2px;
}
.pkg-vehicle-class {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-accent); margin-bottom: 10px;
}
.pkg-vehicle-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

.pkg-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pkg-tag {
  font-size: 12px; font-weight: 600;
  color: var(--white);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 14px;
}

/* ── Home journey type tiles ─────────────────────── */
.home-jt-row {
  display: flex; gap: 10px; padding: 0 16px 4px;
  overflow-x: auto; scrollbar-width: none;
}
.home-jt-row::-webkit-scrollbar { display: none; }
.home-jt-tile {
  display: flex; flex-direction: column; align-items: center; gap: 11px;
  flex-shrink: 0; cursor: pointer;
  padding: 22px 18px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; min-width: 88px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.home-jt-tile:active { border-color: rgba(200,168,75,0.5); background: #111c2e; transform: scale(0.97); }
.home-jt-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,168,75,0.14) 0%, rgba(200,168,75,0.05) 100%);
  border: 1px solid rgba(200,168,75,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-accent);
  box-shadow: 0 2px 12px rgba(200,168,75,0.1);
}
.home-jt-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.03em;
  color: var(--white); text-align: center; white-space: nowrap;
}

/* ── Book a Journey Screen ────────────────────────── */
/* ── Chauffeur booking screen shell ─────── */
#screen-chauffeur-journey {
  background: radial-gradient(ellipse 200% 140% at 50% 0%, rgba(200,168,75,0.16) 0%, rgba(200,168,75,0.03) 55%, transparent 75%);
}
.bl-body { flex: 1; overflow-y: auto; padding-bottom: 8px; }

/* Header */
.bj-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 52px 16px 8px; flex-shrink: 0; position: relative;
}
.bj-header::after {
  content: '';
  position: absolute; bottom: 0; left: 16px; right: 16px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.18), transparent);
}
.bj-title {
  font-family: Georgia, serif; font-size: 1.45rem;
  color: var(--white); font-weight: normal; margin: 0;
  letter-spacing: 0.01em;
}

/* Journey type tab pills */
.bl-tabs-row {
  display: flex; gap: 8px; padding: 10px 16px 14px;
  overflow-x: auto; scrollbar-width: none; flex-shrink: 0;
}
.bl-tabs-row::-webkit-scrollbar { display: none; }
.bl-tab {
  flex-shrink: 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px; padding: 8px 16px;
  color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 500;
  cursor: pointer; white-space: nowrap; transition: all 0.15s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.bl-tab.active {
  background: linear-gradient(135deg, rgba(200,168,75,0.16) 0%, rgba(200,168,75,0.07) 100%);
  border-color: rgba(200,168,75,0.45);
  color: var(--gold); font-weight: 700;
  box-shadow: 0 2px 10px rgba(200,168,75,0.12);
}
.bl-tab:active { opacity: 0.75; }

/* Passenger chip */
.bl-pax-row { padding: 0 16px 10px; flex-shrink: 0; display: flex; gap: 10px; }
.bl-pax-row .bl-pax-btn { flex: 1; justify-content: center; }
.bl-pax-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(200,168,75,0.13) 0%, rgba(200,168,75,0.06) 100%);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 50px; padding: 9px 16px 9px 12px;
  color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2), inset 0 1px 0 rgba(200,168,75,0.12);
}
.bl-pax-btn svg:first-child { color: var(--gold); }
.bl-pax-btn svg:last-child { color: rgba(200,168,75,0.6); }
.bl-pax-btn:active { background: linear-gradient(135deg, rgba(200,168,75,0.22) 0%, rgba(200,168,75,0.1) 100%); box-shadow: none; }

/* Route card */
.bl-route-card {
  margin: 0 16px 4px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, var(--surface) 100%);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
}
.bl-route-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(200,168,75,0.3) 50%, transparent 90%);
}

/* Date/time row */
.bl-dt-row { display: flex; gap: 10px; margin: 10px 16px 0; }
.bl-dt-card {
  flex: 1;
  background: linear-gradient(135deg, rgba(200,168,75,0.07) 0%, var(--surface) 100%);
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: 14px; padding: 14px 16px; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.bl-dt-card:focus-within {
  border-color: rgba(200,168,75,0.5);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.07);
}
input.bj-airport-input, select.bj-airport-input {
  background: transparent; border: none; outline: none;
  width: 100%; padding: 0; margin: 0;
  -webkit-appearance: none; appearance: none;
  color: var(--white); font-size: 14px; font-weight: 600;
  font-family: inherit;
}
input.bj-airport-input::placeholder { color: rgba(255,255,255,0.3); font-weight: 400; }
select.bj-airport-input option { background: #09111F; color: #fff; }

/* Legacy bj-pills-row (kept for compat) */
.bj-pills-row {
  display: flex; gap: 10px; padding: 12px 16px 20px;
}
.bj-pill {
  display: flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 50px; padding: 9px 14px;
  color: var(--white); font-size: 13px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
}
.bj-pill:active { background: var(--surface-2, #111c2e); }

.bj-locations { padding: 14px 18px 10px; }
.bj-field { padding: 4px 0 2px; }
.bj-field-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(200,168,75,0.7); margin-bottom: 6px; display: block;
}
.bj-field-input {
  width: 100%; background: none; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white); font-size: 16px; padding: 8px 0 12px;
  outline: none; caret-color: var(--gold-accent);
}
.bj-field-input::placeholder { color: rgba(255,255,255,0.22); }
.bj-field-input:focus { border-bottom-color: rgba(200,168,75,0.5); }

.bj-field-row { display: flex; align-items: flex-end; gap: 0; }
.bj-field-row .bj-field-input { flex: 1; }
.bj-locate-btn {
  flex-shrink: 0; background: none; border: none; cursor: pointer;
  color: var(--gold); padding: 8px 0 13px 12px;
  opacity: 0.65; transition: opacity 0.15s; line-height: 1;
  display: flex; align-items: center;
}
.bj-locate-btn:active, .bj-locate-btn:hover { opacity: 1; }
.bj-locate-btn.loading { opacity: 0.3; pointer-events: none; }

.bj-swap-row {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 0;
}
.bj-field-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07), transparent);
}
.bj-swap-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.22);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; margin-left: auto;
}
.bj-swap-btn:active { background: rgba(200,168,75,0.18); }

.bj-suggestions.location-suggestions {
  position: static; box-shadow: none; border: none;
  background: none; margin: 0 16px; border-radius: 0;
}

.bj-recents { padding: 20px 16px 0; }
.bj-recents-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); opacity: 0.7; margin-bottom: 10px;
}
.bj-recents-empty {
  font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.5;
}
.bj-recent-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--border); cursor: pointer;
}
.bj-recent-item:last-child { border-bottom: none; }
.bj-recent-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.bj-recent-name { font-size: 14px; color: var(--white); }
.bj-recent-sub  { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 2px; }

.bj-price-est {
  margin: 12px 16px 0;
  background: linear-gradient(135deg, rgba(200,168,75,0.09) 0%, rgba(200,168,75,0.04) 100%);
  border: 1px solid rgba(200,168,75,0.22);
  border-radius: 16px;
  padding: 14px 16px 12px;
  position: relative; overflow: hidden;
}
.bj-price-est::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(200,168,75,0.45) 50%, transparent 90%);
}
.bj-price-est-tiers {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
.bj-price-tier {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 6px 4px;
  border-radius: 8px;
  transition: background 0.15s;
}
.bj-price-tier:active { background: rgba(200,168,75,0.12); }
.bj-price-tier-name {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 5px;
}
.bj-price-tier-val {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.bj-price-tier-models {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  margin-top: 4px;
  white-space: nowrap;
}
.bj-price-est-note {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin: 10px 0 0;
  letter-spacing: 0.02em;
}
.bj-notes-wrap { padding: 12px 16px 4px; }
.bj-notes-input { width: 100%; background: var(--surface-2, rgba(255,255,255,0.05)); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #fff; font-size: 13px; padding: 10px 12px; resize: none; line-height: 1.5; box-sizing: border-box; }
.bj-notes-input::placeholder { color: rgba(255,255,255,0.25); }
.bj-notes-input:focus { outline: none; border-color: var(--gold); }
.bj-price-est-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 0;
}
.bj-price-est-loading-txt { font-size: 12px; color: rgba(255,255,255,0.45); }
.bj-price-est-spinner {
  width: 12px; height: 12px;
  border: 2px solid rgba(200,168,75,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.bj-footer {
  position: sticky; bottom: 0; padding: 16px 20px 36px;
  background: linear-gradient(to top, var(--bg) 65%, transparent);
  margin-top: auto;
}
.bj-continue-btn {
  width: 100%;
  background: linear-gradient(135deg, #C8A84B 0%, #E0C06A 50%, #C8A84B 100%);
  background-size: 200% 100%;
  color: #09111F; font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em; border-radius: 14px; padding: 16px;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(200,168,75,0.35), 0 1px 0 rgba(255,255,255,0.15) inset;
  transition: box-shadow 0.15s, transform 0.1s;
}
.bj-continue-btn:active { transform: scale(0.98); box-shadow: 0 2px 10px rgba(200,168,75,0.25); }

/* ── Journey/Pax bottom sheets ───────────────────── */
.bj-sheet-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 200;
}
.bj-sheet-overlay.visible { display: block; }
.bj-sheet {
  position: fixed; bottom: -100%; left: 0; right: 0;
  background: #C9A84C; border-radius: 20px 20px 0 0;
  border-top: none;
  z-index: 201; padding: 12px 0 40px;
  transition: bottom 0.3s cubic-bezier(0.4,0,0.2,1);
}
.bj-sheet.visible { bottom: 0; }
.bj-sheet-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: rgba(0,0,0,0.25); margin: 0 auto 16px;
}
.bj-sheet-title {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(0,0,0,0.5);
  padding: 0 20px 8px;
}
.bj-sheet-options { display: flex; flex-direction: column; }
.bj-sheet-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.bj-sheet-option:last-child { border-bottom: none; }
.bj-sheet-option:active { background: rgba(0,0,0,0.07); }
.bj-option-name { font-size: 15px; color: #1a1000; font-weight: 500; }
.bj-option-sub  { font-size: 12px; color: rgba(0,0,0,0.5); margin-top: 2px; }
.bj-option-check {
  margin-left: auto; color: #1a1000;
  font-size: 16px; font-weight: bold; flex-shrink: 0;
}

/* Guest sheet — gold style */
.bj-sheet--guest {
  background: #C9A84C;
  border-radius: 24px 24px 0 0;
  padding-bottom: 56px;
  max-height: 88vh; overflow-y: auto;
}
.bj-pax-opt { padding: 12px 20px !important; }
.bj-pax-divider { height: 1px; background: rgba(0,0,0,0.12); margin: 4px 0; }
.bj-sheet--guest .bj-sheet-handle { background: rgba(0,0,0,0.25); }
.bj-guest-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 4px 20px 20px; gap: 16px;
}
.bj-guest-title {
  font-size: 1.25rem; font-weight: 700;
  color: #1a1000; margin: 0 0 10px; line-height: 1.3;
}
.bj-guest-sub { font-size: 14px; color: rgba(0,0,0,0.55); line-height: 1.5; margin: 0; }
.bj-guest-close {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,0,0,0.12); border: none;
  color: #1a1000; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.bj-sheet--guest .bj-sheet-options { border-top: 1px solid rgba(0,0,0,0.1); }
.bj-sheet--guest .bj-sheet-option {
  color: #1a1000; padding: 20px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.bj-sheet--guest .bj-sheet-option:last-child { border-bottom: none; }
.bj-sheet--guest .bj-sheet-option:active { background: rgba(0,0,0,0.07); }
.bj-sheet--guest .bj-option-name { font-size: 16px; color: #1a1000; font-weight: 500; }
.bj-sheet--guest .bj-option-check { color: #1a1000; }
.bj-guest-form { padding: 16px 20px 0; }
.bj-guest-form-field { display: flex; flex-direction: column; }
.bj-guest-form .bj-field-label { color: rgba(0,0,0,0.5); }
.bj-guest-form .bj-field-input { color: #1a1000; border-bottom-color: rgba(0,0,0,0.25); }
.bj-guest-form .bj-field-input::placeholder { color: rgba(0,0,0,0.3); }
.bj-guest-form .bj-field-input:focus { border-bottom-color: #1a1000; }

/* ── Details screen route summary ────────────────── */
.details-route-summary {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px; margin: 0 0 16px;
}
.details-route-row {
  display: flex; align-items: center; gap: 10px; padding: 6px 0;
}
.details-route-val {
  flex: 1; font-size: 14px; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.details-route-edit {
  background: none; border: none; color: var(--gold-accent);
  font-size: 13px; font-weight: 600; cursor: pointer; flex-shrink: 0;
}

/* ── Journey Type Detail ─────────────────── */
.jt-detail-screen.active {
  flex-direction: column; overflow: hidden;
}
.jt-hero {
  position: relative; flex-shrink: 0;
  height: 58vh; min-height: 300px;
  display: flex; flex-direction: column; overflow: hidden;
}
.jt-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.jt-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,12,22,0.25) 0%, rgba(5,12,22,0.78) 100%);
}
.jt-hero-header {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 52px 16px 0;
}
.jt-hero-back {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.35); border: none; backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer; flex-shrink: 0;
}
.jt-hero-label {
  font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500;
}
.jt-hero-headline {
  position: relative; z-index: 2;
  margin-top: auto; padding: 0 20px 22px;
  font-family: Georgia, serif; font-size: 30px; font-weight: normal;
  color: #fff; line-height: 1.25; white-space: pre-line;
}
.jt-detail-content {
  flex: 1; overflow-y: auto; padding: 24px 20px 0;
}
.jt-detail-desc {
  font-size: 15px; color: var(--gray); line-height: 1.75; margin: 0 0 8px;
}
.jt-detail-features { display: flex; flex-direction: column; }
.jt-detail-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.07);
}
.jt-detail-feature-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-accent);
}
.jt-detail-feature-icon svg { width: 20px; height: 20px; }
.jt-detail-feature-text { flex: 1; padding-top: 2px; }
.jt-detail-feature-title {
  font-size: 15px; font-weight: 600; color: var(--white); margin: 0 0 5px;
}
.jt-detail-feature-desc {
  font-size: 13px; color: var(--gray); line-height: 1.6; margin: 0;
}

/* ── Corporate Enquiry Form ──────────────── */
.corp-form-body { padding: 20px 20px 0; overflow-y: auto; flex: 1; }
.corp-form-intro {
  font-size: 14px; color: var(--gray); line-height: 1.7;
  margin: 0 0 28px;
}
.corp-field-group { margin-bottom: 20px; }
.corp-label {
  display: block; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 8px;
}
.corp-req { color: var(--gold-accent); }
.corp-input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 13px 14px; font-size: 15px; color: var(--white);
  outline: none; box-sizing: border-box; font-family: inherit;
  transition: border-color 0.2s;
}
.corp-input:focus { border-color: var(--gold-accent); }
.corp-input::placeholder { color: rgba(255,255,255,0.25); }
.corp-textarea { resize: none; min-height: 84px; }
.corp-error {
  font-size: 13px; color: #ff6b6b;
  background: rgba(255,107,107,0.1); border-radius: 8px;
  padding: 10px 12px; margin-bottom: 14px;
}
.corp-success {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 32px; text-align: center;
}
.corp-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-accent); margin-bottom: 24px;
}
.corp-success-title {
  font-family: Georgia, serif; font-size: 24px; font-weight: normal;
  color: var(--white); margin: 0 0 14px;
}
.corp-success-desc {
  font-size: 15px; color: var(--gray); line-height: 1.7; margin: 0;
}

/* ── FAQ Screen ──────────────────────────── */
.faq-body { padding: 12px 20px 0; overflow-y: auto; }
.faq-category {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-accent);
  margin: 24px 0 8px;
}
.faq-group {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border); cursor: pointer;
  padding: 16px;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--white);
}
.faq-chevron {
  color: var(--gray); font-size: 18px; flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-answer {
  font-size: 14px; color: var(--gray); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 200px; padding-top: 10px; }

/* ── Push Notification Prompt ────────────── */
.push-prompt-sheet {
  background: var(--surface); border-radius: 24px 24px 0 0;
  padding: 28px 24px 48px; width: 100%; text-align: center;
  border-top: 1px solid var(--border);
}
.push-prompt-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-accent); margin: 0 auto 20px;
}
.push-prompt-title {
  font-family: Georgia, serif; font-size: 22px; font-weight: normal;
  color: var(--white); margin: 0 0 10px;
}
.push-prompt-sub {
  font-size: 14px; color: var(--gray); line-height: 1.7; margin: 0 0 24px;
}
.push-prompt-btn { width: 100%; margin-bottom: 12px; }
.push-prompt-skip {
  background: none; border: none; color: var(--gray);
  font-size: 14px; cursor: pointer; padding: 4px;
}

/* ── Confirmation Screen ─────────────────── */
@keyframes conf-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(2.1); opacity: 0;   }
  100% { transform: scale(2.1); opacity: 0;   }
}
#screen-confirmation {
  background: radial-gradient(ellipse 200% 28% at 50% 0%, rgba(200,168,75,0.12) 0%, transparent 55%);
}
.conf-hero {
  display: flex; flex-direction: column; align-items: center;
  padding: 52px 24px 32px; text-align: center; position: relative;
}
.conf-pulse-ring {
  position: absolute; top: 52px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 84px; border-radius: 50%;
  border: 2px solid rgba(200,168,75,0.6);
  animation: conf-pulse 2.2s ease-out infinite;
}
.conf-check-circle {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,168,75,0.28) 0%, rgba(200,168,75,0.1) 100%);
  border: 2px solid rgba(200,168,75,0.6);
  box-shadow: 0 0 0 8px rgba(200,168,75,0.07), 0 0 32px rgba(200,168,75,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 22px; position: relative; z-index: 1;
}
.conf-title {
  font-family: Georgia, serif; font-size: 27px; font-weight: normal;
  color: var(--white); margin: 0 0 8px; letter-spacing: 0.01em;
}
.conf-sub {
  font-size: 14px; color: rgba(255,255,255,0.42); line-height: 1.6; margin: 0;
}
.conf-ref-card {
  margin: 0 20px 12px;
  background: linear-gradient(135deg, rgba(200,168,75,0.12) 0%, rgba(200,168,75,0.04) 100%);
  border: 1px solid rgba(200,168,75,0.35); border-radius: 16px;
  padding: 18px 20px; text-align: center;
  position: relative; overflow: hidden;
}
.conf-ref-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(200,168,75,0.55) 50%, transparent 90%);
}
.conf-ref-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(200,168,75,0.7); margin: 0 0 8px;
}
.conf-ref-value {
  font-family: Georgia, serif; font-size: 24px; color: var(--gold);
  letter-spacing: 0.06em; margin: 0;
}
.conf-summary-card {
  margin: 0 20px 12px;
  background: linear-gradient(135deg, rgba(200,168,75,0.06) 0%, var(--surface) 70%);
  border: 1px solid rgba(200,168,75,0.16); border-radius: 16px; padding: 16px 18px;
}
.conf-summary-row {
  display: flex; align-items: flex-start; gap: 14px;
}
.conf-summary-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px;
}
.conf-dot-pickup  { background: var(--gold); box-shadow: 0 0 6px rgba(200,168,75,0.6); }
.conf-dot-dropoff { background: transparent; border: 2px solid rgba(255,255,255,0.3); }
.conf-summary-line {
  width: 2px; height: 20px;
  background: linear-gradient(to bottom, rgba(200,168,75,0.4), rgba(255,255,255,0.1));
  margin: 4px 0 4px 4px;
}
.conf-summary-label {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.07em; margin: 0 0 4px;
}
.conf-summary-val {
  font-size: 14px; color: var(--white); margin: 0; line-height: 1.4;
}
.conf-details-card {
  margin: 0 20px 12px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.conf-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 18px; border-bottom: 1px solid var(--border);
}
.conf-detail-row:last-child { border-bottom: none; }
.conf-detail-label { font-size: 13px; color: rgba(255,255,255,0.45); }
.conf-detail-val   { font-size: 13px; color: var(--white); font-weight: 600; text-align: right; }
#confirm-amount    { color: var(--gold); font-weight: 700; font-size: 14px; }
.conf-countdown-card {
  margin: 0 20px 12px;
  background: linear-gradient(135deg, rgba(200,168,75,0.14) 0%, rgba(200,168,75,0.05) 100%);
  border: 1px solid rgba(200,168,75,0.35); border-radius: 16px;
  padding: 18px 20px; text-align: center;
  position: relative; overflow: hidden;
}
.conf-countdown-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(200,168,75,0.5) 50%, transparent 90%);
}
.conf-countdown-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(200,168,75,0.75); margin: 0 0 6px;
}
.conf-countdown-value {
  font-family: Georgia, serif; font-size: 30px; color: var(--white); margin: 0;
}
.conf-driver-card {
  margin: 0 20px 12px;
  background: linear-gradient(135deg, rgba(200,168,75,0.07) 0%, var(--surface) 100%);
  border: 1px solid rgba(200,168,75,0.18); border-radius: 16px;
  padding: 16px 18px; display: flex; align-items: center; gap: 14px;
}
.conf-driver-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(200,168,75,0.18) 0%, rgba(200,168,75,0.07) 100%);
  border: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.conf-driver-info { flex: 1; min-width: 0; }
.conf-driver-name {
  font-size: 15px; font-weight: 600; color: var(--white); margin: 0 0 3px;
}
.conf-driver-vehicle { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.conf-driver-status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15); flex-shrink: 0;
}
.conf-driver-status-dot.active {
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.5);
}
.conf-actions {
  margin: 4px 20px 40px; display: flex; flex-direction: column; gap: 10px;
}

/* ── Confirm Action Sheet ────────────────── */
.confirm-action-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 400; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.confirm-action-overlay.visible { opacity: 1; pointer-events: auto; }

.confirm-action-sheet {
  position: fixed; bottom: 0; left: 0; right: 0;
  max-width: 430px; margin: 0 auto;
  background: var(--surface); border-radius: 20px 20px 0 0;
  z-index: 401; transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.32,0,0.67,0);
  padding: 0 20px calc(28px + env(safe-area-inset-bottom, 0px));
}
.confirm-action-sheet.visible {
  transform: translateY(0);
  transition: transform 0.28s cubic-bezier(0.33,1,0.68,1);
}
.confirm-action-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.15); margin: 10px auto 20px;
}
.confirm-action-title {
  font-size: 16px; font-weight: 700; color: var(--white);
  text-align: center; margin: 0 0 6px;
}
.confirm-action-sub {
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-align: center; margin: 0 0 20px; line-height: 1.4;
}
.confirm-action-btns { display: flex; flex-direction: column; gap: 10px; }
.confirm-action-ok {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 15px; background: #8B2020; color: #fff;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: opacity 0.15s; font-family: inherit;
}
.confirm-action-ok:active { opacity: 0.8; }
.confirm-action-cancel {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 14px; background: transparent; color: var(--gold);
  border: 1px solid var(--gold-border); border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-family: inherit;
}
.confirm-action-cancel:active { background: var(--gold-glow); }

/* ── Confirmation Receipt Link Button ───── */
.conf-receipt-link {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: 1px solid rgba(200,168,75,0.35);
  border-radius: 10px; padding: 10px 18px;
  color: var(--gold); font-size: 13px; font-weight: 600;
  font-family: inherit; cursor: pointer; letter-spacing: 0.02em;
  transition: background 0.15s, border-color 0.15s;
}
.conf-receipt-link:active { background: rgba(200,168,75,0.08); }
.conf-receipt-link svg { flex-shrink: 0; }

/* ── Receipt Sheet ───────────────────────── */
.receipt-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 320; opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.receipt-overlay.visible { opacity: 1; pointer-events: auto; }

.receipt-sheet {
  position: fixed; bottom: 0; left: 0; right: 0;
  max-width: 430px; margin: 0 auto;
  background: var(--surface); border-radius: 20px 20px 0 0;
  z-index: 321; transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32,0,0.67,0);
  max-height: 90vh; overflow-y: auto; padding-bottom: env(safe-area-inset-bottom, 16px);
}
.receipt-sheet.visible {
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.33,1,0.68,1);
}

.receipt-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.15); margin: 10px auto 0;
}

.receipt-header {
  padding: 20px 20px 16px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.receipt-brand {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--gold); margin: 0 0 6px; text-transform: uppercase;
}
.receipt-title {
  font-size: 17px; font-weight: 700; color: var(--white);
  margin: 0 0 14px; letter-spacing: 0.01em;
}
.receipt-ref-box {
  display: inline-block; background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.25); border-radius: 8px;
  padding: 6px 16px;
}
.receipt-ref-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45); text-transform: uppercase; margin: 0;
}
.receipt-ref-val {
  font-size: 14px; font-weight: 700; color: var(--gold); margin: 2px 0 0;
  letter-spacing: 0.05em;
}

.receipt-body { padding: 8px 20px 4px; }

.rcpt-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 12px;
}
.rcpt-row:last-child { border-bottom: none; }
.rcpt-label {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.07em; flex-shrink: 0;
  padding-top: 1px;
}
.rcpt-val {
  font-size: 13px; font-weight: 600; color: var(--white);
  text-align: right; line-height: 1.35;
}
.rcpt-amount .rcpt-val {
  font-size: 15px; font-weight: 700; color: var(--gold);
}
.rcpt-divider {
  height: 1px; background: rgba(255,255,255,0.1); margin: 4px 0;
}

.receipt-footer-note {
  text-align: center; font-size: 11px; color: rgba(255,255,255,0.35);
  padding: 8px 20px 4px; letter-spacing: 0.01em;
}

.receipt-actions {
  display: flex; flex-direction: column; gap: 10px;
  padding: 12px 20px 20px;
}

/* ── Points Earned Toast ─────────────────── */
@keyframes pts-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes pts-slide-down {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(100%); opacity: 0; }
}
.pts-earned-overlay {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(200%);
  z-index: 600; pointer-events: none; transition: none;
  width: calc(100% - 48px); max-width: 380px;
}
.pts-earned-overlay.visible {
  animation: pts-slide-up 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards,
             pts-slide-down 0.35s ease 3.15s forwards;
}
.pts-earned-inner {
  background: var(--surface); border: 1px solid rgba(200,168,75,0.4);
  border-radius: 16px; padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}
.pts-earned-icon {
  font-size: 28px; flex-shrink: 0; line-height: 1;
}
.pts-earned-body { min-width: 0; }
.pts-earned-val {
  font-family: Georgia, serif; font-size: 22px; color: var(--gold-accent);
  margin: 0 0 2px; font-weight: normal;
}
.pts-earned-lbl {
  font-size: 13px; color: var(--gray); margin: 0;
}

/* ── Rewards Benefits Card ───────────────── */
.rwd-benefits-card {
  margin: 0 20px 8px;
  background: linear-gradient(135deg, rgba(200,168,75,0.09) 0%, var(--surface) 60%);
  border: 1px solid rgba(200,168,75,0.2); border-radius: 16px; padding: 18px 18px 14px;
}
.rwd-benefits-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.rwd-benefits-icon { font-size: 18px; line-height: 1; }
.rwd-benefits-title {
  font-size: 14px; font-weight: 600; color: var(--white);
}
.rwd-benefits-list {
  margin: 0; padding: 0 0 0 0; list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.rwd-benefits-list li {
  font-size: 13px; color: var(--gray); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 8px;
}
.rwd-benefits-list li::before {
  content: '◇'; font-size: 9px; color: var(--gold-accent);
  flex-shrink: 0; margin-top: 3px;
}

/* ── Verify Email Prompt Screen ── */
#screen-verify-prompt.active { align-items: center; justify-content: center; }
.verify-prompt-inner {
  display: flex; flex-direction: column; align-items: center;
  padding: 40px 32px; text-align: center; max-width: 340px;
}
.verify-prompt-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 28px;
}
.verify-prompt-title {
  font-family: Georgia, serif; font-size: 24px; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.verify-prompt-sub {
  font-size: 14px; color: var(--gray); margin-bottom: 4px;
}
.verify-prompt-email {
  font-size: 14px; font-weight: 600; color: var(--gold);
  margin-bottom: 20px; word-break: break-all;
}
.verify-prompt-note {
  font-size: 13px; color: var(--gray); line-height: 1.6;
  margin-bottom: 32px;
}
.verify-prompt-resend {
  width: 100%; margin-bottom: 14px;
}
.verify-prompt-continue {
  background: none; border: none; color: var(--gray);
  font-size: 14px; cursor: pointer; padding: 8px;
  text-decoration: underline; text-underline-offset: 3px;
}

/* ══════════════════════════════════════════════════
   MOBILE FEATURES
══════════════════════════════════════════════════ */

/* ── Safe area: sticky footers ─────────────────── */
.booking-footer  { padding-bottom: calc(32px + env(safe-area-inset-bottom)); }
.bj-footer       { padding-bottom: calc(36px + env(safe-area-inset-bottom)); }
.whereto-footer  { padding-bottom: calc(16px + env(safe-area-inset-bottom)); }

/* Scroll areas that sit above the bottom nav */
.home-wrap   { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
.bsvc-grid-wrap { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
.my-rides-body  { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
.notif-wrap     { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }

/* Safe area on top-level screen headers */
.screen-header,
.screen-tab-header {
  padding-top: max(52px, calc(env(safe-area-inset-top) + 12px));
}
.bj-header {
  padding-top: max(48px, calc(env(safe-area-inset-top) + 8px));
}

/* ── Scroll snap: home fleet carousel ──────────── */
.home-fleet-row {
  scroll-snap-type: x mandatory;
  scroll-padding: 0 20px;
}
.home-fleet-card { scroll-snap-align: start; }

/* ── Swipe-to-go-back indicator ────────────────── */
.swipe-back-ind {
  position: fixed; left: 0; top: 50%;
  width: 4px; height: 52px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  border-radius: 0 3px 3px 0;
  transform: translateY(-50%) scaleY(0);
  transform-origin: center;
  opacity: 0;
  transition: opacity 0.12s, transform 0.08s;
  z-index: 9999; pointer-events: none;
  box-shadow: 2px 0 12px rgba(200,168,75,0.45);
}

/* ── Pull-to-refresh indicator ─────────────────── */
.ptr-wrap {
  display: flex; align-items: center; justify-content: center;
  height: 0; overflow: hidden; opacity: 0;
  transition: height 0.15s ease, opacity 0.15s ease;
  flex-shrink: 0;
}
.ptr-wrap--active {
  height: 52px !important; opacity: 1 !important;
}
.ptr-wrap--ready .ptr-spinner { border-top-color: #E0C06A; }
.ptr-spinner {
  width: 22px; height: 22px;
  border: 2.5px solid rgba(200,168,75,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
