:root {
  --navy: #0d1b2a;
  --navy-light: #1b2f47;
  --cyan: #00d4ff;
  --gold: #d4a23a;
  --terracotta: #b85042;
  --sand: #f4ecd8;
  --white: #ffffff;
  --green: #2ecc71;
  --blue: #3498db;
  --red: #e74c3c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--sand);
  color: var(--navy);
  line-height: 1.6;
}

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 8px;
  color: var(--cyan);
  position: relative;
}

.hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.hero .badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
  position: relative;
}

.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(0,212,255,0.4);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

.badge.price {
  background: var(--gold);
  color: var(--navy);
  border: none;
}

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

section {
  margin-bottom: 50px;
}

h2 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--cyan);
  display: inline-block;
}

.map-container {
  width: 100%;
  height: 550px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  margin-bottom: 16px;
}

.legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
}

.dot-hotel { background: var(--green); }
.dot-airport { background: var(--blue); }
.dot-attraction { background: var(--red); }

.budget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.budget-card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-left: 4px solid var(--cyan);
}

.budget-card .label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.budget-card .value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 4px;
}

.budget-total {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  text-align: center;
  padding: 30px;
  border-radius: 16px;
  margin-top: 20px;
}

.budget-total .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
}

.timeline {
  position: relative;
  padding-left: 30px;
}

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

.timeline-item {
  position: relative;
  margin-bottom: 20px;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid white;
  box-shadow: 0 0 0 1px var(--cyan);
}

.timeline-item .day {
  font-weight: 700;
  color: var(--terracotta);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.timeline-item .desc {
  margin-top: 4px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.activity-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.activity-card:hover {
  transform: translateY(-4px);
}

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

.activity-card .content {
  padding: 18px;
}

.activity-card h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.activity-card .meta {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.tag {
  background: var(--sand);
  color: var(--terracotta);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tag.price { background: var(--gold); color: var(--navy); }

.activity-card p {
  font-size: 0.92rem;
  color: #444;
}

.hotel-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hotel-card img {
  width: 280px;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}

.hotel-card .content {
  padding: 24px;
  flex: 1;
  min-width: 280px;
}

.hotel-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.beach-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

nav.destinations {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav.destinations a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 24px;
  transition: all 0.2s;
  border: 2px solid transparent;
}

nav.destinations a:hover, nav.destinations a.active {
  background: var(--navy);
  color: white;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.comparison-table th {
  background: var(--navy);
  color: white;
  padding: 14px;
  text-align: left;
}

.comparison-table td {
  padding: 14px;
  border-bottom: 1px solid #eee;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover { background: var(--sand); }

.leaflet-popup-content {
  font-family: inherit;
}

footer {
  text-align: center;
  padding: 30px;
  color: #888;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .map-container { height: 400px; }
  .hotel-card img { width: 100%; height: 200px; }
}
