/* ===== GEORGIA 2026 — Mobile-First Dark Theme RTL ===== */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --green:       #2D5016;
  --green-light: #4a8025;
  --green-glow:  rgba(45,80,22,0.3);
  --gold:        #C4A24E;
  --gold-light:  #e6c06a;
  --bg-color: #0A0F14;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --text: #F8FAFC;
  --text-muted: #94A3B8;
  --gold: #FACC15;
  --green-light: #4ADE80;
  --border: rgba(255, 255, 255, 0.08);
  --nav-bg: rgba(10, 15, 20, 0.75);
  --radius: 24px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5), 0 4px 10px -4px rgba(0,0,0,0.4);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== RESET ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text);
  line-height: 1.5;
  direction: rtl;
  padding-bottom: env(safe-area-inset-bottom);
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ------------------------------
   TYPOGRAPHY
------------------------------ */
h1, h2, h3 { color: var(--text); font-weight: 700; }
.section-title {
  padding: 1.25rem 1.25rem 0.75rem;
  font-size: 1.25rem;
  color: var(--gold);
  border-bottom: var(--glass-border);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== TOP HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 60px;
}
.site-header .logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.site-header .logo span { color: var(--green-light); }
.header-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== TOP NAV — MOBILE ===== */
.top-nav {
  display: flex;
  align-items: stretch;
  border-top: var(--glass-border);
  height: 64px;
}
.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  min-height: 48px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}
.nav-item:active { transform: scale(0.92); }
.nav-item.active { color: var(--gold); }
.nav-item .nav-icon { font-size: 1.5rem; line-height: 1; transition: transform 0.2s; }
.nav-item.active .nav-icon { transform: translateY(-2px); }

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(160deg, #0a1628 0%, #0d2040 40%, #142a1a 100%);
  padding: 2.5rem 1rem 2rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 60% 40%, rgba(45,80,22,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(27,79,138,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-flag { font-size: 3rem; margin-bottom: 0.5rem; }
.hero-title {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #e6c06a, #4ADE80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
}
.hero-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.2rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid;
}
.badge-green  { background: rgba(45,80,22,0.3); border-color: var(--green-light); color: var(--green-light); }
.badge-gold   { background: rgba(196,162,78,0.15); border-color: var(--gold); color: var(--gold); }
.badge-blue   { background: rgba(27,79,138,0.2); border-color: #2a6fc7; color: #2a6fc7; }
.badge-red    { background: rgba(220,50,50,0.15); border-color: #e05555; color: #e05555; }

/* ===== COUNTDOWN ===== */
.countdown-bar {
  margin: -3rem 1.25rem 1.5rem; /* OVERLAP TRICK */
  position: relative;
  z-index: 10;
  background: rgba(20, 25, 35, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.countdown-days {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.countdown-label { color: var(--text-muted); font-size: 0.85rem; }
.countdown-label strong { display: block; color: var(--text); font-size: 1rem; }

/* ------------------------------
   CARDS & CONTAINERS (Glassmorphism)
------------------------------ */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: var(--glass-border);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1rem;
}
.card-body { padding: 1.25rem; }

/* ------------------------------
   MAP CONTAINER
------------------------------ */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.map-fullscreen {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9999 !important;
  border-radius: 0 !important;
  border: none !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
.map-fullscreen #map {
  flex: 1 !important;
  height: auto !important;
}
.fullscreen-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  background: var(--bg-card);
  color: var(--text);
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  padding: 6px 10px;
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(0,0,0,0.65);
}
.fullscreen-toggle:hover {
  background: var(--bg-color);
}
.map-fullscreen .fullscreen-toggle {
  top: 20px;
  right: 20px;
  padding: 10px 15px;
  font-size: 1.1rem;
}

/* ------------------------------
   WEATHER WIDGET
------------------------------ */
.weather-scroller {
  display: flex;
  overflow-x: auto;
  gap: 0.5rem;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
}
.weather-scroller::-webkit-scrollbar {
  height: 4px;
}
.weather-scroller::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}
.weather-hour {
  min-width: 65px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.weather-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.weather-icon {
  font-size: 1.5rem;
}
.weather-temp {
  font-size: 1.1rem;
  font-weight: bold;
}
.weather-precip {
  font-size: 0.75rem;
  color: #4FC3F7;
}
.weather-precip.high-precip {
  color: #e05555;
  font-weight: bold;
}

/* ------------------------------
   LISTS & LINKS
------------------------------ */
.day-card {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem 1.25rem 2.5rem;
  margin: 0.75rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s, background 0.2s;
  position: relative;
}
.day-card:active {
  transform: scale(0.98);
  background: var(--bg-card-hover);
}
/* Visual cue for clicking */
.day-card::after {
  content: '‹';
  position: absolute;
  left: 1.25rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  opacity: 0.5;
}
.day-number {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-left: 1rem; flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.day-card.alert-high { border-color: rgba(220,80,50,0.4); }
.day-info { flex: 1; min-width: 0; }
.day-date { font-size: 0.7rem; color: var(--text-muted); }
.day-title { font-size: 0.95rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.day-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.day-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  flex-shrink: 0;
}
.stat-chip {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  background: rgba(74, 222, 128, 0.2);
  color: var(--green-light);
  white-space: nowrap;
}
.stat-chip.blue { background: rgba(27,79,138,0.2); color: #6fa3e0; }

/* ------------------------------
   DAY HERO (With Image Background)
------------------------------ */
.day-hero {
  position: relative;
  padding: 4rem 1rem 4rem; /* Extra padding for overlap */
  background-size: cover;
  background-position: center;
  background-color: #1a222c;
  color: #fff;
}
.day-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(10,15,20,0.2) 0%, rgba(10,15,20,1) 95%);
  z-index: 1;
}
.day-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.day-hero-date {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
.day-hero-title {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
  font-weight: 800;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

/* ------------------------------
   OVERLAP STATS BAR (Figma Style)
------------------------------ */
.trek-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
  margin-top: -3rem; /* OVERLAPPING TRICK */
  margin-bottom: 1.5rem;
}
.trek-stat {
  background: rgba(20, 25, 35, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.25rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.trek-stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}
.trek-stat-label { 
  font-size: 0.65rem; 
  color: var(--text-muted); 
  margin-top: 2px; 
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ------------------------------
   SCHEDULE & TIPS
------------------------------ */
.schedule-list {
  padding: 0 1.25rem;
  margin-bottom: 1rem;
}
.schedule-item {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  align-items: center;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-time {
  width: 65px; flex-shrink: 0;
  font-weight: bold; color: var(--gold);
  font-size: 1.1rem;
}
.schedule-activity {
  flex-grow: 1;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.schedule-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}
.tip-list { display: flex; flex-direction: column; gap: 0.75rem; }
.tip-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.95rem; line-height: 1.5; }
.tip-icon { color: var(--gold); font-size: 1.2rem; margin-top: -2px; }

/* ------------------------------
   TABS
------------------------------ */
.tabs-container { margin-top: 1rem; }
.tabs {
  display: flex;
  overflow-x: auto;
  gap: 0.75rem;
  padding: 0 1.25rem;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  background: var(--bg-card);
  border: var(--glass-border);
  color: var(--text-muted);
  padding: 0.75rem 1.25rem;
  border-radius: 20px;
  font-size: 0.95rem;
  white-space: nowrap;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.tab-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ===== MAP ===== */
#map {
  width: 100%;
  height: 60vh;
  min-height: 300px;
  border-radius: 0;
  z-index: 1;
}
.map-progress {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: none;
}

/* ===== STRETCHES ===== */
.stretch-item {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
}
.stretch-item:last-child { border-bottom: none; }
.stretch-name { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.stretch-duration { font-size: 0.72rem; color: var(--gold); margin-bottom: 0.3rem; }
.stretch-desc { font-size: 0.8rem; color: var(--text-muted); }

/* ===== WEIGHT BAR ===== */
.weight-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 0 1rem 1rem;
}
.weight-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.weight-row:last-child { border-bottom: none; font-weight: 700; color: var(--gold); font-size: 0.95rem; }
.weight-val { font-family: 'Inter', sans-serif; font-weight: 600; }

.tab-btn .lucide {
  stroke: currentColor;
}
.tab-btn.active .lucide {
  stroke: #000;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== OFFLINE INDICATOR ===== */
.offline-banner {
  background: rgba(45,80,22,0.9);
  color: white;
  text-align: center;
  padding: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  display: none;
}
body.offline .offline-banner { display: block; }

/* ===== GPS TRACKER ===== */
.gps-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 0 1rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.gps-status { font-size: 1.8rem; }
.gps-info { flex: 1; }
.gps-distance { font-size: 1.3rem; font-weight: 800; color: var(--green-light); font-family: 'Inter', sans-serif; }
.gps-label { font-size: 0.72rem; color: var(--text-dim); }
.gps-btn {
  background: var(--green);
  color: white;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  min-height: 44px;
}

/* ===== UTILITY ===== */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-light); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.85rem; }
.font-mono { font-family: 'Inter', sans-serif; }
.divider { height: 1px; background: var(--border); margin: 0.5rem 0; }
.pb-nav { padding-bottom: calc(var(--nav-height) + 1rem); }
.center { text-align: center; }

/* ===== TABLET ===== */
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
  .trek-stats-bar { grid-template-columns: repeat(4, 1fr); }
  .days-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .days-list .day-card { margin-bottom: 0; }
}

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }
  .site-header { padding: 0 2rem; }
}

/* ------------------------------
   INFO & ALERT BOXES
------------------------------ */
.info-box, .alert-box {
  margin: 0 1.25rem 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: var(--glass-border);
}
.alert-box {
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid rgba(220, 50, 50, 0.3);
}
.alert-box h3 {
  color: #f87171;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.alert-box ul, .info-box ul {
  padding-right: 1.25rem;
  margin: 0;
}
.alert-box li, .info-box li {
  margin-bottom: 0.25rem;
}

/* ------------------------------
   FLIGHT CARDS
------------------------------ */
.flight-card {
  margin: 0 1.25rem 1.25rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.flight-number {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.flight-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.flight-city {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}
.flight-code {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.flight-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.7;
}
.flight-details {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed rgba(255,255,255,0.1);
  padding-top: 0.75rem;
}
.flight-detail-item {
  text-align: center;
}
.flight-detail-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.flight-detail-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===== LUCIDE ICONS & HOVER STATES ===== */
.lucide {
  stroke: var(--gold);
  stroke-width: 1.5px;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  transition: all 0.2s;
}

.day-emoji .lucide {
  width: 24px;
  height: 24px;
  stroke: var(--text); /* White/light color so it pops on the dark circle */
}

.nav-item .lucide {
  width: 24px;
  height: 24px;
  stroke: var(--text-muted);
}
.nav-item.active .lucide {
  stroke: var(--gold);
  stroke-width: 2px;
}

.step-icon .lucide {
  width: 20px;
  height: 20px;
}

@media (hover: hover) {
  .day-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.2);
  }
  .day-card:hover .day-emoji .lucide {
    stroke: var(--gold);
    transform: scale(1.1);
  }
  .nav-item:hover {
    color: var(--gold);
  }
  .nav-item:hover .lucide {
    stroke: var(--gold);
    transform: translateY(-2px);
  }
  .tab-btn:hover {
    background: rgba(255,255,255,0.1);
  }
  .hotel-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
  }
}

/* ------------------------------
   CARDS & TRANSPORT
------------------------------ */
.card-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: var(--glass-border);
  gap: 0.75rem;
}
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.transport-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.transport-step:last-child {
  margin-bottom: 0;
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.step-body {
  flex: 1;
}
.step-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.step-detail {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

/* ===== LUCIDE ICONS & HOVER STATES ===== */
.lucide {
  stroke: var(--gold);
  stroke-width: 1.5px;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  transition: all 0.2s;
}

.day-emoji .lucide {
  width: 24px;
  height: 24px;
  stroke: var(--text); /* White/light color so it pops on the dark circle */
}

.nav-item .lucide {
  width: 24px;
  height: 24px;
  stroke: var(--text-muted);
}
.nav-item.active .lucide {
  stroke: var(--gold);
  stroke-width: 2px;
}

.step-icon .lucide {
  width: 20px;
  height: 20px;
}

@media (hover: hover) {
  .day-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.2);
  }
  .day-card:hover .day-emoji .lucide {
    stroke: var(--gold);
    transform: scale(1.1);
  }
  .nav-item:hover {
    color: var(--gold);
  }
  .nav-item:hover .lucide {
    stroke: var(--gold);
    transform: translateY(-2px);
  }
  .tab-btn:hover {
    background: rgba(255,255,255,0.1);
  }
  .hotel-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
  }
}

/* ------------------------------
   CARDS & TRANSPORT
------------------------------ */
.card-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: var(--glass-border);
  gap: 0.75rem;
}
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.transport-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.transport-step:last-child {
  margin-bottom: 0;
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.step-body {
  flex: 1;
}
.step-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.step-detail {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}
.step-price {
  font-size: 0.85rem;
  color: var(--green-light);
  font-weight: 600;
}
.step-note {
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 0.25rem;
}

/* HOTEL CARD */
.hotel-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1rem;
  margin: 0 1.25rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.hotel-name { font-size: 1.2rem; font-weight: bold; margin-bottom: 0.25rem; }
.hotel-location { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.25rem; }
.hotel-location .lucide { width: 14px; height: 14px; stroke: var(--gold); }
.hotel-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.hotel-tag { font-size: 0.75rem; padding: 0.1rem 0.4rem; border-radius: 4px; background: rgba(255,255,255,0.1); display: flex; align-items: center; gap: 0.2rem; }
.hotel-tag .lucide { width: 12px; height: 12px; }
.hotel-tag.success { background: rgba(45,80,22,0.3); color: #8bc34a; border: 1px solid rgba(139,195,74,0.3); }
.hotel-tag.danger { background: rgba(220,100,50,0.2); color: #ff9800; border: 1px solid rgba(255,152,0,0.3); }
.hotel-note { font-size: 0.9rem; margin-bottom: 0.75rem; line-height: 1.4; display: flex; align-items: flex-start; gap: 0.3rem; color: var(--text-dim); }
.hotel-note .lucide { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; stroke: var(--gold); }
.hotel-actions { display: flex; gap: 0.5rem; }
.hotel-btn { font-size: 0.8rem; background: rgba(255,255,255,0.1); color: #fff; padding: 0.4rem 0.8rem; border-radius: 6px; text-decoration: none; display: flex; align-items: center; gap: 0.3rem; }
.hotel-btn .lucide { width: 14px; height: 14px; stroke: var(--gold); }
