/* ============================================
   BEACH FAMILY TRIP - STYLES
   Dark coastal vibe: navy tones, ocean blues,
   sandy golds, coral accents, beach feel
   ============================================ */

:root {
  --bg-dark: #141820;
  --bg-darker: #0f1218;
  --bg-card: #1c2230;
  --bg-card-hover: #232a3a;
  --bg-section-alt: #181e28;
  --text-primary: #e4e8ed;
  --text-secondary: #a3adb5;
  --text-muted: #778088;
  --accent-blue: #4a90d9;
  --accent-blue-bright: #6bb3e8;
  --accent-gold: #d4a84c;
  --accent-gold-dim: #c49a3d;
  --accent-coral: #d9654a;
  --accent-coral-dim: #c4554a;
  --accent-teal: #4ab5a0;
  --accent-teal-bright: #5ac7b2;
  --accent-seafoam: #7ecbb5;
  --border-color: #2a3040;
  --border-light: #3a4050;
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --nav-height: 56px;
  --tier-budget: #4ab5a0;
  --tier-mid: #4a90d9;
  --tier-splurge: #d4a84c;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--accent-blue-bright);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--accent-gold); }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Selection */
::selection {
  background: rgba(74, 144, 217, 0.35);
  color: var(--text-primary);
}

::-moz-selection {
  background: rgba(74, 144, 217, 0.35);
  color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 5px;
  border: 2px solid var(--bg-darker);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) var(--bg-darker);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 18, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: var(--nav-height);
  transition: background 0.3s;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-gold) !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
}

.nav-links a {
  display: block;
  padding: 8px 12px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(74, 144, 217, 0.15);
}

