/* ALBANIA TAXI — palette from apps/customer-mobile/constants/theme.ts */
:root {
  --primary: #E31E24;
  --primary-dark: #C41920;
  --background: #0A0A0A;
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-light: #1C1C1C;
  --surface-card: #181818;
  --text: #FFFFFF;
  --text-muted: #9CA3AF;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(227, 30, 36, 0.28);
  --glow: rgba(227, 30, 36, 0.12);
  --overlay: rgba(10, 10, 10, 0.72);
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --header-h: 72px;
  --footer-h: 46px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--footer-h);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-text {
  color: var(--text);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link.is-active {
  position: relative;
}

.nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  transition: border-color 0.2s;
}

.header-phone:hover {
  border-color: var(--primary);
}

.header-phone svg {
  color: var(--primary);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s;
}

.lang-btn:hover {
  border-color: var(--glass-border);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Shared ── */
.eyebrow {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin: 0 0 0.65rem;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head.center {
  text-align: center;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 56ch;
  margin: 0.75rem 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(227, 30, 36, 0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 28px rgba(227, 30, 36, 0.55);
}

.btn-outline {
  border-color: var(--primary);
  background: rgba(10, 10, 10, 0.35);
  color: var(--text);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: rgba(227, 30, 36, 0.12);
}

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

/* ── Hero ── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.75rem) 0 4.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 50% at 78% 48%, rgba(227, 30, 36, 0.18) 0%, transparent 58%),
    radial-gradient(circle at 18% 40%, rgba(227, 30, 36, 0.06) 0%, transparent 42%),
    var(--background);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.78) 48%, rgba(10, 10, 10, 0.4) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.hero-bg-glow {
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 42%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(227, 30, 36, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.45rem, 2.2vw, 1.5rem);
  max-width: 1060px;
  margin: 0 auto;
}

.hero-copy {
  flex: 1 1 500px;
  max-width: 620px;
  min-width: 0;
}

.hero-eyebrow {
  color: var(--primary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.hero-title {
  font-size: clamp(2.65rem, 5.5vw, 4.15rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  color: var(--text);
}

.hero-tagline {
  font-size: clamp(1.2rem, 2.25vw, 1.58rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0.5rem 0 0;
  line-height: 1.15;
}

.hero-visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -0.5rem;
}

.hero-visual img {
  width: clamp(380px, 42vw, 560px);
  max-height: min(50vh, 420px);
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1.55rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-right: 0.15rem;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  max-width: 40ch;
  margin: 0.85rem 0 0;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

/* ── Booking panel (mockup) ── */
.booking-panel {
  position: relative;
  z-index: 20;
  background: rgba(22, 22, 22, 0.96);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  overflow: visible;
  margin-top: 0.5rem;
}

.booking-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 0.35rem;
  gap: 0.15rem;
}

.booking-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}

.booking-tab svg {
  opacity: 0.75;
}

.booking-tab.is-active {
  color: var(--text);
  border-bottom-color: var(--primary);
}

.booking-tab.is-active svg {
  color: var(--primary);
  opacity: 1;
}

.booking-tab-panel {
  padding: 0;
}

.booking-tab-panel--trips {
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.trips-panel-msg {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.booking-tab-panel .booking-form {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.booking-form--price {
  grid-template-columns: 1fr 1fr auto;
}

.btn-search--wide {
  grid-column: auto;
  min-width: 180px;
}

.price-inline-loading {
  padding: 0.85rem 1.25rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.price-inline-results {
  padding: 0 1.25rem 1.1rem;
  border-top: 1px solid var(--border);
}

.price-inline-route {
  margin: 0.85rem 0 0.25rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.price-inline-meta {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.price-inline-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.price-inline-table th,
.price-inline-table td {
  padding: 0.55rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-inline-table th {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.price-inline-table td:last-child {
  text-align: right;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.price-inline-table tr.is-highlight td {
  background: rgba(227, 30, 36, 0.06);
}

.price-inline-table tr.is-highlight td:first-child {
  font-weight: 700;
}

.price-inline-note {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Booking bar ── */
.booking-bar {
  position: relative;
  z-index: 30;
  margin-top: 0.75rem;
  padding-bottom: 1rem;
  overflow: visible;
}

.booking-bar .booking-panel {
  margin-top: 0;
}

.booking-form {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 0.9fr auto;
  gap: 0;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: visible;
  position: relative;
}

.booking-field {
  padding: 0.75rem 1rem;
  border-right: 1px solid var(--border);
  position: relative;
}

.booking-field--ac {
  overflow: visible;
  z-index: 1;
}

.booking-field--ac:focus-within {
  z-index: 50;
}

.booking-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.booking-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.field-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.booking-input-wrap input,
.booking-input-wrap select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  padding: 0;
}

.booking-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.booking-input-wrap select {
  cursor: pointer;
  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'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 1.25rem;
}

.btn-search {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.75rem;
  background: var(--primary);
  color: var(--text);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  border-radius: 0;
  min-width: 140px;
  transition: background 0.2s;
}

.btn-search:hover {
  background: var(--primary-dark);
}

/* ── Features ── */
.features {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
  background: var(--background);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-2px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--text);
  margin: 0 auto 1.15rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.55;
}

/* ── Rates section ── */
.rates-section {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.rates-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.rates-tier-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.rates-tier-card--featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(227, 30, 36, 0.2);
}

.rates-badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.rates-tier-card h3 {
  font-size: 1.15rem;
  margin: 0.5rem 0 0.35rem;
}

.rates-tier-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
}

.rates-tier-note {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.rates-tier-note strong {
  color: var(--primary);
}

.rates-table-wrap {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.rates-table-title {
  font-size: 1rem;
  margin: 0 0 1rem;
  text-align: center;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.rates-table th,
.rates-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.rates-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rates-table td:last-child {
  font-weight: 700;
  color: var(--primary);
}

.rates-footnote {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.rates-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── Drivers section ── */
.drivers-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--background) 0%, var(--surface) 100%);
  border-top: 1px solid var(--border);
}

.drivers-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.drivers-benefits {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.drivers-benefits li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.drivers-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.drivers-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.drivers-card h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.drivers-requirements {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.7;
}

.drivers-requirements li {
  margin-bottom: 0.35rem;
}

.drivers-card-note {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Blog section ── */
.blog-section {
  padding: 5rem 0;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.blog-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-2px);
}

.blog-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.65rem;
  letter-spacing: 0.04em;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0 0 1rem;
  line-height: 1.55;
  flex: 1;
}

.blog-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

/* ── App section ── */
.app-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--background) 0%, var(--surface) 100%);
  border-top: 1px solid var(--border);
}

.app-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.phones {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  position: absolute;
}

.phone--back {
  left: 0;
  transform: rotate(-8deg) translateX(-10%);
  z-index: 1;
  opacity: 0.85;
}

.phone--front {
  right: 0;
  transform: rotate(4deg) translateX(5%);
  z-index: 2;
}

.phone-frame {
  width: 200px;
  background: #1a1a1a;
  border: 3px solid #2a2a2a;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 9/19.5;
  object-fit: cover;
  object-position: top;
}

.app-copy h2 {
  margin-bottom: 1.5rem;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, transform 0.15s;
  min-width: 160px;
}

.store-badge:hover {
  border-color: var(--glass-border);
  transform: translateY(-1px);
}

.store-badge svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge small {
  font-size: 0.58rem;
  color: var(--text-muted);
  text-transform: capitalize;
}

.store-badge strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.app-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.app-benefits li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(227, 30, 36, 0.12);
  color: var(--primary);
  flex-shrink: 0;
}

.app-benefits strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.app-benefits p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── About strip ── */
.about-strip {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-inner p:last-of-type {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 52ch;
  margin: 0.75rem 0 0;
}

/* ── Contact ── */
.contact {
  padding: 5rem 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}

.contact-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-2px);
}

.contact-card svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-card span {
  font-size: 0.95rem;
  font-weight: 600;
}

/* ── Footer ── */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  height: var(--footer-h);
  border-top: 1px solid var(--border);
  padding: 0;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-footer .container {
  height: 100%;
}

.footer-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 100%;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.footer-brand img {
  border-radius: 6px;
  width: 26px;
  height: 26px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.68rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  flex-shrink: 0;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.68rem;
  white-space: nowrap;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--primary);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nav {
    gap: 0.85rem;
  }

  .nav-link {
    font-size: 0.75rem;
  }

  .app-section-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "phones phones"
      "copy benefits";
  }

  .phones {
    grid-area: phones;
    height: 380px;
  }

  .app-copy {
    grid-area: copy;
  }

  .app-benefits {
    grid-area: benefits;
  }
}

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

  .rates-tiers,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .drivers-inner {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .booking-field:nth-child(1),
  .booking-field:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .btn-search {
    grid-column: 1 / -1;
    padding: 1rem;
    border-radius: 0;
  }

  .booking-field:nth-child(4) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
  }

  .nav-link.is-active::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding: calc(var(--header-h) + 2rem) 0 3rem;
  }

  .hero-layout {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: none;
  }

  .hero-copy {
    text-align: center;
    max-width: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-left: 0;
  }

  .hero-visual img {
    width: min(100%, 430px);
    max-height: 300px;
  }

  .booking-bar {
    margin-top: 0.5rem;
  }

  .booking-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .booking-tab {
    white-space: nowrap;
    padding: 0.75rem 0.85rem;
    font-size: 0.75rem;
  }

  .features {
    padding-top: 2.5rem;
  }

  .feature-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .app-section-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "phones"
      "copy"
      "benefits";
    text-align: center;
  }

  .phones {
    height: 340px;
  }

  .phone-frame {
    width: 170px;
  }

  .store-badges {
    justify-content: center;
  }

  .app-benefits li {
    text-align: left;
  }

  .about-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    gap: 0.5rem;
  }

  .footer-copy {
    display: none;
  }

  .footer-nav {
    gap: 0.55rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .footer-nav::-webkit-scrollbar {
    display: none;
  }

  .footer-nav a {
    font-size: 0.65rem;
  }
}

