/* ========================================
   ASSIA–GINDI JOINT FAMILY TRIP 2026
   Shared Stylesheet — assiaginditrip.clawz.org
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep:    #0f1923;
  --bg-card:    #111d2b;
  --bg-card2:   #13222f;
  --bg-hover:   #172840;
  --border:     #1e3448;
  --border2:    #1a2e42;
  --text:       #e8eaf0;
  --text-muted: #7b93a8;
  --text-dim:   #546e7a;
  --accent-blue:   #64b5f6;
  --accent-green:  #81c784;
  --accent-purple: #ce93d8;
  --accent-orange: #ffb74d;
  --hotel-bg:   rgba(25,60,100,.4);
  --hotel-border: #1e4060;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.3);
  --shadow-md:  0 4px 20px rgba(0,0,0,.4);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.5);
  /* Phase colours */
  --phase-joint:  #81c784;
  --phase-solo:   #64b5f6;
  --phase-nyc:    #ffb74d;
  --phase-miami:  #ce93d8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; font-family: 'Inter', sans-serif; }

p { color: var(--text-muted); line-height: 1.7; }
a { color: var(--accent-blue); text-decoration: none; transition: color .2s; }
a:hover { color: #90caf9; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(15,25,35,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-brand {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  background: linear-gradient(90deg, var(--phase-joint), var(--accent-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--text-muted); font-size: .82rem; font-weight: 500;
  padding: 6px 12px; border-radius: 6px; transition: all .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg-hover); }
.nav-links a.active { color: var(--accent-blue); }
.nav-hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }

/* === PAGE LAYOUT === */
.page-content { padding-top: 60px; min-height: 100vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* === HERO === */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a1520 0%, var(--bg-deep) 40%, #0d1a10 100%);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px 36px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(129,199,132,.07) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 30%, rgba(100,181,246,.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.hero-title { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.hero-subtitle { font-size: 1rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px; font-size: .78rem; font-weight: 600; border: 1px solid;
}
.hero-badge.joint  { background: rgba(129,199,132,.12); color: var(--phase-joint);  border-color: rgba(129,199,132,.3); }
.hero-badge.solo   { background: rgba(100,181,246,.12); color: var(--phase-solo);   border-color: rgba(100,181,246,.3); }
.hero-badge.nyc    { background: rgba(255,183,77,.12);  color: var(--phase-nyc);    border-color: rgba(255,183,77,.3); }
.hero-badge.miami  { background: rgba(206,147,216,.12); color: var(--phase-miami);  border-color: rgba(206,147,216,.3); }

/* === MAP === */
#main-map {
  height: 420px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-lg);
}

/* === PHASE PILLS === */
.phase-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; border-radius: 20px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; border: 1px solid;
}
.phase-pill.joint  { background: rgba(129,199,132,.15); color: var(--phase-joint);  border-color: rgba(129,199,132,.35); }
.phase-pill.solo   { background: rgba(100,181,246,.15); color: var(--phase-solo);   border-color: rgba(100,181,246,.35); }
.phase-pill.nyc    { background: rgba(255,183,77,.15);  color: var(--phase-nyc);    border-color: rgba(255,183,77,.35); }
.phase-pill.miami  { background: rgba(206,147,216,.15); color: var(--phase-miami);  border-color: rgba(206,147,216,.35); }

/* === PHASE BLOCKS === */
.phase-block {
  border-radius: var(--radius-lg); border: 1px solid;
  padding: 28px; margin-bottom: 36px;
  position: relative; overflow: hidden;
}
.phase-block::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; border-radius: 4px 0 0 4px;
}
.phase-block.joint  { background: rgba(129,199,132,.05); border-color: rgba(129,199,132,.2); }
.phase-block.joint::before { background: var(--phase-joint); }
.phase-block.solo   { background: rgba(100,181,246,.05); border-color: rgba(100,181,246,.2); }
.phase-block.solo::before { background: var(--phase-solo); }
.phase-block.nyc    { background: rgba(255,183,77,.05);  border-color: rgba(255,183,77,.2); }
.phase-block.nyc::before { background: var(--phase-nyc); }
.phase-block.miami  { background: rgba(206,147,216,.05); border-color: rgba(206,147,216,.2); }
.phase-block.miami::before { background: var(--phase-miami); }

