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

:root {
  --deep: #0c2340;
  --ocean: #0891b2;
  --ocean-dark: #0e7490;
  --teal: #06b6d4;
  --teal-light: #67e8f9;
  --sand: #f5f0e8;
  --sand-light: #faf7f2;
  --sand-dark: #d4c9b8;
  --warm: #e8dfd3;
  --coral: #e86835;
  --coral-light: #f28c6a;
  --sunset: #f97316;
  --foam: #ecfeff;
  --ink: #1a1a2e;
  --ink-light: #374151;
  --muted: #6b7280;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(12,35,64,0.06), 0 8px 24px rgba(12,35,64,0.08);
  --shadow-lg: 0 4px 12px rgba(12,35,64,0.08), 0 20px 48px rgba(12,35,64,0.12);
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--sand-light);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

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

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.nav-scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--warm);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-surf { color: var(--deep); }
.logo-treks { color: var(--ocean); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover, .nav-link.active { color: var(--ocean); }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ocean);
  border-radius: 1px;
}

.nav-cta {
  background: var(--coral);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: var(--coral-light);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.nav-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
  position: absolute;
  left: 0;
}

.nav-mobile-toggle span:nth-child(1) { top: 0; }
.nav-mobile-toggle span:nth-child(2) { top: 9px; }
.nav-mobile-toggle span:nth-child(3) { top: 18px; }

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

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  max-width: 1200px;
  margin: 0 auto;
}

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

.nav-mobile a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--ink-light);
  border-bottom: 1px solid var(--warm);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 104, 53, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--deep);
}

.btn-outline:hover {
  background: var(--deep);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--sand);
  border: 2px solid rgba(245, 240, 232, 0.4);
}

.btn-outline-light:hover {
  background: var(--sand);
  color: var(--deep);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12,35,64,0.92) 0%, rgba(8,145,178,0.75) 50%, rgba(232,104,53,0.6) 100%),
    url('https://images.unsplash.com/photo-1502680390548-bdbac40019ae?w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}

.hero-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal-light);
  font-weight: 800;
}

.hero-line { display: block; }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== SECTIONS ========== */
.section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header {
  margin-bottom: 48px;
}

.section-header-light h2 { color: var(--white); }
.section-header-light .section-sub { color: rgba(255,255,255,0.6); }

.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 12px;
  max-width: 560px;
}

.section-more {
  text-align: center;
  margin-top: 48px;
}

/* ========== DESTINATION CARDS ========== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dest-grid-full {
  grid-template-columns: repeat(3, 1fr);
}

.dest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dest-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dest-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}

.bg-emerald { background: #059669; }
.bg-ocean { background: var(--ocean); }
.bg-coral { background: var(--coral); }
.bg-sand-dark { background: #92826e; color: var(--white); }

.dest-vibe {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  backdrop-filter: blur(4px);
  text-transform: capitalize;
}

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

.dest-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.dest-country {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.dest-short {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dest-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}

.meta-dot { color: var(--sand-dark); }

/* ========== ROUTE CARDS ========== */
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.route-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.route-card-wide {
  display: grid;
  grid-template-columns: 400px 1fr;
}

.route-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.route-card-wide .route-card-img {
  height: 100%;
  min-height: 240px;
}

.route-season {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.route-difficulty {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--ocean);
  color: var(--white);
  text-transform: capitalize;
}

.route-card-body {
  padding: 24px;
}

.route-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.route-meta {
  font-size: 0.82rem;
  color: var(--ocean);
  font-weight: 500;
  margin-bottom: 10px;
}

.route-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.route-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--coral);
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--deep) 0%, #164e63 100%);
  padding: 140px 24px 64px;
  text-align: center;
}

.page-hero-sm {
  padding: 140px 24px 56px;
}

.page-hero-routes {
  background: linear-gradient(135deg, #1a1a2e 0%, var(--deep) 50%, #164e63 100%);
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-content .section-tag { color: var(--teal-light); }

.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}

/* ========== FILTERS ========== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  align-items: center;
}

.filter-chip {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--white);
  color: var(--ink-light);
  border: 1px solid var(--warm);
  transition: all 0.2s;
}

.filter-chip:hover {
  border-color: var(--ocean);
  color: var(--ocean);
}

.filter-chip.active {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}

.filter-divider {
  width: 1px;
  height: 24px;
  background: var(--warm);
  margin: 0 4px;
}

/* ========== DESTINATION DETAIL ========== */
.dest-hero, .route-hero {
  height: 50vh;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dest-hero-overlay, .route-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,35,64,0.85) 0%, rgba(12,35,64,0.3) 100%);
  display: flex;
  align-items: flex-end;
}

.dest-hero-content, .route-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  width: 100%;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  display: inline-block;
  transition: color 0.2s;
}

.breadcrumb:hover { color: var(--white); }

.dest-hero-content h1, .route-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.dest-hero-loc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
}

.route-hero-stops {
  font-size: 1.05rem;
  color: var(--teal-light);
  margin-bottom: 12px;
  font-weight: 500;
}

