/* ================================================================
   TRAVEL FOR LESS TT — Design System v3
   ui-ux-pro-max · Storytelling-Driven · Premium Travel Agency
   Playfair Display (headings) + Inter (body)
   Palette: White · Sky Blue #0EA5E9 · Adventure Orange #F97316
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Brand */
  --c-primary:    #0ea5e9;
  --c-primary-d:  #0284c7;
  --c-primary-dd: #0369a1;
  --c-primary-bg: rgba(14,165,233,0.08);
  --c-accent:     #f97316;
  --c-accent-d:   #ea580c;
  --c-accent-bg:  rgba(249,115,22,0.08);
  --c-gold:       #f59e0b;

  /* Surfaces */
  --c-bg:         #ffffff;
  --c-bg-alt:     #f0f9ff;
  --c-bg-alt2:    #f8fafc;
  --c-card:       #ffffff;
  --c-dark:       #0f172a;
  --c-dark2:      #1e293b;

  /* Text */
  --c-text:       #0f172a;
  --c-text2:      #334155;
  --c-text3:      #64748b;
  --c-text4:      #94a3b8;
  --c-text-inv:   #ffffff;

  /* Borders */
  --c-border:     #e2e8f0;
  --c-border-d:   #cbd5e1;

  /* State */
  --c-success:    #22c55e;
  --c-error:      #ef4444;
  --c-warning:    #f59e0b;
  --c-info:       #3b82f6;

  /* Shadows */
  --sh-xs:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --sh-sm:  0 2px 8px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
  --sh-md:  0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.05);
  --sh-lg:  0 8px 40px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --sh-xl:  0 20px 60px rgba(0,0,0,0.12);
  --sh-pri: 0 6px 20px rgba(14,165,233,0.30);
  --sh-acc: 0 6px 20px rgba(249,115,22,0.30);

  /* Radius */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Spacing (4pt grid) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Z-index scale */
  --z-below:  -1;
  --z-base:    0;
  --z-above:  10;
  --z-nav:   100;
  --z-modal: 200;
  --z-toast: 300;

  /* Motion */
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);

  /* Nav height */
  --nav-h: 68px;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 3px;
}

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

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem,   4vw, 3rem);   }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; font-family: 'Inter', sans-serif; font-weight: 600; }

em { font-style: italic; color: var(--c-primary); }

.body-text {
  font-size: 1.0625rem;
  color: var(--c-text2);
  line-height: 1.75;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section {
  padding-block: var(--sp-20);
}

.section-alt { background: var(--c-bg-alt); }
.section-dark { background: var(--c-dark); color: var(--c-text-inv); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--sp-3);
}

.section-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}

.section-title em { color: var(--c-primary); }

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--c-text3);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: var(--sp-12);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 11px 24px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.4;
  touch-action: manipulation;
}

.btn-primary {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}
.btn-primary:hover  { background: var(--c-primary-d); border-color: var(--c-primary-d); box-shadow: var(--sh-pri); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-accent {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.btn-accent:hover  { background: var(--c-accent-d); border-color: var(--c-accent-d); box-shadow: var(--sh-acc); transform: translateY(-1px); }
.btn-accent:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn-outline:hover  { background: var(--c-primary); color: #fff; box-shadow: var(--sh-pri); transform: translateY(-1px); }
.btn-outline:active { transform: translateY(0); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover  { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-1px); }
.btn-outline-white:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover  { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); transform: translateY(-1px); }
.btn-ghost:active { transform: translateY(0); }

.btn-ghost-dark {
  background: rgba(15,23,42,0.06);
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn-ghost-dark:hover  { background: rgba(15,23,42,0.10); border-color: var(--c-border-d); transform: translateY(-1px); }

.btn-sm  { font-size: 0.8125rem; padding: 8px 18px; }
.btn-lg  { font-size: 1rem;      padding: 14px 32px; }
.btn-xl  { font-size: 1.0625rem; padding: 16px 40px; }
.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn-link {
  background: none; border: none;
  color: var(--c-primary); font-weight: 600;
  cursor: pointer; padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease);
}
.btn-link:hover { color: var(--c-primary-d); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  transition: background var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              backdrop-filter var(--dur-base) var(--ease);
}

/* transparent on hero */
.nav:not(.scrolled) {
  background: rgba(15,23,42,0.25);
  backdrop-filter: blur(12px);
}

/* opaque when scrolled */
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border), var(--sh-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--dur-base) var(--ease);
  white-space: nowrap;
}

