/* ═══════════════════════════════════════════════════════════
   Transfer Detail — Custom Stylesheet
   Inherits brand from hotel.details.css + main style.css
   ═══════════════════════════════════════════════════════════ */

:root {
  --tf-brand:      var(--brand-light);
  --tf-brand-dark: #7c4fd4;
  --tf-brand-glow: rgba(160,119,231,.18);
  --tf-dark:       #040e26;
  --tf-surface:    #ffffff;
  --tf-surface-2:  #f8f7fc;
  --tf-border:     #ede9fb;
  --tf-muted:      #888;
  --tf-blue:       #0ea5e9;
  --tf-blue-glow:  rgba(14,165,233,.15);
  --tf-orange:     #f97316;
  --tf-orange-glow:rgba(249,115,22,.15);
  --tf-green:      #10b981;
  --tf-green-glow: rgba(16,185,129,.15);
  --tf-amber:      #f59e0b;
  --tf-red:        #ef4444;
}

/* ─── Stats Strip ──────────────────────────────────────────── */
.tf-stats-section {
  background: var(--tf-dark);
  padding: 0;
  position: relative;
  z-index: 5;
}

.tf-stats-bar {
  display: flex;
  flex-wrap: wrap;
}

.tf-stat-card {
  flex: 1;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.tf-stat-card:last-child { border-right: none; }
.tf-stat-card:hover      { background: rgba(160,119,231,.1); }

.tf-stat-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(160,119,231,.14);
  border: 1px solid rgba(160,119,231,.24);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: .95rem;
  color: var(--tf-brand);
  transition: background .2s, border-color .2s;
}
.tf-stat-card:hover .tf-stat-icon-wrap {
  background: rgba(160,119,231,.28);
  border-color: rgba(160,119,231,.5);
}

.tf-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}

.tf-stat-label {
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
}

/* ─── Section Headers (self-contained for this page) ──────── */
.tf-section-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--tf-brand);
  background: rgba(160,119,231,.1);
  border: 1px solid rgba(160,119,231,.2);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 8px;
}

.tf-section-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--tf-dark);
  margin: 0;
  line-height: 1.25;
}

/* ─── About / Why-Choose Grid ─────────────────────────────── */
.tf-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.tf-why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--tf-surface-2);
  border: 1.5px solid var(--tf-border);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color .2s, box-shadow .2s;
}
.tf-why-item:hover {
  border-color: rgba(160,119,231,.4);
  box-shadow: 0 4px 16px var(--tf-brand-glow);
}

.tf-why-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #b89af0, var(--tf-brand));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--tf-brand-glow);
}

.tf-why-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--tf-dark);
  margin-bottom: 3px;
}

.tf-why-text {
  font-size: .76rem;
  color: var(--tf-muted);
  line-height: 1.52;
}

/* ─── Route Info Card ─────────────────────────────────────── */
.tf-route-card {
  background: var(--tf-surface);
  border: 1.5px solid var(--tf-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(4,14,38,.06);
}

/* Route visual row: origin ─── arrow ─── destination */
.tf-route-visual {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 28px 0;
}

.tf-route-endpoint {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.tf-route-endpoint-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.14);
}
.tf-route-endpoint-icon--from { background: linear-gradient(135deg, #38bdf8, var(--tf-blue)); }
.tf-route-endpoint-icon--to   { background: linear-gradient(135deg, #34d399, var(--tf-green)); }

.tf-route-endpoint-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--tf-muted);
  margin-bottom: 1px;
}

.tf-route-endpoint-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tf-dark);
  line-height: 1.25;
}

.tf-route-endpoint-sub {
  font-size: .76rem;
  color: var(--tf-muted);
  margin-top: 2px;
}

.tf-route-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
  flex-shrink: 0;
  margin-top: 20px;
}

.tf-route-arrow-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--tf-blue), var(--tf-green));
  border-radius: 2px;
  position: relative;
}
.tf-route-arrow-line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--tf-green);
}