.route-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.dest-detail, .route-detail {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.dest-detail-main, .route-detail-main { min-width: 0; }

.dest-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.badge {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white);
}

.dest-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: 40px;
}

.dest-description p { margin-bottom: 16px; }

.dest-section {
  margin-bottom: 40px;
}

.dest-section h2, .route-detail-main h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ink);
}

.route-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: 48px;
}

.route-description p { margin-bottom: 16px; }

/* Month Grid */
.month-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
}

.month-cell {
  text-align: center;
  padding: 10px 4px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--warm);
  color: var(--muted);
  transition: all 0.2s;
}

.month-good {
  background: var(--ocean);
  color: var(--white);
}

/* Temperature */
.temp-range { padding: 8px 0; }

.temp-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.temp-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.temp-fill { flex: 1; }

/* Attractions */
.attractions-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.attractions-list li {
  font-size: 0.92rem;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--warm);
  color: var(--ink-light);
}

.attractions-list li::before {
  content: '\2192 ';
  color: var(--ocean);
  font-weight: 600;
}

/* Sidebar Cards */
.side-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.side-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.side-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.side-airtreks {
  background: var(--deep);
  color: var(--white);
}

.side-airtreks h3 { color: var(--teal-light); }
.side-airtreks p { color: rgba(255,255,255,0.7); }

.powered-by {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4) !important;
  margin-bottom: 4px !important;
}

.related-route {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--warm);
}

.related-route:last-child { border-bottom: none; }

.related-route strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.related-route span {
  font-size: 0.82rem;
  color: var(--muted);
}

.related-route:hover strong { color: var(--ocean); }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--warm);
  font-size: 0.9rem;
}

.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--muted); }
.summary-row strong { color: var(--ink); }

/* ========== TIMELINE ========== */
.timeline {
  position: relative;
  padding-left: 0;
}

.timeline-stop {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.timeline-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: var(--warm);
  min-height: 40px;
}

.timeline-content {
  flex: 1;
  padding-bottom: 32px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.25s;
}

.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.timeline-img {
  height: 100%;
  min-height: 160px;
  background-size: cover;
  background-position: center;
}

.timeline-info {
  padding: 20px 20px 20px 0;
}

.timeline-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-days {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 8px;
}

.timeline-notes {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mini-badge {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--sand);
  color: var(--ink-light);
  text-transform: capitalize;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--sand) 0%, var(--warm) 100%);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.cta-badge {
  text-align: center;
}

.cta-badge-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.cta-badge-inner img {
  height: 28px;
  margin-bottom: 12px;
}

.cta-badge-inner p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.cta-stat {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem !important;
  font-weight: 700;
  color: var(--ocean) !important;
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 35, 64, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--sand);
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover { background: var(--warm); }

.modal h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--warm);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  background: var(--sand-light);
  color: var(--ink);
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 14px;
}

.form-note a {
  color: var(--ocean);
  font-weight: 600;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #059669;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

#formSuccess {
  text-align: center;
  padding: 20px 0;
}

#formSuccess h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

#formSuccess p {
  color: var(--muted);
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--deep);
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-surf { color: var(--white); }
.footer-brand .logo-treks { color: var(--teal-light); }

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.footer-brand p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 64px;
  justify-content: flex-end;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.footer-bottom a {
  color: var(--teal-light);
}

/* ========== EMPTY STATE ========== */
.empty-state {
  text-align: center;
  padding: 64px 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.empty-state a {
  color: var(--ocean);
  font-weight: 600;
}

/* ========== ANIMATIONS ========== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.dest-grid .dest-card:nth-child(2) { transition-delay: 0.08s; }
.dest-grid .dest-card:nth-child(3) { transition-delay: 0.16s; }
.dest-grid .dest-card:nth-child(4) { transition-delay: 0.24s; }
.dest-grid .dest-card:nth-child(5) { transition-delay: 0.32s; }
.dest-grid .dest-card:nth-child(6) { transition-delay: 0.4s; }

.route-grid .route-card:nth-child(2) { transition-delay: 0.1s; }
.route-grid .route-card:nth-child(3) { transition-delay: 0.2s; }

/* ========== MOBILE ========== */
@media (max-width: 1024px) {
  .dest-grid, .dest-grid-full, .route-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-detail, .route-detail {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .route-card-wide {
    grid-template-columns: 1fr;
  }

  .route-card-wide .route-card-img {
    min-height: 200px;
  }

  .timeline-card {
    grid-template-columns: 140px 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-scrolled .nav-mobile.open { display: flex; }

  .hero-content { padding: 120px 24px 60px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .dest-grid, .dest-grid-full, .route-grid {
    grid-template-columns: 1fr;
  }

  .month-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .attractions-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal { padding: 28px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 40px;
  }

  .filters { gap: 6px; }
  .filter-divider { display: none; }

  .timeline-card {
    grid-template-columns: 1fr;
  }

  .timeline-img {
    min-height: 140px;
  }

  .timeline-info {
    padding: 16px;
  }

  .section { padding: 64px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .month-grid { grid-template-columns: repeat(4, 1fr); }
  .dest-card-img { height: 180px; }
}