.nav.scrolled .nav-logo-text { color: var(--c-text); }

.nav-logo-tt {
  color: var(--c-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-left: auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.nav.scrolled .nav-link { color: var(--c-text2); }
.nav.scrolled .nav-link:hover  { color: var(--c-primary); background: var(--c-primary-bg); }
.nav.scrolled .nav-link.active { color: var(--c-primary); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  margin-left: auto;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--dur-fast) var(--ease);
}

.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease);
}

.nav.scrolled .nav-hamburger { border-color: var(--c-border); }
.nav.scrolled .nav-hamburger span { background: var(--c-text); }

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-dark);
}

.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1920&auto=format&fit=crop&q=75')
    center/cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    170deg,
    rgba(10,18,35,0.88) 0%,
    rgba(10,18,35,0.65) 50%,
    rgba(10,18,35,0.80) 100%
  );
}

.hero-canvas {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  width: 100%; height: 100%;
}

.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 860px;
  padding: calc(var(--nav-h) + var(--sp-12)) var(--sp-6) var(--sp-12);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding: 6px 16px;
  border-radius: var(--r-full);
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.35);
  margin-bottom: var(--sp-6);
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--sp-6);
}

.hero-title em { color: var(--c-accent); font-style: italic; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-bottom: var(--sp-12);
}

/* Hero Search Widget */
.hero-search {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-5);
  margin-top: var(--sp-8);
}

.hero-search-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.hero-search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--sp-2) var(--sp-5);
  position: relative;
  min-width: 0;
}

.hero-search-field + .hero-search-field::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  height: 60%; width: 1px;
  background: rgba(255,255,255,0.25);
}

.hero-search-field label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.hero-search-field input,
.hero-search-field select {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.hero-search-field input::placeholder { color: rgba(255,255,255,0.55); }
.hero-search-field select option      { background: var(--c-dark); color: #fff; }

.hero-search-btn {
  flex-shrink: 0;
  align-self: center;
  padding-left: var(--sp-5);
}

/* "When" field — highlighted to be more obvious */
.hero-search-field--when {
  background: rgba(249,115,22,0.08);
  border-radius: var(--r-md);
  border: 1px solid rgba(249,115,22,0.25) !important;
  position: relative;
}
.hero-search-field--when label {
  color: #fdba74 !important;
  font-weight: 700 !important;
}
.hero-search-field--when input {
  color: #fff !important;
  font-weight: 500;
}
.hero-search-field--when::after {
  content: none !important;
}
/* date input calendar icon colour on webkit */
.hero-search-field--when input::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.6);
  cursor: pointer;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-8); left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.5);
  animation: bounce-down 2.4s ease-in-out infinite;
}

.hero-scroll-hint svg { width: 28px; height: 28px; }

/* ── TICKER ───────────────────────────────────────────────── */
.ticker {
  background: var(--c-dark);
  padding-block: var(--sp-3);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ticker-track {
  display: flex;
  gap: var(--sp-6);
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding-inline: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.ticker-track span::after {
  content: '✦';
  font-size: 0.5rem;
  color: var(--c-accent);
  opacity: 0.8;
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--c-dark2);
  padding-block: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.stat-item {
  text-align: center;
  padding: var(--sp-4);
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  height: 50%; width: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--sp-1);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-accent);
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-text .section-eyebrow { display: flex; justify-content: flex-start; }

.about-text .section-title {
  text-align: left;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  margin-bottom: var(--sp-5);
}

.about-text .body-text { margin-bottom: var(--sp-4); }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-block: var(--sp-6);
}

.feature-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-primary-d);
  background: var(--c-primary-bg);
  border: 1px solid rgba(14,165,233,0.2);
  padding: 5px 14px;
  border-radius: var(--r-full);
}

.about-image { position: relative; }

.about-img-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  position: relative;
}

.about-img-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: var(--sp-5); right: var(--sp-5);
  background: #fff;
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-5);
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.about-img-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
}