@media (max-width: 520px) {
  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-field {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }
}

/* ── Auth nav ── */
.auth-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 0.75rem;
}

.nav-auth-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-auth-link:hover {
  color: var(--text);
}

.nav-auth-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
}

/* ── Places autocomplete ── */
.ac-wrap {
  position: relative;
  overflow: visible;
}

.ac-dropdown {
  position: absolute;
  left: -0.5rem;
  right: -0.5rem;
  top: calc(100% + 6px);
  z-index: 200;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65);
  max-height: 280px;
  overflow-y: auto;
}

.ac-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.ac-item:hover {
  background: rgba(227, 30, 36, 0.08);
}

.ac-title {
  font-weight: 600;
  font-size: 0.92rem;
}

.ac-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ac-item--muted,
.ac-item--error {
  cursor: default;
  color: var(--text-muted);
}

.ac-item--error {
  color: #ff6b6b;
}

.booking-input-wrap input.is-invalid {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.35);
}

.form-error {
  background: rgba(227, 30, 36, 0.12);
  border: 1px solid rgba(227, 30, 36, 0.35);
  color: #ffb4b4;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.form-error--bar {
  margin-bottom: 0.75rem;
}

/* ── Auth pages ── */
.auth-page {
  min-height: 100vh;
  background: var(--background);
}

