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

/* Font optimization - preload critical fonts */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiJ-Ek-_EeA.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1O4iBJ1Ozg.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Calm, warm, welcoming gradient - ocean sky to soft sunset */
  --bg: linear-gradient(135deg, #fef3c7 0%, #dbeafe 50%, #e0f2fe 100%);
  --surface: rgba(255,255,255,0.92);
  --surface-solid: #ffffff;
  
  /* Text colors - deep navy for readability and trust */
  --text: #1a2332;
  --text-light: #334155;
  --muted: #64748b;
  
  /* Primary - warm ocean teal (calm, trustworthy, inviting) */
  --primary: #0891b2;
  --primary-hover: #06b6d4;
  --primary-light: rgba(6,182,212,0.12);
  
  /* Accent - warm coral/sunset (excitement, energy, book now!) */
  --accent: #f97316;
  --accent-hover: #fb923c;
  --accent-light: rgba(249,115,22,0.15);
  
  /* Secondary accent - warm gold (luxury, premium feel) */
  --accent2: #d97706;
  
  --line: #e2e8f0;
  --ok: #10b981;
  --danger: #ef4444;
  
  /* Shadows - softer for calm feel */
  --shadow-sm: 0 2px 12px rgba(26,35,50,0.08);
  --shadow-md: 0 8px 24px rgba(26,35,50,0.12);
  --shadow-lg: 0 16px 48px rgba(26,35,50,0.16);
  --glow: 0 0 40px rgba(6,182,212,0.25);
  
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
p { color: var(--text-light); margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.7; }
img { display: block; max-width: 100%; }

h1,h2,h3,h4,h5,h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── Layout ── */
.container { width: min(1260px, calc(100% - 2.5rem)); margin: 0 auto; }
.section { padding: 6rem 0; }
.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #0891b2 0%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0891b2;
  margin-bottom: 1rem;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
}

/* ── Keyframes ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn { from { opacity:0; transform:scale(0.92); } to { opacity:1; transform:scale(1); } }
@keyframes slideLeft { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes pulse-glow { 0%,100% { box-shadow:0 0 20px rgba(39,174,96,0.3); } 50% { box-shadow:0 0 50px rgba(39,174,96,0.7); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes rotate {from{transform:rotate(0deg);}to{transform:rotate(360deg);}}
@keyframes heroSlide { 0%,100%{opacity:0;transform:scale(1.05);} 8%{opacity:1;transform:scale(1);} 30%{opacity:1;transform:scale(1);} 38%{opacity:0;transform:scale(1.05);} }

/* ── Reveal animations ── */
.reveal-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.1); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(6,182,212,0.5);
  box-shadow: 0 0 15px rgba(6,182,212,0.3);
}
.nav-name span { color: #f97316; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #0891b2; background: var(--primary-light); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f97316;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.nav-phone:hover { background: rgba(249,115,22,0.15); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── Hero Slider ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,12,24,0.85) 0%, rgba(8,12,24,0.4) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content .container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy { animation: fadeUp 0.9s ease forwards; }
.hero-copy .eyebrow { margin-bottom: 1.25rem; }
.hero-copy h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero-copy h1 span {
  background: linear-gradient(90deg, #0891b2, #f97316, #ec4899);
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
.hero-copy p { font-size: 1.2rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.hero-stat {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #f97316;
  line-height: 1;
}
.hero-stat span { font-size: 0.8rem; color: var(--muted); }

.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  animation: scaleIn 1s ease 0.3s both;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 1.25rem; }
.hero-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.hero-card li::before { content:'✈'; font-size:1.1rem; flex-shrink:0; filter: hue-rotate(200deg); }

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.hero-dot.active { width: 28px; background: #f97316; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6,182,212,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(6,182,212,0.5); }
.btn-outline {
  background: #ffffff;
  color: #0f172a;
  border: 2px solid rgba(8,145,178,0.35);
  box-shadow: 0 10px 24px rgba(8,145,178,0.18);
}
.btn-outline:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  border-color: rgba(8,145,178,0.6);
  box-shadow: 0 14px 30px rgba(8,145,178,0.22);
}
.btn-accent {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(249,115,22,0.5); }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }

/* ── Cards ── */
.cards { display: grid; gap: 1.75rem; }
.cards-2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.cards-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.cards-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.trip-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34,1.2,0.64,1);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.trip-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6,182,212,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(6,182,212,0.2);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.trip-card:hover .card-img { transform: scale(1.05); }
.card-img-wrap { position: relative; overflow: hidden; }
.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #f97316;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-body { padding: 1.5rem 1.75rem 1.75rem; }
.card-body h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 0.5rem; }
.card-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f97316;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 1rem;
}
.card-price small { font-size: 0.75rem; color: var(--muted); font-weight: 400; }
.card-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.card-tag {
  font-size: 0.72rem;
  background: rgba(8,182,212,0.1);
  color: #0891b2;
  border: 1px solid rgba(8,182,212,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

/* ── Testimonials ── */
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: slideLeft 30s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 320px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(6,182,212,0.3); transform: scale(1.02); }
.testimonial-stars { color: #f97316; font-size: 1.1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--text-light); margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(6,182,212,0.3);
}
.testimonial-name { font-weight: 600; font-size: 0.92rem; color: var(--text); }
.testimonial-dest { font-size: 0.78rem; color: var(--muted); }
.testimonials-overflow { overflow: hidden; }

/* ── Travellers Section ── */
.travellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.traveller-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.traveller-photo:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.traveller-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.traveller-photo:hover img { transform: scale(1.08); }
.traveller-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.traveller-photo:hover .traveller-photo-overlay { opacity: 1; }
.traveller-photo-caption { color: #fff; font-size: 0.85rem; font-weight: 600; }

/* ── Why Section ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0891b2, #f97316);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.why-card:hover { border-color: rgba(6,182,212,0.25); transform: translateY(-5px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  display: block;
  animation: float 4s ease-in-out infinite;
}
.why-card h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.6rem; }

/* ── Destination Detail / Blog ── */
.dest-hero {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.dest-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,24,1) 0%, rgba(8,12,24,0.4) 60%, transparent 100%);
}
.dest-hero-content { position: relative; z-index: 2; padding-bottom: 4rem; width: 100%; }