.about-img-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── PAGE HERO (sub-pages) ───────────────────────────────── */
.page-hero {
  background: var(--c-dark);
  padding: calc(var(--nav-h) + var(--sp-12)) var(--sp-6) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1400&auto=format&fit=crop&q=70')
    center/cover no-repeat;
  opacity: 0.2;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: #fff;
  margin-bottom: var(--sp-3);
}

.page-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

.page-hero .section-eyebrow {
  color: var(--c-accent);
  justify-content: center;
  margin-bottom: var(--sp-3);
}

/* ── TOUR CARDS ──────────────────────────────────────────── */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.tour-card {
  background: var(--c-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
  display: flex; flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-border-d);
}

.tour-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: block;
}

.tour-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
  display: block;
}

.tour-card:hover .tour-card-img-wrap img { transform: scale(1.06); }

.tour-popular-badge {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  background: var(--c-accent);
  color: #fff;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.cat-badge {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  font-size: 0.6875rem; font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: rgba(15,23,42,0.70);
  color: #fff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
}

.cat-beach, .cat-cruise { background: rgba(6,182,212,0.80); }
.cat-city               { background: rgba(59,130,246,0.80); }
.cat-adventure          { background: rgba(34,197,94,0.75); color: #052e16; }
.cat-cultural           { background: rgba(168,85,247,0.80); }
.cat-luxury             { background: rgba(245,158,11,0.85); color: #451a03; }
.cat-honeymoon          { background: rgba(236,72,153,0.80); }
.cat-safari             { background: rgba(161,98,7,0.85); color: #fff; }
.cat-eco                { background: rgba(101,163,13,0.80); color: #052e16; }
.cat-couples            { background: rgba(236,72,153,0.80); }

.tour-card-body {
  padding: var(--sp-5) var(--sp-5) var(--sp-5);
  display: flex; flex-direction: column; flex: 1;
  gap: var(--sp-2);
}

.pkg-destination {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--c-primary-d);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pkg-destination svg { width: 12px; height: 12px; flex-shrink: 0; }

.tour-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}

.tour-card-desc {
  font-size: 0.875rem;
  color: var(--c-text3);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-meta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-1);
}

.tour-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.8125rem; color: var(--c-text3); font-weight: 500;
}

.tour-meta-item svg { width: 13px; height: 13px; flex-shrink: 0; }

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-border);
  margin-top: var(--sp-2);
}

.tour-rating {
  display: flex; align-items: center; gap: 4px;
}

.stars { display: flex; gap: 1px; }

.star { width: 12px; height: 12px; }
.star-full  { color: var(--c-gold); fill: var(--c-gold); }
.star-half  { color: var(--c-gold); }
.star-empty { color: var(--c-border-d); fill: none; stroke: var(--c-border-d); stroke-width: 1.5; }

.tour-rating-count {
  font-size: 0.75rem; color: var(--c-text3); font-weight: 500;
}

.tour-price {
  display: flex; align-items: baseline; gap: 3px;
  text-align: right;
}

.tour-price-from { font-size: 0.7rem; color: var(--c-text4); }
.tour-price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem; font-weight: 700;
  color: var(--c-text);
}
.tour-price-per { font-size: 0.7rem; color: var(--c-text4); }

.tour-book-btn {
  width: 100%;
  margin-top: var(--sp-4);
}

/* ── DESTINATIONS MOSAIC ─────────────────────────────────── */
.dest-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-4);
}

.dest-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.dest-card-large {
  grid-row: span 2;
}

.dest-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
  display: block;
}

.dest-card-large img { aspect-ratio: 2/3; }
.dest-card:not(.dest-card-large) img { aspect-ratio: 4/3; }

.dest-card:hover img { transform: scale(1.06); }

.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,35,0.80) 0%, rgba(10,18,35,0.15) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-5);
  transition: background var(--dur-base) var(--ease);
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(10,18,35,0.90) 0%, rgba(10,18,35,0.25) 60%);
}

.dest-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.dest-card-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

