/* ═══════════════════════════════════════════════════
   TREKCEYLON — PREMIUM SRI LANKA TOURISM WEBSITE
   style.css
═══════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────── */
:root {
  --ocean: #0B3D5C;
  --ocean-dark: #072B42;
  --ocean-mid: #0F4E72;
  --ocean-light: #1a6490;
  --green: #2E7D32;
  --green-light: #43A047;
  --gold: #F4B942;
  --gold-dark: #E09B2A;
  --gold-light: #F9D080;
  --ivory: #F8F5F0;
  --ivory-dark: #EEE8DF;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid: #3D4A5C;
  --text-light: #6B7A8D;
  --text-xlight: #9CA8B5;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(11,61,92,0.08);
  --shadow-md: 0 8px 32px rgba(11,61,92,0.14);
  --shadow-lg: 0 20px 60px rgba(11,61,92,0.20);
  --shadow-gold: 0 8px 32px rgba(244,185,66,0.25);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); outline: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* ─── Typography ────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-eyebrow.light::before { background: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--ocean);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.75); }
.section-header .section-subtitle { margin: 0 auto; }
.section-header.left,
.section-title.left { text-align: left; }

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ─── Buttons ───────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ocean-dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244,185,66,0.40);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ─── Scroll Reveal Animation ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-index="1"] { transition-delay: 0.1s; }
.reveal[data-index="2"] { transition-delay: 0.2s; }
.reveal[data-index="3"] { transition-delay: 0.3s; }
.reveal[data-index="4"] { transition-delay: 0.1s; }
.reveal[data-index="5"] { transition-delay: 0.2s; }

/* ─── NAVIGATION ───────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background: rgba(11, 61, 92, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.2);
  padding: 0;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark svg { width: 38px; height: 38px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-trek {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: inline;
}
.logo-ceylon {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
}
.logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); background: rgba(255,255,255,0.07); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-nav {
  background: var(--gold);
  color: var(--ocean-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-nav:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--ocean-dark);
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { padding: 16px 24px 24px; }
.mobile-menu li + li { border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a { display: block; padding: 14px 0; color: rgba(255,255,255,0.85); font-size: 1rem; }
.mobile-menu a:hover { color: var(--gold); }
.btn-mobile {
  display: inline-block !important;
  background: var(--gold);
  color: var(--ocean-dark) !important;
  padding: 12px 28px !important;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 8px;
}

/* ─── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7, 43, 66, 0.75) 0%,
    rgba(11, 61, 92, 0.55) 40%,
    rgba(11, 61, 92, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(244,185,66,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.title-line { display: block; }
.title-accent {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.animate-fade-up[data-delay="0"] { animation-delay: 0.3s; }
.animate-fade-up[data-delay="1"] { animation-delay: 0.5s; }
.animate-fade-up[data-delay="2"] { animation-delay: 0.7s; }
.animate-fade-up[data-delay="3"] { animation-delay: 0.9s; }
.animate-fade-up[data-delay="4"] { animation-delay: 1.1s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Slide Dots */
.slide-dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: var(--transition);
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 42px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 10;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { width: 40px; opacity: 1; }
  50% { width: 20px; opacity: 0.4; }
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 24px;
  border-radius: 50px;
  z-index: 10;
}
.stat-pill { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

/* ─── SEARCH BAR ─────────────────────────────────── */
.search-bar-section {
  padding: 0;
  display: flex;
  justify-content: center;
  margin-top: -40px;
  position: relative;
  z-index: 20;
  padding: 0 24px;
}

.search-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1040px;
  width: 100%;
  flex-wrap: wrap;
  gap: 0;
}

.search-field {
  flex: 1;
  min-width: 120px;
  padding: 4px 16px;
}
.search-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.search-field select,
.search-field input {
  width: 100%;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  background: transparent;
  padding: 2px 0;
  cursor: pointer;
}
.search-field select option { color: var(--text-dark); }

.search-divider {
  width: 1px;
  height: 40px;
  background: var(--ivory-dark);
  flex-shrink: 0;
}

.btn-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ocean);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  margin-left: 12px;
  flex-shrink: 0;
}
.btn-search:hover {
  background: var(--ocean-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ─── DESTINATIONS ──────────────────────────────── */
.destinations-section { background: var(--ivory); padding-top: 120px; }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  cursor: pointer;
}
.dest-card.large {
  grid-column: span 2;
  height: 420px;
}

.dest-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.dest-card:hover .dest-img { transform: scale(1.05); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,43,66,0.90) 0%, rgba(7,43,66,0.2) 50%, transparent 80%);
  transition: opacity 0.4s ease;
}
.dest-card:hover .dest-overlay { opacity: 0.9; }

.dest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  transform: translateY(56px);
  transition: transform 0.4s ease;
}
.dest-card:hover .dest-info { transform: translateY(0); }

.dest-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--ocean-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.dest-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.dest-card.large .dest-info h3 { font-size: 2rem; }

.dest-info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.dest-card:hover .dest-info p { opacity: 1; }

.dest-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
  opacity: 0;
  transition: opacity 0.3s ease 0.15s;
}
.dest-card:hover .dest-meta { opacity: 1; }

.dest-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ocean-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s, background 0.2s ease;
}
.dest-card:hover .dest-btn { opacity: 1; transform: translateY(0); }
.dest-btn:hover { background: var(--gold-dark); }

/* ─── PACKAGES ──────────────────────────────────── */
.packages-section {
  position: relative;
  background: var(--ocean-dark);
  overflow: hidden;
}
.packages-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 50%, rgba(46,125,50,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(244,185,66,0.08) 0%, transparent 60%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}