.tf-route-distance-badge {
  margin-top: 8px;
  font-size: .65rem;
  font-weight: 700;
  color: var(--tf-brand);
  background: rgba(160,119,231,.1);
  border: 1px solid rgba(160,119,231,.2);
  border-radius: 50px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* Roundtrip indicator */
.tf-roundtrip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 50px;
  margin: 18px 28px 0;
}
.tf-roundtrip-badge--round { background: rgba(160,119,231,.12); color: var(--tf-brand);  border: 1px solid rgba(160,119,231,.28); }
.tf-roundtrip-badge--one   { background: rgba(14,165,233,.12);  color: var(--tf-blue);   border: 1px solid rgba(14,165,233,.28);  }

/* Info grid (dates, times, stops) */
.tf-route-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--tf-border);
  margin-top: 20px;
  border-top: 1px solid var(--tf-border);
}

.tf-info-cell {
  background: var(--tf-surface);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background .18s;
}
.tf-info-cell:hover { background: var(--tf-surface-2); }

.tf-info-cell-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  margin-bottom: 4px;
}
.tf-info-cell-icon--blue   { background: rgba(14,165,233,.12);  color: var(--tf-blue);   }
.tf-info-cell-icon--orange { background: rgba(249,115,22,.12);  color: var(--tf-orange); }
.tf-info-cell-icon--green  { background: rgba(16,185,129,.12);  color: var(--tf-green);  }
.tf-info-cell-icon--purple { background: rgba(160,119,231,.12); color: var(--tf-brand);  }

.tf-info-cell-label {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tf-muted);
}

.tf-info-cell-value {
  font-size: .9rem;
  font-weight: 700;
  color: var(--tf-dark);
  line-height: 1.25;
}

.tf-info-cell-sub {
  font-size: .72rem;
  color: var(--tf-muted);
}

/* ─── Steps Timeline ──────────────────────────────────────── */
.tf-timeline {
  position: relative;
  padding-left: 72px;
}

.tf-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom,
    var(--tf-blue) 0%,
    var(--tf-orange) 40%,
    var(--tf-green) 70%,
    rgba(160,119,231,.15) 100%);
  border-radius: 2px;
}

.tf-step-item {
  position: relative;
  margin-bottom: 22px;
}
.tf-step-item:last-child { margin-bottom: 0; }

.tf-step-marker {
  position: absolute;
  left: -59px;
  top: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  flex-shrink: 0;
}