.journey-timeline {
  position: relative;
}
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #0891b2, transparent);
}
.journey-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-left: 60px;
  position: relative;
}
.journey-num {
  position: absolute;
  left: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0891b2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(6,182,212,0.35);
  flex-shrink: 0;
}
.journey-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  flex: 1;
  transition: all 0.3s;
}
.journey-card:hover { border-color: rgba(6,182,212,0.25); background: rgba(6,182,212,0.06); }
.journey-card h4 { color: var(--text); font-size: 1rem; margin-bottom: 0.35rem; }
.journey-meta { display: flex; gap: 1rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.journey-badge {
  font-size: 0.72rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(6,182,212,0.1);
  color: #0891b2;
  border: 1px solid rgba(6,182,212,0.25);
  font-weight: 600;
}

/* ── Photo Gallery ── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
}
.photo-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: all 0.4s;
  cursor: pointer;
}
.photo-gallery img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* ── Blog Post Cards ── */
.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(6,182,212,0.25); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f97316;
  margin-bottom: 0.75rem;
  display: block;
}
.blog-card-body h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; }

/* ── Package detail ── */
.package-header {
  background: var(--surface-solid);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}
.package-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.package-sidebar {
  position: sticky;
  top: 90px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

/* Contact form section */
.contact-form-section {
  padding: 2.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Signup form section */
.signup-form-section {
  padding: 2.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Change password form section */
.change-password-section {
  padding: 2.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.2);
  max-width: 500px;
  margin: 0 auto;
}

/* Form group and label styles */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.form-help {
  color: var(--muted);
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.req { color: var(--danger); margin-left: 0.15rem; }

.auth-card {
  padding: 2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.2);
  max-width: 520px;
  margin: 0 auto;
}
.auth-card-sm { max-width: 480px; }

.btn-full {
  width: 100%;
  margin-bottom: 1rem;
}

.form-footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.form-link {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.form-link:hover {
  color: var(--primary-dark);
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.95);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  background: var(--surface-solid);
  transform: translateY(-1px);
}

.form-input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

/* ── Pricing ── */
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: #0891b2;
  background: rgba(6,182,212,0.07);
  box-shadow: 0 0 40px rgba(6,182,212,0.15);
}
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  right: 0;
  background: #0891b2;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.35rem 0.85rem;
  border-bottom-left-radius: 10px;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: #f97316;
  line-height: 1;
  margin: 1rem 0;
}