.nav-links a.active {
  color: var(--accent-blue-bright);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  background: var(--bg-darker);
  background-image: url('images/hero-beach.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 24, 0.6);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(74, 144, 217, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 168, 76, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent-blue-bright);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--accent-blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-blue-bright);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold-dim);
}
.btn-secondary:hover {
  background: rgba(212, 168, 76, 0.1);
  color: var(--accent-gold);
}

.btn-budget {
  background: var(--tier-budget);
  color: #fff;
}
.btn-budget:hover {
  background: var(--accent-teal-bright);
  color: #fff;
  transform: translateY(-1px);
}

.btn-mid {
  background: var(--tier-mid);
  color: #fff;
}
.btn-mid:hover {
  background: var(--accent-blue-bright);
  color: #fff;
  transform: translateY(-1px);
}

.btn-splurge {
  background: var(--tier-splurge);
  color: #fff;
}
.btn-splurge:hover {
  background: var(--accent-gold);
  color: #fff;
  transform: translateY(-1px);
}

.btn-small {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-small:hover {
  background: rgba(74, 144, 217, 0.15);
  color: var(--accent-blue-bright);
  border-color: var(--accent-blue);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--bg-section-alt);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent-blue);
  margin-top: 12px;
  border-radius: 2px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ============================================
   DESTINATION CARDS
   ============================================ */

.dest-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dest-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

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

.dest-card-recommended {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 1px var(--accent-blue), 0 4px 24px rgba(74, 144, 217, 0.15);
}

.dest-recommended-tag {
  background: var(--accent-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  padding: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.dest-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.dest-card-body {
  padding: 20px;
}

.dest-card-body h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.dest-stat-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.dest-stat {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.dest-stat strong {
  display: block;
  font-size: 0.95rem;
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.dest-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   COST TIER CARDS
   ============================================ */

.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}

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

.tier-card-budget {
  border-top: 3px solid var(--tier-budget);
}

.tier-card-mid {
  border-top: 3px solid var(--tier-mid);
}

.tier-card-splurge {
  border-top: 3px solid var(--tier-splurge);
}

.tier-card h3 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-card .tier-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.tier-price {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.1;
  margin-bottom: 4px;
}

.tier-card-budget .tier-price { color: var(--tier-budget); }
.tier-card-mid .tier-price { color: var(--tier-mid); }
.tier-card-splurge .tier-price { color: var(--tier-splurge); }

.tier-per {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}

.tier-breakdown {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tier-breakdown li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.tier-breakdown li:last-child { border-bottom: none; }

.tier-breakdown li span:last-child {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   COST COMPARISON TABLE
   ============================================ */

.cost-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

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

.cost-table thead th {
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 2px solid var(--border-light);
  color: var(--text-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--bg-card);
}

.cost-table thead th.col-budget { color: var(--tier-budget); }
.cost-table thead th.col-mid { color: var(--tier-mid); }
.cost-table thead th.col-splurge { color: var(--tier-splurge); }

.cost-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.cost-table tbody tr:nth-child(even) td {
  background: rgba(255,255,255,0.015);
}

.cost-table tbody tr:hover td {
  background: rgba(74, 144, 217, 0.05);
}

.cost-table tbody td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.cost-table td.val-budget {
  color: var(--tier-budget);
  font-family: var(--font-heading);
  font-weight: 600;
}

.cost-table td.val-mid {
  color: var(--tier-mid);
  font-family: var(--font-heading);
  font-weight: 600;
}

.cost-table td.val-splurge {
  color: var(--tier-splurge);
  font-family: var(--font-heading);
  font-weight: 600;
}

.cost-table tfoot td {
  padding: 14px 16px;
  border-top: 2px solid var(--border-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-card);
}

/* ============================================
   MILITARY BENEFITS
   ============================================ */

.mil-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mil-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}

.mil-card:hover {
  border-color: var(--border-light);
}

.mil-icon {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.mil-card h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.mil-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.mil-card .mil-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-blue-bright);
  letter-spacing: 0.3px;
}

.mil-card .mil-link:hover {
  color: var(--accent-gold);
}

.mil-fact {
  background: rgba(74, 144, 217, 0.08);
  border-left: 3px solid var(--accent-blue);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  margin-bottom: 0;
}

.mil-fact strong { color: var(--accent-blue-bright); }

/* ============================================
   MAP
   ============================================ */

#map,
#trip-map,
#route-map,
.map-container {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  z-index: 1;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-line {
  display: inline-block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ============================================
   DESTINATION DETAIL SECTIONS
   ============================================ */

.dest-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.dest-detail-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.dest-detail-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.dest-info h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.dest-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.dest-info strong { color: var(--text-primary); }

/* Lodging list */
.lodging-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.lodging-list li {
  padding: 12px 16px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: border-color 0.2s;
}

.lodging-list li:hover {
  border-color: var(--border-light);
}

.lodging-list li strong { color: var(--text-primary); }

.lodging-list .lodging-price {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-gold);
  float: right;
}

/* Activity list */
.activity-list {
  list-style: none;
  padding: 0;
}

.activity-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.activity-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-teal);
  opacity: 0.6;
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.pros, .cons {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pros h4 {
  color: var(--accent-teal-bright);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.cons h4 {
  color: var(--accent-coral);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros li, .cons li {
  padding: 3px 0 3px 16px;
  position: relative;
}

.pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent-teal-bright);
  font-weight: 700;
}

.cons li::before {
  content: '-';
  position: absolute;
  left: 2px;
  color: var(--accent-coral);
  font-weight: 700;
}

/* ============================================
   DAY PLAN CARDS
   ============================================ */

.day-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 24px;
  overflow: hidden;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}

.day-number {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-blue-bright);
  background: rgba(74, 144, 217, 0.15);
  padding: 8px 16px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.day-meta h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.day-stats {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.day-body {
  padding: 24px;
}

.day-body > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.day-highlights {
  margin-bottom: 20px;
}

.day-highlights h4 {
  font-size: 0.85rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.day-highlights ul {
  list-style: none;
  padding: 0;
}

.day-highlights li {
  padding: 4px 0 4px 20px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.day-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  opacity: 0.6;
}

.day-lodging {
  background: rgba(74, 144, 217, 0.08);
  border: 1px solid rgba(74, 144, 217, 0.2);
  border-radius: 8px;
  padding: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.day-lodging strong { color: var(--accent-blue-bright); }

.day-warning {
  background: rgba(217, 101, 74, 0.1);
  border: 1px solid rgba(217, 101, 74, 0.25);
  border-radius: 8px;
  padding: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 16px;
}

.day-warning strong { color: var(--accent-coral); }

/* ============================================
   STAT CARDS
   ============================================ */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 500px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s;
}

.stat-card:hover {
  border-color: var(--border-light);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   SAFETY / INFO TABLES
   ============================================ */

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.info-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  padding: 10px 8px;
  border-bottom: 2px solid var(--border-light);
  color: var(--text-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  vertical-align: top;
}

.info-table td:first-child {
  white-space: nowrap;
  padding-right: 16px;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 500;
}

.info-table tbody tr:nth-child(even) td {
  background: rgba(255,255,255,0.015);
}

.warning-text { color: var(--accent-coral) !important; }

.info-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.info-block h3 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.info-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.info-block strong { color: var(--text-primary); }

.info-block ul {
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.info-block li { margin-bottom: 6px; }

.info-warning {
  border-color: var(--accent-gold-dim);
  border-left: 3px solid var(--accent-gold);
}

.info-critical {
  border-color: var(--accent-coral-dim);
  border-left: 3px solid var(--accent-coral);
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
  position: relative;
  padding-left: 28px;
  margin-bottom: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-blue);
  border: 2px solid var(--bg-section-alt);
}

.timeline-item.timeline-highlight::before {
  background: var(--accent-gold);
  box-shadow: 0 0 8px rgba(212, 168, 76, 0.4);
}

.timeline-item.timeline-travel::before {
  background: var(--accent-teal);
}

.timeline-item.timeline-activity::before {
  background: var(--accent-coral);
}

.timeline-time {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.timeline-content h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.timeline-content strong { color: var(--text-primary); }

/* ============================================
   PHOTO CREDITS
   ============================================ */

.photo-credit {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 6px;
  opacity: 0.7;
}

/* Overlay credit on images */
.image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.image-wrap .photo-credit {
  position: absolute;
  bottom: 8px;
  right: 12px;
  margin: 0;
  color: rgba(255,255,255,0.6);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ============================================
   PRICE TAG
   ============================================ */

.price-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  vertical-align: middle;
}

.price-tag-budget {
  background: rgba(74, 181, 160, 0.15);
  color: var(--tier-budget);
  border: 1px solid rgba(74, 181, 160, 0.3);
}

.price-tag-mid {
  background: rgba(74, 144, 217, 0.15);
  color: var(--tier-mid);
  border: 1px solid rgba(74, 144, 217, 0.3);
}

.price-tag-splurge {
  background: rgba(212, 168, 76, 0.15);
  color: var(--tier-splurge);
  border: 1px solid rgba(212, 168, 76, 0.3);
}

.price-tag-expensive {
  background: rgba(217, 101, 74, 0.15);
  color: var(--accent-coral);
  border: 1px solid rgba(217, 101, 74, 0.3);
}

/* ============================================
   DRIVE TIME BADGE
   ============================================ */

.drive-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  white-space: nowrap;
}

.drive-badge svg,
.drive-badge .drive-icon {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* ============================================
   RATING / SCORE BADGES
   ============================================ */

.rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--accent-gold);
}

.rating .star-filled { color: var(--accent-gold); }
.rating .star-empty { color: var(--border-light); }

.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 1;
}

.score-badge-high {
  background: rgba(74, 181, 160, 0.15);
  color: var(--accent-teal-bright);
  border: 2px solid var(--accent-teal);
}

.score-badge-mid {
  background: rgba(74, 144, 217, 0.15);
  color: var(--accent-blue-bright);
  border: 2px solid var(--accent-blue);
}

.score-badge-low {
  background: rgba(217, 101, 74, 0.15);
  color: var(--accent-coral);
  border: 2px solid var(--accent-coral-dim);
}

/* ============================================
   DECISION HELPER
   ============================================ */

.decision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.decision-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.decision-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.decision-card.selected {
  border-color: var(--accent-blue-bright);
  background: rgba(74, 144, 217, 0.08);
  box-shadow: 0 0 0 1px var(--accent-blue), 0 4px 20px rgba(74, 144, 217, 0.15);
}

.decision-card h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.decision-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.decision-card .decision-check {
  display: none;
  margin-top: 12px;
  color: var(--accent-blue-bright);
}

.decision-card.selected .decision-check {
  display: block;
}

.decision-result {
  margin-top: 24px;
  padding: 20px;
  background: rgba(74, 144, 217, 0.08);
  border: 1px solid rgba(74, 144, 217, 0.25);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.decision-result strong { color: var(--accent-blue-bright); }

/* ============================================
   GALLERY
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.gallery-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-blue);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(15, 18, 24, 0.85));
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--text-primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-align: center;
  white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */

#footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-reminder {
  font-size: 1rem;
  color: var(--accent-gold);
  padding: 20px;
  background: rgba(212, 168, 76, 0.08);
  border: 1px solid rgba(212, 168, 76, 0.2);
  border-radius: 8px;
  align-self: start;
}

.footer-links h4, .footer-contacts h4 {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-links ul, .footer-contacts ul {
  list-style: none;
}

.footer-links li, .footer-contacts li {
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.footer-contacts li {
  color: var(--text-secondary);
}

.footer-credit {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

/* ============================================
   TOOLTIP
   ============================================ */

.tooltip-wrap {
  position: relative;
  display: inline-block;
}

.tooltip-wrap .tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card-hover);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.2s;
  z-index: 100;
  pointer-events: none;
}

.tooltip-wrap .tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--border-light);
}

.tooltip-wrap:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* ============================================
   MAP MARKER CUSTOM STYLES
   ============================================ */

.custom-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.custom-marker span {
  transform: rotate(45deg);
  font-size: 14px;
}

.marker-beach { background: var(--accent-gold); }
.marker-lodging { background: var(--accent-blue); }
.marker-food { background: var(--accent-coral); }
.marker-activity { background: var(--accent-teal); }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin {
  animation: spin 1s linear infinite;
}

.btn-refresh .spin-icon {
  display: inline-block;
  transition: transform 0.2s;
}

.btn-refresh.loading .spin-icon {
  animation: spin 1s linear infinite;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.4s ease-out;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

/* ============================================
   BADGE (GENERAL)
   ============================================ */

.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  vertical-align: middle;
  text-transform: uppercase;
}

.badge-rec {
  background: var(--accent-blue);
  color: #fff;
}

.badge-new {
  background: var(--accent-teal);
  color: #fff;
}

.badge-hot {
  background: var(--accent-coral);
  color: #fff;
}

.badge-deal {
  background: var(--accent-gold);
  color: #141820;
}

/* ============================================
   LEAFLET OVERRIDES
   ============================================ */

.leaflet-popup-content-wrapper {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4) !important;
}

.leaflet-popup-content {
  font-family: var(--font-heading) !important;
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
  color: var(--text-secondary) !important;
  margin: 12px 16px !important;
}

.leaflet-popup-content strong { color: var(--text-primary); }

.leaflet-popup-tip {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
}

.leaflet-container a.leaflet-popup-close-button {
  color: var(--text-muted) !important;
}

.leaflet-control-layers {
  background: var(--bg-card) !important;
  color: var(--text-secondary) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
}

.leaflet-control-layers label {
  font-family: var(--font-heading) !important;
  font-size: 0.82rem !important;
}

.leaflet-control-zoom a {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-color) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--bg-card-hover) !important;
}

/* ============================================
   MISC UTILITY
   ============================================ */

.text-gold { color: var(--accent-gold); }
.text-blue { color: var(--accent-blue-bright); }
.text-teal { color: var(--accent-teal-bright); }
.text-coral { color: var(--accent-coral); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================
   CONTENT GRIDS (generic)
   ============================================ */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .dest-cards { grid-template-columns: 1fr; }
  .tier-cards { grid-template-columns: 1fr; }
  .mil-cards { grid-template-columns: 1fr; }
  .decision-cards { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .dest-detail-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 52px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(15, 18, 24, 0.98);
    flex-direction: column;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    gap: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .nav-toggle { display: flex; }

  .section { padding: 56px 0; }

  #map,
  #trip-map,
  #route-map,
  .map-container { height: 380px; }

  .day-header {
    flex-direction: column;
    gap: 8px;
  }

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

  .gallery-item img { height: 160px; }

  .cost-table-wrap { margin: 0 -16px; border-radius: 0; }

  .dest-detail-image img { height: 260px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 200px; }
  .hero-desc { font-size: 0.95rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .decision-cards { grid-template-columns: 1fr; }
  .tier-price { font-size: 2rem; }
  .lightbox-nav { padding: 8px 12px; font-size: 1.2rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ============================================
   HTML CLASS COMPATIBILITY LAYER
   Maps actual HTML classes to existing styles
   ============================================ */

/* Grids */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.weather-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

@media (max-width: 900px) {
  .tier-grid, .weather-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .dest-grid, .stats-grid { grid-template-columns: 1fr; }
}

/* Stat Cards */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}
.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 4px;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Destination Cards — HTML naming */
.dest-card--recommended { border-color: var(--accent-blue) !important; box-shadow: 0 0 0 1px var(--accent-blue), 0 4px 24px rgba(74, 144, 217, 0.15); }
.dest-card--cheapest { border-color: var(--tier-budget) !important; box-shadow: 0 0 0 1px var(--tier-budget), 0 4px 24px rgba(74, 181, 160, 0.15); }
.dest-badge { position: absolute; top: 12px; right: 12px; font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; }
.badge-recommended { background: var(--accent-blue); color: #fff; }
.badge-cheapest { background: var(--tier-budget); color: #fff; }
.dest-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.dest-sub { font-weight: 400; font-size: 0.9rem; color: var(--text-secondary); }
.dest-details { margin-bottom: 16px; }
.dest-detail { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 6px; line-height: 1.5; }
.dest-card { position: relative; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; transition: transform 0.2s, border-color 0.2s; cursor: pointer; }
.dest-card:hover { transform: translateY(-2px); border-color: var(--border-light); }
.dest-card.selected { border-color: var(--accent-blue); box-shadow: 0 0 0 2px var(--accent-blue); }

/* Tier Cards — HTML naming */
.tier-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 28px 24px; border-top: 4px solid var(--border-color); cursor: pointer; transition: transform 0.2s, border-color 0.2s; }
.tier-card:hover { transform: translateY(-2px); }
.tier-card.selected { box-shadow: 0 0 0 2px var(--accent-blue); }
.tier-budget { border-top-color: var(--tier-budget); }
.tier-mid { border-top-color: var(--tier-mid); }
.tier-splurge { border-top-color: var(--tier-splurge); }
.tier-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.tier-range { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; display: block; margin-bottom: 16px; }
.tier-budget .tier-range { color: var(--tier-budget); }
.tier-mid .tier-range { color: var(--tier-mid); }
.tier-splurge .tier-range { color: var(--tier-splurge); }
.tier-list { list-style: none; padding: 0; margin: 0; }
.tier-list li { font-size: 0.9rem; color: var(--text-secondary); padding: 4px 0; border-bottom: 1px solid var(--border-color); }
.tier-list li:last-child { border-bottom: none; }

/* Cost Calculator */
.calc-display { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 28px; margin-top: 24px; }
.calc-prompt { color: var(--text-muted); text-align: center; font-style: italic; }
.calc-result { text-align: center; }
.calc-dest-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.calc-drive { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.calc-breakdown { max-width: 400px; margin: 0 auto; }
.calc-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-color); font-size: 0.95rem; color: var(--text-secondary); }
.calc-row:last-child { border-bottom: none; }
.calc-total { font-weight: 700; font-size: 1.1rem; color: var(--text-primary); border-top: 2px solid var(--accent-gold); margin-top: 8px; padding-top: 12px; }
.calc-val { font-family: var(--font-heading); font-weight: 600; color: var(--accent-gold); }

/* Subsection title */
.subsection-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--text-primary); margin: 40px 0 16px; }

/* Table wrap */
.table-wrap { overflow-x: auto; margin-bottom: 32px; }

/* Button map */
.btn-map { display: inline-block; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; color: var(--accent-blue-bright); text-decoration: none; padding: 6px 12px; border: 1px solid var(--accent-blue); border-radius: 6px; margin-left: 8px; transition: background 0.2s; }
.btn-map:hover { background: rgba(74, 144, 217, 0.1); }

/* Weather widget */
.weather-live { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; }
.weather-loading { color: var(--text-muted); font-style: italic; }
.weather-averages { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; }
.weather-current-grid { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.weather-temp-big { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--accent-gold); }
.weather-desc { font-size: 1rem; color: var(--text-primary); }
.weather-detail { font-size: 0.85rem; color: var(--text-secondary); }
.weather-forecast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; margin-top: 16px; }
.weather-period { background: var(--bg-darker); border: 1px solid var(--border-color); border-radius: 8px; padding: 12px; text-align: center; }
.weather-period-name { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.weather-period-temp { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--accent-gold); }
.weather-period-short { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* Military/Benefit cards */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.benefit-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; }
.benefit-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
.benefit-card p, .benefit-card li { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.benefit-card ul { padding-left: 20px; margin: 8px 0; }

/* Lodging cards */
.lodging-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; }
.lodging-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 20px; }
.lodging-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.lodging-card p, .lodging-card li { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }
.lodging-budget { border-left: 3px solid var(--tier-budget); }
.lodging-mid { border-left: 3px solid var(--tier-mid); }
.lodging-splurge { border-left: 3px solid var(--tier-splurge); }
.lodging-military { border-left: 3px solid var(--accent-gold); }