.phase-block-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.phase-block-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }

/* === DAY CARDS === */
.day-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px 24px; margin-bottom: 16px; transition: all .2s;
}
.day-card:hover { border-color: rgba(100,181,246,.25); box-shadow: var(--shadow-sm); }
.day-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.day-num {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; flex-shrink: 0; font-family: 'Inter', sans-serif; line-height: 1;
  text-align: center;
}
.day-num.joint  { background: rgba(129,199,132,.2); color: var(--phase-joint);  border: 2px solid rgba(129,199,132,.4); }
.day-num.solo   { background: rgba(100,181,246,.2); color: var(--phase-solo);   border: 2px solid rgba(100,181,246,.4); }
.day-num.nyc    { background: rgba(255,183,77,.2);  color: var(--phase-nyc);    border: 2px solid rgba(255,183,77,.4); }
.day-num.miami  { background: rgba(206,147,216,.2); color: var(--phase-miami);  border: 2px solid rgba(206,147,216,.4); }

.day-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.day-subtitle { font-size: .78rem; color: var(--text-muted); }

.day-activities {
  list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; margin-bottom: 14px;
}
.day-activity {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .82rem; color: var(--text-muted); padding: 8px 12px;
  background: var(--bg-hover); border-radius: 8px; border: 1px solid var(--border);
}
.day-activity .act-icon { font-size: 1rem; flex-shrink: 0; }

/* === DRIVE STRIP === */
.drive-strip {
  display: flex; align-items: center; gap: 10px; padding: 8px 14px;
  background: rgba(100,181,246,.06); border: 1px solid rgba(100,181,246,.15);
  border-radius: 8px; font-size: .78rem; color: var(--text-muted); margin-bottom: 14px;
}
.drive-strip strong { color: var(--accent-blue); }