.tf-step-marker--blue   { background: linear-gradient(135deg, #38bdf8, var(--tf-blue));   }
.tf-step-marker--orange { background: linear-gradient(135deg, #fb923c, var(--tf-orange)); }
.tf-step-marker--green  { background: linear-gradient(135deg, #34d399, var(--tf-green));  }
.tf-step-marker--purple { background: linear-gradient(135deg, #b89af0, var(--tf-brand));  }

.tf-step-num {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .04em;
  opacity: .75;
  line-height: 1;
}

.tf-step-icon {
  font-size: .9rem;
  line-height: 1;
}

.tf-step-body {
  background: var(--tf-surface);
  border: 1.5px solid var(--tf-border);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow .22s, border-color .22s;
}
.tf-step-body:hover {
  box-shadow: 0 8px 32px rgba(4,14,38,.09);
  border-color: rgba(160,119,231,.3);
}

.tf-step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px 0;
  margin-bottom: 12px;
}

.tf-step-head-left { flex: 1; min-width: 0; }

.tf-step-tag {
  display: inline-flex;
  align-items: center;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
  margin-bottom: 6px;
}
.tf-step-tag--blue   { background: rgba(14,165,233,.12);  color: var(--tf-blue);   border: 1px solid rgba(14,165,233,.25);   }
.tf-step-tag--orange { background: rgba(249,115,22,.12);  color: var(--tf-orange); border: 1px solid rgba(249,115,22,.25);   }
.tf-step-tag--green  { background: rgba(16,185,129,.12);  color: var(--tf-green);  border: 1px solid rgba(16,185,129,.25);   }
.tf-step-tag--purple { background: rgba(160,119,231,.12); color: var(--tf-brand);  border: 1px solid rgba(160,119,231,.25);  }

.tf-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tf-dark);
  margin: 0 0 2px;
  line-height: 1.3;
}

.tf-step-subtitle {
  font-size: .76rem;
  color: var(--tf-muted);
  font-weight: 500;
}

/* Image + content row */
.tf-step-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 0 20px 18px;
}

.tf-step-img-wrap {
  position: relative;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  width: 140px;
}

.tf-step-img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.tf-step-body:hover .tf-step-img { transform: scale(1.06); }

.tf-step-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,14,38,.45) 0%, transparent 50%);
  pointer-events: none;
}

.tf-step-text { flex: 1; min-width: 0; }

.tf-step-desc {
  font-size: .84rem;
  color: #666;
  line-height: 1.72;
  margin: 0 0 12px;
}

.tf-step-bullets {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tf-step-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .77rem;
  color: #555;
}

.tf-step-bullet-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(160,119,231,.12);
  border: 1px solid rgba(160,119,231,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .5rem;
  color: var(--tf-brand);
}

/* ─── Policy Cards (Highlights / Included / Excluded) ─────── */
.tf-policy-card {
  background: var(--tf-surface);
  border-radius: 16px;
  border: 1.5px solid var(--tf-border);
  overflow: hidden;
  height: 100%;
}

.tf-policy-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
}