/* Tips */
.tips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.tip-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 10px; padding: 16px 20px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.tip-item strong { color: var(--text-primary); }

/* Packing checklist */
.packing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.packing-group h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
.packing-group label { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-secondary); padding: 4px 0; cursor: pointer; }
.packing-group input[type="checkbox"] { accent-color: var(--accent-blue); width: 16px; height: 16px; }

/* Safety table compat */
.safety-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.safety-table th { font-family: var(--font-heading); font-weight: 600; color: var(--text-primary); text-align: left; padding: 10px 12px; border-bottom: 2px solid var(--border-color); }
.safety-table td { padding: 10px 12px; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); }
.safety-table tbody tr:hover { background: rgba(255,255,255,0.02); }

/* Cost table */
.cost-table th:not(:first-child) { text-align: center; }
.cost-table td:not(:first-child) { text-align: center; font-family: var(--font-heading); font-weight: 600; }

/* Itinerary timeline */
.itinerary { position: relative; padding-left: 32px; margin-top: 24px; }
.itinerary::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--accent-blue); }
.itinerary-day { position: relative; margin-bottom: 28px; }
.itinerary-day::before { content: ''; position: absolute; left: -28px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent-blue); border: 2px solid var(--bg-darker); }
.itinerary-day h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--accent-gold); margin-bottom: 8px; }
.itinerary-day p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