/* ── FEATURES GRID ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.feature-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  transition: box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}

.feature-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--c-primary);
  transform: translateY(-3px);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--c-primary-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
}

.feature-icon svg {
  width: 24px; height: 24px;
  stroke: var(--c-primary);
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--c-text3);
  line-height: 1.7;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 26px; left: calc(16.66% + 26px); right: calc(16.66% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--sp-6);
}

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
  box-shadow: var(--sh-pri);
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--c-text3);
  line-height: 1.7;
}

/* ── FILTER BAR ──────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.filter-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text3);
  padding: 8px 18px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-border);
  background: var(--c-bg);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  touch-action: manipulation;
}

.filter-btn:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: var(--c-primary-bg);
}

.filter-btn.active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

/* ── SEARCH BAR ──────────────────────────────────────────── */
.search-bar { margin-bottom: var(--sp-8); }

.search-input-wrap {
  position: relative;
  max-width: 420px;
}

.search-icon {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--c-text4);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 10px 16px 10px 44px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  outline: none;
}

.search-input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--c-dark) 0%, #0c2461 100%);
  padding-block: var(--sp-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  z-index: 0;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: #fff;
  margin-bottom: var(--sp-4);
}

.cta-title em { color: var(--c-accent); }

.cta-subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.72);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  text-decoration: none;
}

.footer-logo img {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo strong { color: var(--c-accent); }

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-5);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.65);
  transition: all var(--dur-fast) var(--ease);
}

.footer-social a:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

.footer-social svg { width: 16px; height: 16px; }

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-5);
}

.footer-links li { margin-bottom: var(--sp-3); }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--dur-fast) var(--ease);
  text-decoration: none;
}

.footer-links a:hover { color: #fff; }

.footer-address p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-2);
  line-height: 1.5;
}

.footer-address a { color: rgba(255,255,255,0.65); transition: color var(--dur-fast); }
.footer-address a:hover { color: var(--c-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-6);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-powered a { color: rgba(255,255,255,0.45); transition: color var(--dur-fast); }
.footer-powered a:hover { color: #fff; }

/* ── FORMS ───────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text2);
}

.required { color: var(--c-error); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  outline: none;
  appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--c-text4); }

.form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.form-error {
  font-size: 0.8125rem;
  color: var(--c-error);
  min-height: 1.1em;
  font-weight: 500;
}

.form-helper {
  font-size: 0.8125rem;
  color: var(--c-text4);
  margin-top: 4px;
  line-height: 1.4;
}

.input-with-toggle {
  position: relative;
}

.input-with-toggle .form-input { padding-right: 48px; }

.input-toggle {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--c-text4);
  padding: 4px;
  border-radius: var(--r-xs);
  transition: color var(--dur-fast);
}

.input-toggle:hover { color: var(--c-text2); }
.input-toggle svg { width: 18px; height: 18px; display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

/* ── AUTH PAGES ──────────────────────────────────────────── */
.auth-body {
  background: var(--c-bg-alt);
  min-height: 100dvh;
}

.auth-page {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8) var(--sp-4);
}

.auth-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--sh-lg);
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  margin-bottom: var(--sp-8);
}

.auth-logo img {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.auth-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
}

.auth-logo strong { color: var(--c-accent); }

.auth-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.auth-sub {
  font-size: 0.9375rem;
  color: var(--c-text3);
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}

.auth-switch {
  font-size: 0.875rem;
  color: var(--c-text3);
  margin-top: var(--sp-5);
  text-align: center;
}

.auth-switch a { color: var(--c-primary); font-weight: 600; }
.auth-switch a:hover { color: var(--c-primary-d); text-decoration: underline; }

.otp-input {
  text-align: center;
  font-size: 1.75rem;
  letter-spacing: 0.4em;
  font-weight: 700;
  font-family: 'Inter', monospace;
}