/* === LODGING === */
.lodging-card {
  background: var(--hotel-bg); border: 1px solid var(--hotel-border);
  border-radius: var(--radius-sm); padding: 16px; margin-bottom: 12px; transition: transform .2s;
}
.lodging-card:hover { transform: translateY(-2px); }
.lodging-name { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.lodging-stars { color: #ffd54f; font-size: .8rem; margin-bottom: 8px; }
.lodging-price {
  font-size: .78rem; font-weight: 600; padding: 2px 8px; border-radius: 4px;
  display: inline-block; margin-bottom: 8px;
  background: rgba(100,181,246,.15); color: var(--accent-blue);
}
.lodging-details { font-size: .78rem; color: var(--text-muted); line-height: 1.6; }
.lodging-tag {
  display: inline-block; font-size: .65rem; padding: 2px 7px; border-radius: 10px;
  font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-top: 6px;
}
.tag-best { background: rgba(255,183,77,.2); color: #ffb74d; }
.tag-book { background: rgba(239,83,80,.2); color: #ef5350; }
.tag-dog  { background: rgba(129,199,132,.2); color: #81c784; }

/* === CARDS === */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px; transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: var(--border2); box-shadow: var(--shadow-sm); }
.card-grid { display: grid; gap: 20px; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* === ATTRACTION CARDS === */
.attraction-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px; display: flex; gap: 12px; transition: all .2s;
}
.attraction-card:hover { background: var(--bg-hover); transform: translateX(4px); border-color: rgba(100,181,246,.3); }
.attraction-icon { font-size: 1.5rem; flex-shrink: 0; }
.attraction-name { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.attraction-desc { font-size: .78rem; color: var(--text-muted); }

/* === OPTION COMPARISON === */
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
@media (max-width: 700px) { .option-grid { grid-template-columns: 1fr; } }

.option-card {
  border-radius: var(--radius-lg); padding: 24px; border: 2px solid;
  position: relative; overflow: hidden; transition: all .25s;
}
.option-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.option-card.nyc    { background: rgba(255,183,77,.05);  border-color: rgba(255,183,77,.3); }
.option-card.miami  { background: rgba(206,147,216,.05); border-color: rgba(206,147,216,.3); }
.option-card.opt-a  { background: rgba(100,181,246,.05); border-color: rgba(100,181,246,.3); }
.option-card.opt-b  { background: rgba(129,199,132,.05); border-color: rgba(129,199,132,.3); }

.option-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.option-card.nyc   .option-title { color: var(--phase-nyc); }
.option-card.miami .option-title { color: var(--phase-miami); }
.option-card.opt-a .option-title { color: var(--phase-solo); }
.option-card.opt-b .option-title { color: var(--phase-joint); }

.option-list { list-style: none; margin-top: 14px; }
.option-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .82rem; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--border);
}
.option-list li:last-child { border-bottom: none; }

/* === STATS BANNER === */
.stats-banner { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0; }
.stat-card {
  flex: 1; min-width: 120px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px; text-align: center;
}
.stat-num {
  font-size: 2rem; font-weight: 800; font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block;
}
.stat-label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .8px; margin-top: 4px; }

/* === INFO BOXES === */
.info-box {
  border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 16px;
  border: 1px solid; display: flex; gap: 14px; align-items: flex-start;
}
.info-box.tip    { background: rgba(129,199,132,.08); border-color: rgba(129,199,132,.25); }
.info-box.warn   { background: rgba(255,183,77,.08);  border-color: rgba(255,183,77,.25); }
.info-box.israel { background: rgba(100,181,246,.08); border-color: rgba(100,181,246,.25); }
.info-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-text { font-size: .82rem; color: var(--text-muted); line-height: 1.7; }
.info-text strong { color: var(--text); }

/* === CHECKLIST === */
.check-list {
  list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px;
}
.check-item {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 8px 12px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; font-size: .82rem; color: var(--text-muted); cursor: pointer; transition: all .2s; user-select: none;
}
.check-item:hover { background: var(--bg-hover); }
.check-item input { display: none; }
.check-box {
  width: 18px; height: 18px; border: 2px solid var(--border); border-radius: 4px;
  flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: all .2s; font-size: .65rem;
}
.check-item.checked .check-box { background: var(--accent-green); border-color: var(--accent-green); color: #0a1a0a; }
.check-item.checked span { color: var(--text-dim); text-decoration: line-through; }

/* === BUDGET TABLE === */
.budget-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.budget-table th {
  background: var(--bg-hover); color: var(--text); padding: 12px 16px;
  text-align: left; font-weight: 600; border-bottom: 2px solid var(--border);
}
.budget-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.budget-table tr:hover td { background: var(--bg-hover); }
.budget-table .total-row td { font-weight: 700; color: var(--text); background: rgba(100,181,246,.05); }

/* === SECTION === */
.section { padding: 48px 0; }
.section-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.section-icon { font-size: 1.5rem; }
.section-title { font-size: 1.25rem; font-weight: 700; color: var(--text); }

/* === GRADIENT TEXT === */
.gradient-text {
  background: linear-gradient(135deg, var(--phase-joint), var(--phase-solo), var(--phase-miami));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* === ROUTE TIMELINE === */
.route-timeline { position: relative; padding-left: 40px; }
.route-timeline::before {
  content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--phase-joint), var(--phase-solo), var(--phase-nyc), var(--phase-miami));
}
.route-stop {
  position: relative; margin-bottom: 28px; padding: 16px 20px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); transition: all .2s;
}
.route-stop:hover { border-color: rgba(100,181,246,.3); }
.route-stop::before {
  content: ''; position: absolute; left: -28px; top: 22px;
  width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--bg-deep); box-shadow: 0 0 0 2px;
}