.site-header--compact {
  background: rgba(10, 10, 10, 0.95);
}

.auth-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 4rem;
  min-height: calc(100vh - var(--header-h));
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.auth-card h1 {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.auth-lead {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.auth-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.auth-form .field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.auth-form input {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 1rem;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(227, 30, 36, 0.2);
}

.auth-switch {
  text-align: center;
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.auth-switch a {
  color: var(--primary);
  font-weight: 600;
}

/* ── Booking results page ── */
.booking-page {
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  min-height: 100vh;
}

.booking-page-inner {
  max-width: 560px;
}

.back-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.back-link:hover {
  color: var(--primary);
}

.trip-route {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.trip-meta {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.booking-loading {
  color: var(--text-muted);
  padding: 2rem 0;
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.15rem 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}

.price-card.is-selected {
  border-color: var(--primary);
  background: rgba(227, 30, 36, 0.08);
}

.price-card-label {
  font-weight: 700;
  grid-column: 1;
}

.price-card-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  grid-column: 2;
  grid-row: 1 / span 2;
}

.price-card-eta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.booking-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.booking-success h2 {
  color: #86efac;
  margin-bottom: 0.5rem;
}

.booking-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Schedule picker trigger ── */
.booking-schedule-trigger {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-schedule-trigger:hover {
  color: var(--primary);
}

.booking-field--schedule:focus-within {
  z-index: 40;
}

/* ── Schedule modal ── */
body.modal-open {
  overflow: hidden;
}

.schedule-modal[hidden] {
  display: none !important;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.schedule-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.schedule-sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: 88vh;
  overflow-y: auto;
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 20px 20px 0 0;
  padding: 1.25rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 520px) {
  .schedule-modal {
    align-items: center;
    padding: 1rem;
  }
  .schedule-sheet {
    border-radius: 20px;
  }
}

.schedule-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.schedule-sheet h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.schedule-now-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  background: rgba(227, 30, 36, 0.12);
  border: 1px solid rgba(227, 30, 36, 0.35);
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

.schedule-now-btn:hover {
  background: rgba(227, 30, 36, 0.2);
}

.schedule-now-btn svg {
  color: var(--primary);
}

.schedule-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0.75rem 0 0.5rem;
}

.schedule-calendar-wrap {
  margin-bottom: 0.25rem;
}

.schedule-calendar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem;
}

.schedule-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.schedule-calendar-title {
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-transform: capitalize;
}

.schedule-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.schedule-calendar-nav:hover {
  color: var(--primary);
  border-color: rgba(227, 30, 36, 0.45);
  background: rgba(227, 30, 36, 0.08);
}

.schedule-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.35rem;
}

.schedule-calendar-weekdays span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 0.25rem 0;
}

.schedule-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.schedule-calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.schedule-calendar-day--empty {
  pointer-events: none;
}

.schedule-calendar-day.is-today:not(.is-selected) {
  border-color: rgba(227, 30, 36, 0.45);
  color: var(--primary);
}

.schedule-calendar-day.is-selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.schedule-calendar-day:not(.is-disabled):not(.is-selected):hover {
  background: rgba(227, 30, 36, 0.12);
  border-color: rgba(227, 30, 36, 0.3);
}

.schedule-calendar-day.is-disabled {
  color: rgba(255, 255, 255, 0.22);
  cursor: not-allowed;
}

.schedule-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.schedule-time {
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.schedule-time.is-active {
  border-color: var(--primary);
  background: rgba(227, 30, 36, 0.15);
  color: var(--primary);
}

.schedule-empty {
  grid-column: 1 / -1;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

/* ── Ride status page ── */
.ride-status-page {
  background: var(--background);
}

.ride-page {
  padding: calc(var(--header-h) + 1.5rem) 0 3rem;
  min-height: 100vh;
}

.ride-page-inner {
  max-width: 520px;
}

.ride-loading {
  color: var(--text-muted);
  padding: 3rem 0;
  text-align: center;
}

.ride-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ride-search {
  text-align: center;
  padding: 1rem 0 0.5rem;
}

.ride-search-radar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ride-search-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(227, 30, 36, 0.45);
  animation: ride-pulse 2.2s ease-out infinite;
}

.ride-search-pulse--2 {
  animation-delay: 0.7s;
}

.ride-search-pulse--3 {
  animation-delay: 1.4s;
}

@keyframes ride-pulse {
  0% {
    transform: scale(0.55);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.ride-search-car {
  font-size: 2rem;
  z-index: 1;
  animation: ride-bob 2.8s ease-in-out infinite;
}

@keyframes ride-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.ride-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.ride-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: ride-live 1.8s ease-in-out infinite;
}

@keyframes ride-live {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.ride-search h1,
.ride-status-banner h1 {
  font-size: 1.65rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}

.ride-search-sub,
.ride-status-sub {
  color: var(--text-muted);
  margin: 0;
}

.ride-search-hint {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  margin: 0.75rem 0 0;
}

.ride-status-banner {
  padding: 0.5rem 0;
}

.ride-status-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin: 0 0 0.35rem;
}

.ride-route-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
}

.ride-route-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.ride-route-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.ride-route-dot--pickup {
  background: #22c55e;
}

.ride-route-dot--dest {
  background: var(--primary);
}

.ride-route-line {
  width: 2px;
  height: 18px;
  background: var(--border);
  margin: 0.25rem 0 0.25rem 5px;
}

.ride-route-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.ride-route-text {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

.ride-driver-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.25rem;
}

.ride-driver-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.ride-driver-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ride-driver-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.15);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ride-driver-info {
  flex: 1;
  min-width: 0;
}

.ride-driver-name {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.ride-driver-meta {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ride-fare {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.ride-steps {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.25rem;
}

.ride-steps-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.ride-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ride-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ride-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.ride-step.is-done {
  color: rgba(255, 255, 255, 0.85);
}

.ride-step.is-done .ride-step-dot {
  border-color: var(--primary);
  background: var(--primary);
}

.ride-step.is-active {
  color: #fff;
  font-weight: 700;
}

.ride-step.is-active .ride-step-dot {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.25);
}

.ride-completed,
.ride-cancelled {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
}

.ride-cancelled {
  background: rgba(227, 30, 36, 0.08);
  border-color: rgba(227, 30, 36, 0.35);
}

.ride-completed h2 {
  color: #86efac;
  margin: 0 0 0.5rem;
}

.ride-cancelled h2 {
  color: var(--primary);
  margin: 0 0 0.5rem;
}

.ride-completed-fare {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

.ride-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