/* ── TOAST ───────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: var(--sp-5); right: var(--sp-5);
  z-index: var(--z-toast);
  display: flex; flex-direction: column; gap: var(--sp-3);
  max-width: 360px; width: calc(100% - var(--sp-10));
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  transform: translateX(110%);
  opacity: 0;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-base) var(--ease-out);
}

.toast.show { transform: translateX(0); opacity: 1; }

.toast-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.toast-icon svg { width: 18px; height: 18px; }

.toast-msg { font-size: 0.875rem; color: var(--c-text); font-weight: 500; line-height: 1.5; flex: 1; }
.toast-close { color: var(--c-text4); padding: 2px; font-size: 1.1rem; line-height: 1; flex-shrink: 0; transition: color var(--dur-fast); }
.toast-close:hover { color: var(--c-text); }

.toast-success .toast-icon { color: var(--c-success); }
.toast-error   .toast-icon { color: var(--c-error);   }
.toast-info    .toast-icon { color: var(--c-info);    }
.toast-warning .toast-icon { color: var(--c-warning); }

/* ── BADGES ──────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  font-size: 0.75rem; font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.badge-new       { background: rgba(14,165,233,0.10);  color: var(--c-primary-d);  border: 1px solid rgba(14,165,233,0.20); }
.badge-contacted { background: rgba(245,158,11,0.10);  color: #92400e;              border: 1px solid rgba(245,158,11,0.25); }
.badge-confirmed { background: rgba(34,197,94,0.10);   color: #166534;              border: 1px solid rgba(34,197,94,0.20); }
.badge-completed { background: rgba(100,116,139,0.10); color: var(--c-text3);       border: 1px solid rgba(100,116,139,0.20); }
.badge-cancelled { background: rgba(239,68,68,0.10);   color: #991b1b;              border: 1px solid rgba(239,68,68,0.20); }

/* ── PACKAGE PREVIEW (enquiry) ───────────────────────────── */
.pkg-preview {
  background: var(--c-bg-alt);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  animation: fadeUp var(--dur-base) var(--ease-out);
}

.pkg-preview-inner {
  display: flex;
  gap: 0;
}

.pkg-preview-inner img {
  width: 120px;
  object-fit: cover;
  flex-shrink: 0;
}

.pkg-preview-info {
  padding: var(--sp-4) var(--sp-5);
  flex: 1;
}

.pkg-preview-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.pkg-preview-info p {
  font-size: 0.8125rem;
  color: var(--c-text3);
  line-height: 1.6;
  margin-bottom: var(--sp-3);
}

.pkg-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: 0.8125rem;
  color: var(--c-text2);
  font-weight: 500;
}

.pkg-preview-meta strong { color: var(--c-accent-d); font-size: 0.9375rem; }

/* ── MY BOOKINGS ─────────────────────────────────────────── */
.bookings-page {
  min-height: 100dvh;
  padding-top: var(--nav-h);
  background: var(--c-bg-alt);
}

.bookings-inner {
  padding-block: var(--sp-12) var(--sp-16);
}

.bookings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.bookings-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--c-text);
}

.booking-item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease);
  margin-bottom: var(--sp-4);
}

.booking-item:hover { box-shadow: var(--sh-md); }

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-bg-alt2);
  border-bottom: 1px solid var(--c-border);
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.booking-ref {
  font-family: 'Inter', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-primary-d);
  letter-spacing: 0.06em;
}

.booking-body {
  padding: var(--sp-5);
}

.booking-pkg {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
}

.booking-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  font-size: 0.875rem;
  color: var(--c-text3);
  margin-bottom: var(--sp-3);
}

.booking-details span {
  display: flex; align-items: center; gap: 5px;
  font-weight: 500;
}

.booking-note, .booking-admin-note {
  font-size: 0.875rem;
  color: var(--c-text3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  background: var(--c-bg-alt);
  border-left: 3px solid var(--c-border-d);
  margin-top: var(--sp-3);
  line-height: 1.6;
}

.booking-admin-note { border-color: var(--c-primary); background: var(--c-primary-bg); }

/* ── ADMIN LAYOUT ────────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100dvh;
  padding-top: var(--nav-h);
  background: var(--c-bg-alt2);
}

.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: var(--nav-h);
  height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
}

.admin-sidebar-header {
  padding: var(--sp-6) var(--sp-5) var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.admin-sidebar-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
}

.admin-sidebar-header p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.admin-sidebar-close {
  display: none;
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  border-radius: var(--r-sm);
  transition: all var(--dur-fast) var(--ease);
}

.admin-sidebar-close:hover { color: #fff; background: rgba(255,255,255,0.08); }

.admin-nav {
  padding: var(--sp-3) var(--sp-3);
  flex: 1;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 10px var(--sp-3);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  margin-bottom: 2px;
  border: none; background: none; width: 100%; text-align: left;
}

.admin-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }

.admin-nav-item:hover       { background: rgba(255,255,255,0.07); color: #fff; }
.admin-nav-item.active      { background: var(--c-primary); color: #fff; }
.admin-nav-item.active:hover{ background: var(--c-primary-d); }

.admin-sidebar-footer {
  padding: var(--sp-4) var(--sp-3);
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* Admin logo (in sidebar header) */
.admin-logo {
  display: flex; align-items: center; gap: var(--sp-3);
  text-decoration: none;
}
.admin-logo img { width: 32px; height: 32px; border-radius: var(--r-xs); }
.admin-logo span { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; }
.admin-logo strong { color: var(--c-accent); }

/* Admin search bar in sections */
.admin-search {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  padding: 8px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-full);
  background: var(--c-bg);
  color: var(--c-text);
  outline: none;
  min-width: 200px;
}
.admin-search:focus { border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.10); }