.tf-policy-card--highlights .tf-policy-card-header { background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.tf-policy-card--included   .tf-policy-card-header { background: linear-gradient(135deg, #ecfdf5, #d1fae5); }
.tf-policy-card--excluded   .tf-policy-card-header { background: linear-gradient(135deg, #fef2f2, #fcd4d4); }

.tf-policy-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: #fff;
  flex-shrink: 0;
}
.tf-policy-card--highlights .tf-policy-card-icon { background: var(--tf-amber); }
.tf-policy-card--included   .tf-policy-card-icon { background: var(--tf-green); }
.tf-policy-card--excluded   .tf-policy-card-icon { background: var(--tf-red);   }

.tf-policy-card-title {
  font-size: .9rem;
  font-weight: 700;
  margin: 0;
  color: var(--tf-dark);
}

.tf-policy-list {
  list-style: none;
  margin: 0;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tf-policy-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .83rem;
  color: #444;
  line-height: 1.52;
}

.tf-policy-item-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.tf-policy-card--highlights .tf-policy-item-icon { background: rgba(245,158,11,.12); color: var(--tf-amber); }
.tf-policy-card--included   .tf-policy-item-icon { background: rgba(16,185,129,.12); color: var(--tf-green); }
.tf-policy-card--excluded   .tf-policy-item-icon { background: rgba(239,68,68,.12);  color: var(--tf-red);   }

/* ─── Vehicle Cards ───────────────────────────────────────── */
.tf-vehicle-card {
  background: var(--tf-surface);
  border: 1.5px solid var(--tf-border);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
  margin-bottom: 20px;
}
.tf-vehicle-card:hover {
  box-shadow: 0 12px 44px var(--tf-brand-glow);
}
.tf-vehicle-card--selected {
  border-color: var(--tf-brand);
  box-shadow: 0 0 0 3px var(--tf-brand-glow), 0 12px 44px var(--tf-brand-glow);
}

.tf-vehicle-img-wrap {
  position: relative;
  overflow: hidden;
}

.tf-vehicle-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.tf-vehicle-card:hover .tf-vehicle-img { transform: scale(1.04); }

.tf-vehicle-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,14,38,.7) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 20px;
}

.tf-vehicle-badge {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 50px;
}
.tf-vehicle-badge--green  { background: var(--tf-green);  color: #fff; }
.tf-vehicle-badge--purple { background: var(--tf-brand);  color: #fff; }
.tf-vehicle-badge--blue   { background: var(--tf-blue);   color: #fff; }

.tf-vehicle-overlay-cap {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
}

.tf-vehicle-cap-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tf-vehicle-cap-item .fa { color: rgba(255,255,255,.7); font-size: .75rem; }

.tf-vehicle-body {
  padding: 20px 22px 0;
}

.tf-vehicle-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--tf-dark);
  margin: 0 0 2px;
}

.tf-vehicle-type {
  font-size: .78rem;
  color: var(--tf-muted);
  margin-bottom: 14px;
}
.tf-vehicle-type .fa { color: var(--tf-brand); margin-right: 4px; }

.tf-vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tf-vehicle-feature {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  color: #5a3fa8;
  background: rgba(160,119,231,.1);
  border: 1px solid rgba(160,119,231,.2);
  border-radius: 50px;
  padding: 4px 11px;
  transition: background .18s, border-color .18s;
}
.tf-vehicle-feature:hover {
  background: rgba(160,119,231,.2);
  border-color: rgba(160,119,231,.4);
}
.tf-vehicle-feature .fa { color: var(--tf-brand); font-size: .68rem; }

/* Price + selection row */
.tf-vehicle-pricing {
  padding: 16px 22px 20px;
  border-top: 1px solid var(--tf-border);
  margin-top: 4px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.tf-vehicle-price-option {
  flex: 1;
}

.tf-vehicle-price-label {
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tf-muted);
  margin-bottom: 4px;
}

.tf-vp-amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--tf-dark);
}

.tf-vp-cur {
  font-size: .76rem;
  font-weight: 400;
  color: var(--tf-muted);
  margin-left: 1px;
}

.tf-vehicle-select-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 700;
  border: 2px solid var(--tf-brand);
  color: var(--tf-brand);
  background: transparent;
  cursor: pointer;
  transition: background .18s, color .18s, transform .15s, box-shadow .18s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tf-vehicle-select-btn:hover,
.tf-vehicle-card--selected .tf-vehicle-select-btn {
  background: var(--tf-brand);
  color: #fff;
  box-shadow: 0 4px 16px var(--tf-brand-glow);
  transform: translateY(-1px);
}
.tf-vehicle-card--selected .tf-vehicle-select-btn::before {
  content: '\f00c  ';
  font-family: 'FontAwesome';
}

/* ─── Sidebar — Trip Type Toggle ──────────────────────────── */
.tf-type-toggle {
  display: flex;
  background: var(--tf-surface-2);
  border: 1.5px solid var(--tf-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.tf-type-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--tf-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s;
  border-right: 1px solid var(--tf-border);
}
.tf-type-btn:last-child { border-right: none; }
.tf-type-btn:hover      { color: var(--tf-brand); background: rgba(160,119,231,.06); }

.tf-type-btn.active {
  background: var(--tf-brand);
  color: #fff;
}
.tf-type-btn .fa { font-size: .75rem; }

/* Sidebar vehicle placeholder */
.tf-sidebar-placeholder {
  font-size: .84rem;
  color: var(--tf-muted);
  font-style: italic;
  padding: 12px 14px;
  background: var(--tf-surface-2);
  border-radius: 10px;
  border: 1.5px dashed var(--tf-border);
  text-align: center;
}
.tf-sidebar-placeholder .fa { color: var(--tf-brand); }

/* Sidebar selected vehicle */
.tf-selected-vehicle {
  background: var(--tf-surface-2);
  border: 1.5px solid var(--tf-border);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tf-selected-vehicle-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--tf-dark);
}

.tf-selected-vehicle-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tf-selected-vehicle-meta span {
  font-size: .74rem;
  color: var(--tf-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.tf-selected-vehicle-meta .fa { color: var(--tf-brand); }

/* Sidebar route display */
.tf-sidebar-route {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--tf-surface-2);
  border: 1.5px solid var(--tf-border);
  border-radius: 10px;
  margin-bottom: 16px;
}

.tf-sidebar-route-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  flex-shrink: 0;
}
.tf-sidebar-route-icon--from { background: rgba(14,165,233,.12);  color: var(--tf-blue);  }
.tf-sidebar-route-icon--to   { background: rgba(16,185,129,.12);  color: var(--tf-green); }

.tf-sidebar-route-sep {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(14,165,233,.3), rgba(16,185,129,.3));
  border-radius: 1px;
  position: relative;
}
.tf-sidebar-route-sep::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: rgba(16,185,129,.5);
}