/* ── Trust badges ── */
.trust-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3rem 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(8,182,212,0.15);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.25rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.3s;
}
.trust-badge:hover { border-color: #0891b2; color: #0891b2; }
.trust-badge .icon { font-size: 1.1rem; }

/* ── Booking strip ── */
.booking-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

/* ── Notice / Alert ── */
.notice {
  border: 1px solid;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.notice-ok { border-color: rgba(16,185,129,0.35); background: rgba(16,185,129,0.08); color: #6ee7b7; }
.notice-warn { border-color: rgba(245,158,11,0.35); background: rgba(245,158,11,0.08); color: #fcd34d; }
.notice-err { border-color: rgba(239,68,68,0.35); background: rgba(239,68,68,0.08); color: #fca5a5; }

/* ── Footer ── */
.site-footer {
  background: var(--surface-solid);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.92rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-social a:hover { background: #0891b2; border-color: #0891b2; color: #fff; transform: translateY(-3px); }

/* ── Mobile sticky CTA ── */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(8,12,24,0.97);
  border-top: 1px solid rgba(6,182,212,0.1);
  padding: 0.9rem 1.25rem;
  gap: 0.75rem;
  align-items: center;
}

/* ── Counter ── */
.counter-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }

.counter {
  display: inline-block;
  min-width: 1.5ch; /* Prevents layout jump when numbers change */
}

.savings-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff4d4d; /* Bright red/orange to grab attention */
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 2;
}
.counter-item strong {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #0891b2, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.counter-item p { margin-top: 0.25rem; font-size: 0.9rem; }

/* ── Package detail specifics ── */
.incl-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.incl-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; }
.incl-list li::before { content: '✓'; color: #10b981; font-weight: 700; }
.excl-list li::before { content: '✕'; color: #ef4444; font-weight: 700; }

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(8,182,212,0.1);
  border: 1px solid rgba(8,182,212,0.25);
  color: #0891b2;
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.departures-table { width: 100%; border-collapse: collapse; }
.departures-table th { text-align: left; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); padding: 0.75rem 1rem; background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--line); }
.departures-table td { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.92rem; vertical-align: middle; }
.departures-table tr:hover td { background: rgba(8,182,212,0.04); }

/* ── Section divider ── */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ── Gradient sections ── */
.section-gradient {
  background: linear-gradient(135deg, rgba(8,182,212,0.06) 0%, rgba(249,115,22,0.05) 100%);
  border-top: 1px solid rgba(8,182,212,0.1);
  border-bottom: 1px solid rgba(8,182,212,0.1);
}

/* ── About page ── */
.about-hero-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-xl); }
.timeline-item { display: flex; gap: 2rem; padding-bottom: 2.5rem; position: relative; }
.timeline-item::after { content:''; position:absolute; left:16px; top:42px; bottom:0; width:2px; background:linear-gradient(to bottom, #0891b2, transparent); }
.timeline-dot { width: 34px; height: 34px; border-radius: 50%; background: #0891b2; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.75rem; z-index: 1; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-card { display: none; }
  .package-layout { grid-template-columns: 1fr; }
  .package-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .travellers-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .traveller-photo:nth-child(1) { grid-column: span 2; }
  .counter-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-book-bar { display: flex; }
  .cards-2, .cards-3 { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.5rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .travellers-grid { grid-template-columns: repeat(2,1fr); }
  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .counter-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .travellers-grid { grid-template-columns: 1fr; }
}

/* ── Route Coverage & Details ── */
.route-coverage-card h3 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  border-bottom: 2px solid rgba(6,182,212,0.2);
  padding-bottom: 1rem;
}
.route-coverage-card.excluded h3 {
  border-bottom-color: rgba(239,68,68,0.2);
}
.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}
.check-icon {
  color: #10b981;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.cross-icon {
  color: #ef4444;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .items-center { align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