/* Section head row */
.admin-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--sp-5); gap: var(--sp-4); flex-wrap: wrap;
}
.admin-section-head h2 { font-size: 1.125rem; color: var(--c-text); }

/* Enquiry detail in modal */
.enq-detail-grid { display: flex; flex-direction: column; gap: var(--sp-3); }
.enq-detail-row { display: flex; gap: var(--sp-4); font-size: 0.875rem; }
.enq-detail-row strong { min-width: 100px; color: var(--c-text3); font-weight: 600; flex-shrink: 0; }
.enq-detail-row span, .enq-detail-row a { color: var(--c-text); }
.enq-detail-row a:hover { color: var(--c-primary); text-decoration: underline; }
.enq-detail-full { flex-direction: column; gap: var(--sp-2); }
.enq-detail-full p { color: var(--c-text2); line-height: 1.6; }

/* Clickable table row */
.clickable-row { cursor: pointer; }
.clickable-row:hover td { background: var(--c-bg-alt); }

/* Stat card values (admin) */
.admin-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--c-text); line-height: 1.1;
  margin-bottom: var(--sp-1);
}
.admin-stat-lbl {
  display: block;
  font-size: 0.75rem; font-weight: 600; color: var(--c-text3);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.admin-main {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
}

.admin-header {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-5) var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.admin-menu-btn {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  color: var(--c-text3);
  transition: all var(--dur-fast);
}

.admin-menu-btn:hover { color: var(--c-text); background: var(--c-bg-alt); }
.admin-menu-btn svg { width: 18px; height: 18px; }

.admin-header h1 {
  font-size: 1.25rem;
  color: var(--c-text);
  font-family: 'Playfair Display', serif;
}

.admin-tab { display: none; padding: var(--sp-8); }
.admin-tab.active { display: block; }

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.admin-stat-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}

.admin-stat-card .label {
  font-size: 0.75rem; font-weight: 600;
  color: var(--c-text3); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: var(--sp-2);
}

.admin-stat-card .value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--c-text);
  line-height: 1;
}

.admin-table-wrap {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.admin-table {
  width: 100%; border-collapse: collapse;
}

.admin-table th {
  background: var(--c-bg-alt2);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-size: 0.75rem; font-weight: 700;
  color: var(--c-text3); text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 1px solid var(--c-border);
}

.admin-table td {
  padding: var(--sp-4);
  font-size: 0.875rem;
  color: var(--c-text2);
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--c-bg-alt); }

.admin-table .empty-row td {
  text-align: center; color: var(--c-text4);
  padding-block: var(--sp-8);
}

.admin-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--c-text);
  margin-bottom: var(--sp-5);
}

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(15,23,42,0.60);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-4);
  animation: fadeIn var(--dur-fast) var(--ease-out);
}

.modal-card {
  background: var(--c-bg);
  border-radius: var(--r-xl);
  width: 100%; max-width: 540px;
  max-height: 90dvh;
  overflow-y: auto;
  box-shadow: var(--sh-xl);
  animation: scaleIn var(--dur-base) var(--ease-out);
}

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid var(--c-border);
  position: sticky; top: 0; background: var(--c-bg); z-index: 1;
}

.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--c-text);
}

.modal-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text4); border-radius: var(--r-sm);
  transition: all var(--dur-fast);
}

.modal-close:hover { color: var(--c-text); background: var(--c-bg-alt); }
.modal-close svg   { width: 18px; height: 18px; }

.modal-body   { padding: var(--sp-8); }
.modal-footer {
  display: flex; justify-content: flex-end; gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-8);
  border-top: 1px solid var(--c-border);
}