.tf-sidebar-route-label {
  font-size: .7rem;
  color: var(--tf-dark);
  font-weight: 600;
  max-width: 70px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sidebar includes list */
.tf-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tf-sidebar-list li {
  font-size: .84rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tf-sidebar-list .fa { color: var(--tf-brand); font-size: .8rem; }

/* Section divider */
.dci-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 16px 0;
}

.dci-section-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #999;
  margin-bottom: 10px !important;
}

.dci-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--tf-dark);
  font-weight: 600;
}
.dci-loc-icon { color: var(--tf-brand); font-size: .9rem; }

/* ─── Map Section ────────────────────────────────────────── */
.tf-map-card {
  background: var(--tf-surface);
  border: 1.5px solid var(--tf-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(4,14,38,.06);
}

.tf-map-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  flex-wrap: wrap;
  background: var(--tf-surface-2);
  border-bottom: 1px solid var(--tf-border);
}

.tf-map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}
.tf-map-legend-item--blue   { background: rgba(14,165,233,.1);  color: var(--tf-blue);   border: 1px solid rgba(14,165,233,.2);  }
.tf-map-legend-item--orange { background: rgba(249,115,22,.1);  color: var(--tf-orange); border: 1px solid rgba(249,115,22,.2);  }
.tf-map-legend-item--green  { background: rgba(16,185,129,.1);  color: var(--tf-green);  border: 1px solid rgba(16,185,129,.2);  }

.tf-map-legend-arrow { color: #ccc; font-size: .75rem; }

.tf-map-container {
  height: 400px;
  width: 100%;
}

.tf-map-footer {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px 20px;
  background: var(--tf-surface-2);
  border-top: 1px solid var(--tf-border);
  font-size: .78rem;
  color: var(--tf-muted);
  font-weight: 600;
}
.tf-map-footer span { display: flex; align-items: center; }
.tf-map-footer .fa  { color: var(--tf-brand); margin-right: 5px; }

/* Step bullet icons now per-step (not just fa-check) */
.tf-step-bullet-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(160,119,231,.1);
  border: 1px solid rgba(160,119,231,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .55rem;
  color: var(--tf-brand);
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .tf-route-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .tf-stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); }
  .tf-stat-card { border-right: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }

  .tf-why-grid { grid-template-columns: 1fr; }

  .tf-timeline { padding-left: 54px; }
  .tf-timeline::before { left: 17px; }
  .tf-step-marker { left: -48px; width: 37px; height: 37px; }
  .tf-step-icon { font-size: .75rem; }

  .tf-route-visual { padding: 18px 18px 0; }
  .tf-route-arrow { padding: 0 10px; }
  .tf-route-arrow-line { width: 36px; }

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

@media (max-width: 575px) {
  .tf-step-content { flex-direction: column; }
  .tf-step-img-wrap, .tf-step-img { width: 100%; height: 140px; }

  .tf-vehicle-img { height: 170px; }

  .tf-route-info-grid { grid-template-columns: repeat(1, 1fr); }

  .tf-vehicle-pricing { flex-direction: column; align-items: flex-start; }
  .tf-vehicle-select-btn { width: 100%; }
}