.pkg-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: var(--transition);
  backdrop-filter: blur(8px);
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  border-color: rgba(244,185,66,0.2);
}
.pkg-card.featured {
  border-color: rgba(244,185,66,0.35);
  background: rgba(244,185,66,0.04);
}

.pkg-img {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.pkg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,43,66,0.6), transparent 50%);
}

.pkg-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  background: rgba(11,61,92,0.9);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244,185,66,0.3);
}
.pkg-badge.gold {
  background: var(--gold);
  color: var(--ocean-dark);
  border-color: transparent;
}

.pkg-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 5px 14px;
  border-radius: 50px;
}

.pkg-body {
  padding: 24px;
}
.pkg-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pkg-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pkg-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 16px;
}

.pkg-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 20px;
}
.pkg-includes li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pkg-price {
  color: var(--white);
  font-size: 0.8rem;
}
.pkg-price span { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.pkg-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.pkg-price em {
  font-style: normal;
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.btn-pkg {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
  cursor: pointer;
}
.btn-pkg:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}
.btn-pkg.gold {
  background: var(--gold);
  color: var(--ocean-dark);
  border-color: transparent;
}
.btn-pkg.gold:hover {
  background: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}

/* ─── WHY SECTION ───────────────────────────────── */
.why-section { background: var(--white); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.why-left {
  position: sticky;
  top: 120px;
}
.why-left .section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.why-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}

.why-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  padding: 24px;
  background: var(--ivory);
  border-radius: var(--radius-md);
}
.why-stat { text-align: center; flex: 1; }
.why-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1.2;
}
.why-label {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1.5px solid transparent;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(244,185,66,0.4);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px; height: 44px;
  background: rgba(11,61,92,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.feature-content p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── TRAIN BANNER ──────────────────────────────── */
.train-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.train-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}
.train-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,43,66,0.88) 0%, rgba(7,43,66,0.55) 50%, transparent 80%);
}
.train-content {
  position: relative;
  z-index: 10;
  max-width: 560px;
  padding: 0 80px;
}
.train-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.train-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ─── TESTIMONIALS ──────────────────────────────── */
.testimonials-section { background: var(--ivory); }

.testimonials-track-wrapper {
  overflow: hidden;
  margin: 0 -12px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  padding: 12px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 380px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--ivory-dark);
  transition: var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(244,185,66,0.3);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-quote {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--ivory-dark);
  color: var(--ocean);
  font-size: 1.1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.testi-btn:hover {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}
.testi-progress {
  width: 120px;
  height: 3px;
  background: var(--ivory-dark);
  border-radius: 2px;
  overflow: hidden;
}
.testi-fill {
  height: 100%;
  background: var(--ocean);
  border-radius: 2px;
  transition: width 0.5s ease;
  width: 20%;
}

/* ─── GALLERY ───────────────────────────────────── */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 280px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7,43,66,0);
  transition: background 0.4s ease;
  z-index: 1;
}
.gallery-item:hover::before { background: rgba(7,43,66,0.45); }

.gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(7,43,66,0.85);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  text-align: center;
  backdrop-filter: blur(8px);
}
.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

/* Gallery loading pulse */
.gallery-item {
  background-color: var(--ivory-dark);
}

/* ─── HOW IT WORKS ──────────────────────────────── */
.how-section { background: var(--ivory); }

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 300px;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--ivory-dark);
  transition: var(--transition);
}
.step:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(244,185,66,0.3);
  transform: translateY(-5px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ivory-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.step-icon {
  width: 64px; height: 64px;
  background: rgba(11,61,92,0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-icon svg { width: 32px; height: 32px; }

.step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

.step-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  padding: 0 20px;
  align-self: center;
  flex-shrink: 0;
  margin-top: 20px;
}

/* ─── CONTACT & BOOKING ─────────────────────────── */
.contact-section { background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-left .section-title { margin-bottom: 16px; }
.contact-left > p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.contact-item span { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }

/* Booking Form */
.booking-form {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1.5px solid var(--ivory-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: span 2; margin-bottom: 16px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(11,61,92,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-xlight); }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ocean);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  transition: var(--transition);
  margin-bottom: 14px;
}
.btn-submit:hover {
  background: var(--ocean-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-xlight);
}

/* ─── FOOTER ────────────────────────────────────── */
.footer { background: var(--ocean-dark); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-socials a:hover { background: var(--gold); color: var(--ocean-dark); border-color: transparent; }
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badges .badge {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ─── SCROLL TO TOP ─────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ocean-dark);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ─── TOAST ─────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card.large { grid-column: span 2; }
  .packages-grid { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-left { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-stats { display: none; }
  .scroll-indicator { display: none; }

  .search-card {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px;
    border-radius: var(--radius-lg);
  }
  .search-divider { display: none; }
  .btn-search { margin-left: 0; justify-content: center; }

  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card.large { grid-column: span 1; height: 360px; }

  .packages-grid { grid-template-columns: 1fr; }

  .why-right { grid-template-columns: 1fr; }

  .steps-row { flex-direction: column; align-items: center; gap: 12px; }
  .step-arrow { display: none; }
  .step { max-width: 400px; width: 100%; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { margin-bottom: 0; }
  .booking-form { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item { height: 180px !important; }

  .train-content { padding: 0 32px; }
  .train-banner { height: 400px; }

  .testi-card { min-width: 300px; }

  .search-bar-section { margin-top: -20px; }

  .hero-ctas { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; max-width: 280px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-stats { display: none; }
  .dest-info { transform: translateY(0); }
  .dest-info p { opacity: 1; }
  .dest-meta { opacity: 1; }
  .dest-btn { opacity: 1; transform: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item { height: 220px !important; }
}