/* ── SKELETON ────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--c-border) 25%, #f8fafc 50%, var(--c-border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: var(--r-sm);
}

.skeleton-img {
  aspect-ratio: 16/10;
  border-radius: 0;
  width: 100%;
}

.skeleton-card {
  pointer-events: none;
}

.skeleton-line {
  display: block;
}

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.tour-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.tour-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.tour-grid .reveal:nth-child(4) { transition-delay: 80ms; }
.tour-grid .reveal:nth-child(5) { transition-delay: 160ms; }
.tour-grid .reveal:nth-child(6) { transition-delay: 240ms; }

.features-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.features-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.features-grid .reveal:nth-child(4) { transition-delay: 80ms; }
.features-grid .reveal:nth-child(5) { transition-delay: 160ms; }
.features-grid .reveal:nth-child(6) { transition-delay: 240ms; }

/* ── EMPTY & SUCCESS STATES ──────────────────────────────── */
.empty-msg {
  color: var(--c-text3);
  font-size: 0.9375rem;
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
  grid-column: 1 / -1;
}

.empty-state {
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
}

.success-inline {
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
  background: var(--c-bg-alt);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
}

.success-inline svg {
  width: 56px; height: 56px;
  color: var(--c-success);
  margin: 0 auto var(--sp-4);
}

.success-inline h3 {
  font-size: 1.5rem; color: var(--c-text); margin-bottom: var(--sp-3);
}

.success-inline p {
  color: var(--c-text3); font-size: 0.9375rem; line-height: 1.7;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--sp-4);
}

.contact-info .body-text { margin-bottom: var(--sp-6); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--c-primary-bg);
  display: flex; align-items: center; justify-content: center;
}

.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--c-primary); }

.contact-detail-body h4 {
  font-size: 0.875rem; font-weight: 700; color: var(--c-text);
  margin-bottom: 2px;
}

.contact-detail-body p, .contact-detail-body a {
  font-size: 0.9375rem;
  color: var(--c-text2);
  transition: color var(--dur-fast);
}

.contact-detail-body a:hover { color: var(--c-primary); }

.contact-form-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--sh-md);
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--c-text);
  margin-bottom: var(--sp-6);
}

/* ── DESTINATIONS PAGE ───────────────────────────────────── */
.region-section {
  padding-block: var(--sp-12);
  border-bottom: 1px solid var(--c-border);
}

.region-section:last-child { border-bottom: none; }

.region-header {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.region-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-primary-bg);
  border-radius: var(--r-md);
}

.region-title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--c-text); }
.region-sub   { font-size: 0.9375rem; color: var(--c-text3); margin-top: 3px; }

.dest-detail-grid, .dest-detail-grid-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
  margin-bottom: var(--sp-12);
}

.dest-detail-grid-reverse { direction: rtl; }
.dest-detail-grid-reverse > * { direction: ltr; }

.dest-detail-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.dest-detail-img img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
}

.dest-detail-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}

.dest-detail-text .body-text { margin-bottom: var(--sp-4); }

.dest-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.dest-highlight {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: 0.9375rem; color: var(--c-text2);
}

.dest-highlight::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-primary);
  flex-shrink: 0;
}

/* ── ENQUIRY ─────────────────────────────────────────────── */
.enquiry-layout {
  padding-top: var(--nav-h);
  background: var(--c-bg-alt);
  min-height: 100dvh;
}

.enquiry-inner {
  padding-block: var(--sp-12) var(--sp-16);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.enquiry-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--sh-sm);
}

.enquiry-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--c-text);
  margin-bottom: var(--sp-6);
}

.enquiry-sidebar-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-6));
}

.enquiry-sidebar-card h3 {
  font-size: 1.0625rem; color: var(--c-text);
  margin-bottom: var(--sp-5);
}

.trust-item {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: 0.875rem; color: var(--c-text2); font-weight: 500;
  margin-bottom: var(--sp-3);
}

.trust-item svg { width: 18px; height: 18px; color: var(--c-success); flex-shrink: 0; }

.auth-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(249,115,22,0.07);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--r-md);
  font-size: 0.8125rem;
  color: #7c2d12;
  margin-bottom: var(--sp-5);
}

.auth-notice svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

.form-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; font-weight: 700;
  color: var(--c-text3); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-border);
}