/* === URGENCY BADGES === */
.urgency-red    { background: rgba(239,83,80,.2);  color: #ef5350; border: 1px solid rgba(239,83,80,.3); }
.urgency-yellow { background: rgba(255,183,77,.2); color: #ffb74d; border: 1px solid rgba(255,183,77,.3); }
.urgency-green  { background: rgba(129,199,132,.2); color: #81c784; border: 1px solid rgba(129,199,132,.3); }
.urgency-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 10px; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
}

/* === LEAFLET === */
.leaflet-tile { filter: brightness(.88) saturate(.8) contrast(.95); }
.leaflet-popup-content-wrapper {
  background: #0f1f30 !important; border: 1px solid #1e3a55 !important;
  border-radius: 12px !important; box-shadow: 0 8px 32px rgba(0,0,0,.6) !important; color: #e0e8f0 !important;
}
.leaflet-popup-tip { background: #0f1f30 !important; }
.leaflet-popup-content { color: #e0e8f0; font-family: 'Inter', sans-serif; }
.leaflet-control-attribution { background: rgba(10,20,30,.8) !important; color: #546e7a !important; }
.leaflet-control-attribution a { color: #7b93a8 !important; }
.leaflet-control-zoom a { background: #111d2b !important; color: #90a4ae !important; border-color: #1e3448 !important; }
.leaflet-control-zoom a:hover { background: #172840 !important; color: #e0e8f0 !important; }

/* === FOOTER === */
.footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 32px 24px; text-align: center; color: var(--text-muted); font-size: .8rem;
}
.footer a { color: var(--accent-blue); }

/* === FADE IN === */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(15,25,35,.97); backdrop-filter: blur(12px); padding: 16px;
    border-bottom: 1px solid var(--border); z-index: 8999; gap: 4px;
  }
  .nav-links.open a { padding: 12px 16px; font-size: 1rem; border-radius: 8px; }
  .nav-hamburger { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  #main-map { height: 300px; }
  .option-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  html { font-size: 15px; }
  .nav { padding: 0 10px; height: 44px; }
  .nav-brand { font-size: .88rem; }
  .page-content { padding-top: 44px; }
  .section { padding: 24px 0; }
  .container, .container-wide { padding: 0 12px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
  .hero { padding: 28px 12px 24px; }
  .stats-banner { gap: 8px; }
  .stat-card { min-width: 80px; padding: 14px 10px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: .65rem; }
  .phase-block { padding: 18px 14px; }
  .day-card { padding: 14px; }
  .check-list { grid-template-columns: 1fr; }
  .footer { padding: 24px 12px; font-size: .75rem; }
  #main-map { height: 240px; }
}

/* ========== ADDITIONAL STYLES — Route & Logistics Pages ========== */

/* Hero Mini */
.hero-mini {
  text-align: center;
  padding: 40px 20px 30px;
  margin-bottom: 30px;
}
.hero-mini h1 { margin-bottom: 8px; }
.hero-mini p { font-size: 1.1rem; }

/* Phase Sections */
.phase-section { margin-bottom: 50px; }

.phase-header {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.phase-header.joint { background: rgba(129,199,132,.08); border-color: rgba(129,199,132,.25); }
.phase-header.solo { background: rgba(100,181,246,.08); border-color: rgba(100,181,246,.25); }
.phase-header.nyc { background: rgba(255,183,77,.08); border-color: rgba(255,183,77,.25); }
.phase-header.miami { background: rgba(206,147,216,.08); border-color: rgba(206,147,216,.25); }
.phase-header h2 { margin-bottom: 4px; }
.phase-header p { font-size: .9rem; }

.phase-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.phase-badge.joint { background: rgba(129,199,132,.2); color: var(--accent-green); }
.phase-badge.solo { background: rgba(100,181,246,.2); color: var(--accent-blue); }
.phase-badge.nyc { background: rgba(255,183,77,.2); color: var(--accent-orange); }
.phase-badge.miami { background: rgba(206,147,216,.2); color: var(--accent-purple); }

/* Day Cards */
.day-badge {
  display: inline-block;
  background: rgba(100,181,246,.15);
  color: var(--accent-blue);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
}
.day-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 768px) { .day-grid { grid-template-columns: 1fr; } }

.day-main p { margin-bottom: 10px; }
.day-main ul { margin: 8px 0 12px 20px; }
.day-main li { color: var(--text-muted); margin-bottom: 6px; line-height: 1.6; }
.day-main h4 { margin: 16px 0 8px; color: var(--accent-blue); font-size: .95rem; }

.day-sidebar { display: flex; flex-direction: column; gap: 12px; }

.info-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.info-card h4 { font-size: .8rem; margin-bottom: 6px; font-family: 'Inter', sans-serif; color: var(--accent-blue); }
.info-card p { font-size: .82rem; margin-bottom: 3px; }
.info-card .dim { color: var(--text-dim); font-size: .78rem; }

.highlight {
  background: rgba(255,183,77,.1);
  border-left: 3px solid var(--accent-orange);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 12px 0;
  font-size: .88rem;
  color: var(--text-muted);
}

/* Summary / Comparison */
.summary-section {
  margin: 50px 0;
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.summary-section h2 { margin-bottom: 20px; text-align: center; }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) { .comparison-grid { grid-template-columns: 1fr; } }

.compare-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.compare-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.compare-card ul { list-style: none; }
.compare-card li { padding: 6px 0; color: var(--text-muted); border-bottom: 1px solid rgba(30,52,72,.5); font-size: .88rem; }
.compare-card li:last-child { border-bottom: none; font-weight: 600; color: var(--accent-blue); }
.nyc-border { border-color: rgba(255,183,77,.4); }
.miami-border { border-color: rgba(206,147,216,.4); }

/* Logistics Page */
.logistics-section { margin-bottom: 50px; }
.logistics-section h2 { margin-bottom: 20px; }

.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.logistics-grid.three-col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .logistics-grid { grid-template-columns: 1fr; }
  .logistics-grid.three-col { grid-template-columns: 1fr; }
}

.logistics-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.logistics-card h3 { font-size: 1rem; margin-bottom: 14px; color: var(--text); }
.logistics-card ul { list-style: none; }
.logistics-card li { padding: 4px 0; color: var(--text-muted); font-size: .85rem; }

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(30,52,72,.4);
  font-size: .85rem;
}
.detail-row .label { color: var(--text-dim); font-weight: 500; min-width: 120px; }
.detail-row span:last-child { color: var(--text-muted); text-align: right; }

.tip-box {
  background: rgba(100,181,246,.08);
  border-left: 3px solid var(--accent-blue);
  padding: 10px 14px;
  margin-top: 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .82rem;
  color: var(--text-muted);
}

/* Drive Table */
.drive-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.drive-table th, .drive-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-muted);
}
.drive-table th { color: var(--text-dim); font-weight: 600; text-transform: uppercase; font-size: .72rem; letter-spacing: .5px; }
.drive-table tr.total td { color: var(--accent-blue); border-top: 2px solid var(--accent-blue); border-bottom: none; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.check-item.urgent { border-left: 3px solid #ef5350; }
.check-item.important { border-left: 3px solid var(--accent-orange); }
.check-item.normal { border-left: 3px solid var(--accent-green); }
.check-icon { font-size: 1.2rem; margin-top: 2px; }
.check-item strong { color: var(--text); display: block; margin-bottom: 4px; }
.check-item p { font-size: .82rem; color: var(--text-dim); margin: 0; }

/* Pack List */
.pack-list { list-style: none !important; }
.pack-list li {
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: .85rem;
}
.pack-list li::before {
  content: '☐';
  position: absolute;
  left: 0;
  color: var(--text-dim);
}

/* Tips Grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .tips-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .tips-grid { grid-template-columns: 1fr; } }

.tip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.tip-card h4 { margin-bottom: 8px; font-family: 'Inter', sans-serif; font-size: .9rem; }
.tip-card p { font-size: .82rem; line-height: 1.6; }

/* Budget Table */
.budget-table-wrap { overflow-x: auto; }
.budget-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.budget-table th, .budget-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-muted);
}
.budget-table th {
  background: var(--bg-card);
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .5px;
}
.budget-table .total-row td {
  color: var(--accent-blue);
  border-top: 2px solid var(--accent-blue);
  font-weight: 700;
  font-size: .9rem;
  padding-top: 16px;
}