.form-stack { display: flex; flex-direction: column; gap: var(--sp-4); }

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95) translateY(8px); }
  to   { opacity: 1; transform: none; }
}

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

@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position:  200% 0; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.6); }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── RESPONSIVE — 1024px ─────────────────────────────────── */
@media (max-width: 1024px) {
  .tour-grid     { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .stats-grid    { grid-template-columns: repeat(4, 1fr); }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: var(--sp-8); }
  .about-image   { order: -1; }
  .contact-grid  { grid-template-columns: 1fr; }
  .enquiry-grid  { grid-template-columns: 1fr; }
  .enquiry-sidebar-card { position: static; }
  .steps-grid::before { display: none; }
  .dest-detail-grid, .dest-detail-grid-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ── RESPONSIVE — 768px ──────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .section { padding-block: var(--sp-12); }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--c-dark);
    padding: var(--sp-4);
    gap: var(--sp-1);
    transform: translateY(-120%);
    transition: transform var(--dur-base) var(--ease);
    pointer-events: none;
    z-index: calc(var(--z-nav) - 1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  .nav-links.open {
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-link { color: rgba(255,255,255,0.85); padding: var(--sp-3) var(--sp-4); border-radius: var(--r-md); }
  .nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.08); color: #fff; }

  .nav.scrolled .nav-link { color: rgba(255,255,255,0.85); }

  .hero-search-row { flex-direction: column; }
  .hero-search-field + .hero-search-field::before { display: none; }
  .hero-search-field { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-search-btn { padding: 0; }
  .hero-search-btn .btn { width: 100%; border-radius: var(--r-md); }

  .tour-grid     { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: var(--sp-1); }
  .stat-item + .stat-item::before { display: none; }
  .dest-mosaic   { grid-template-columns: 1fr; }
  .dest-card-large { grid-row: auto; }
  .dest-card-large img, .dest-card:not(.dest-card-large) img { aspect-ratio: 4/3; }
  .steps-grid    { grid-template-columns: 1fr; }
  .admin-sidebar { position: fixed; top: 0; bottom: 0; left: 0; z-index: var(--z-modal); transform: translateX(-100%); transition: transform var(--dur-base) var(--ease); width: 280px; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-sidebar-close { display: flex; }
  .admin-menu-btn { display: flex; }
  .admin-tab { padding: var(--sp-5); }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-bottom { flex-direction: column; gap: var(--sp-2); text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .modal-card { border-radius: var(--r-lg); }
  .modal-body { padding: var(--sp-5); }
  .modal-header, .modal-footer { padding-inline: var(--sp-5); }
  .auth-card { padding: var(--sp-6); }
  .region-header { flex-wrap: wrap; }
}

/* ── RESPONSIVE — 480px ──────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding-inline: var(--sp-4); }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .tour-card-footer { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
  .admin-table-wrap { overflow-x: auto; }
  .admin-table { min-width: 520px; }
}

/* ── MOBILE NAV IMPROVEMENTS ─────────────────────────────── */
@media (max-width: 768px) {
  /* ensure nav links have adequate touch targets */
  .nav-links .nav-link,
  .nav-links .btn {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-links .btn {
    justify-content: center;
    width: 100%;
    border-radius: var(--r-md);
  }
  /* nav backdrop when open */
  .nav-links.open::after {
    content: '';
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(0,0,0,0.4);
    z-index: -1;
    animation: fadeIn var(--dur-base) var(--ease-out);
  }
}

/* ── TOUCH IMPROVEMENTS ──────────────────────────────────── */
/* Minimum touch target sizes for interactive elements */
.btn { min-height: 44px; }
.btn-sm { min-height: 36px; }

/* ensure form inputs are tall enough on mobile */
@media (max-width: 768px) {
  .form-input, .form-select, .form-textarea {
    min-height: 48px;
    font-size: 16px; /* prevent iOS zoom */
  }
  .otp-input { font-size: 1.5rem !important; }
}

/* ── ADMIN MOBILE POLISH ─────────────────────────────────── */
@media (max-width: 768px) {
  .admin-header {
    position: sticky;
    top: 0;
    z-index: 50;
  }
  .admin-header h1 {
    font-size: 1rem;
  }
  /* ensure tables scroll properly */
  .admin-table-wrap {
    border-radius: var(--r-md);
  }
}
