/* =====================================================
   LUX TRAVEL — Complete Stylesheet
   Color Palette: Navy #152238 + Gold #C8973A
   ===================================================== */

/* ─── CSS VARIABLES ─────────────────────────────────── */
:root {
  /* Brand Colors (from logo) */
  --navy:        #152238;
  --navy-mid:    #1E3355;
  --navy-light:  #253F6B;
  --gold:        #C8973A;
  --gold-light:  #E8C06A;
  --gold-dark:   #A07828;
  --gold-pale:   #FBF3E3;

  /* Neutral */
  --cream:       #FAFAF5;
  --white:       #FFFFFF;
  --text:        #2C3344;
  --text-soft:   #55627A;
  --text-light:  #8E99B0;
  --border:      #E8EAF0;
  --border-gold: rgba(200,151,58,.35);

  /* UI */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-xs: 0 2px 8px rgba(21,34,56,.06);
  --shadow-sm: 0 4px 18px rgba(21,34,56,.09);
  --shadow-md: 0 10px 36px rgba(21,34,56,.13);
  --shadow-lg: 0 20px 60px rgba(21,34,56,.18);

  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --header-h: 76px;
}

/* ─── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; outline: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── CONTAINER ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── SECTION LAYOUT ─────────────────────────────────── */
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.section--navy .section-title { color: var(--white); }
.section-sub {
  font-size: .97rem;
  color: var(--text-soft);
  max-width: 500px;
  margin: 0 auto;
}
.section--navy .section-sub { color: rgba(255,255,255,.6); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .93rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
/* Gold filled */
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,151,58,.35);
}
/* Navy filled */
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,34,56,.3);
}
/* Outline gold */
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
/* Outline white */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
/* White filled */
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn--sm  { padding: 9px 22px; font-size: .85rem; }
.btn--full { width: 100%; }

/* ─── BADGE CHIP ─────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.chip--gold     { background: var(--gold);   color: var(--navy); }
.chip--navy     { background: var(--navy);   color: var(--white); }
.chip--green    { background: #0EA868;       color: var(--white); }
.chip--red      { background: #E8432A;       color: var(--white); }
.chip--glass    { background: rgba(255,255,255,.2); color: var(--white); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}
.site-header.at-top { background: transparent; }
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(21,34,56,.25);
}

.header-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
}
.logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: brightness(1);
}
/* Fallback text logo if image missing */
.logo-fallback {
  display: none;
  flex-direction: column;
  line-height: 1;
}
.logo-fallback .logo-lux {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.5px;
}
.logo-fallback .logo-travel {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}
.logo img.broken + .logo-fallback { display: flex; }

/* Main Nav */
.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.nav-list > li > a:hover { color: var(--gold); background: rgba(255,255,255,.07); }
.nav-list > li > a.active { color: var(--gold); }
.nav-list > li > a i { font-size: .68rem; opacity: .7; transition: transform .25s; }
.nav-list > li.has-dropdown:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-xs);
  font-size: .86rem;
  color: rgba(255,255,255,.75);
  transition: var(--transition);
}
.dropdown li a:hover { background: rgba(200,151,58,.15); color: var(--gold); }

/* Header controls */
.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 4px;
  gap: 2px;
}
.lang-btn {
  background: transparent;
  color: rgba(255,255,255,.65);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 600;
  transition: var(--transition);
  line-height: 1.4;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Login button */
.btn-login {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.btn-login:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200,151,58,.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-xs);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(21,34,56,.65);
  backdrop-filter: blur(4px);
  z-index: 998;
}
.mobile-overlay.show { display: block; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

/* Slides */
.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; }

/* Gradient overlay */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(21,34,56,.82) 0%,
    rgba(21,34,56,.55) 50%,
    rgba(21,34,56,.25) 100%
  );
}

/* Hero content */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 10;
}
.hero-content .container { display: flex; align-items: center; }
.hero-text { max-width: 620px; color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.hero-eyebrow span.line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 38px;
  max-width: 420px;
  line-height: 1.7;
}
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Slider nav */
.hero-nav {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 20;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}
.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  font-size: .9rem;
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 20;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .4; transform: scaleY(.7); }
}

/* =====================================================
   TOUR CARDS  (main grid)
   ===================================================== */

/* ─── Category Filter — MDK-style visual tabs ─── */
.cat-filter {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: var(--transition);
  min-width: 76px;
}
.cat-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
/* Image-based icons */
.cat-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: var(--transition);
}
.cat-icon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  background: rgba(21,34,56,.3);
  color: var(--white);
  transition: var(--transition);
}
/* Hover */
.cat-item:hover .cat-icon-wrap {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(200,151,58,.3);
  transform: translateY(-4px);
}
.cat-item:hover .cat-icon-wrap img { opacity: 1; }
.cat-item:hover .cat-icon-overlay { background: rgba(200,151,58,.45); }
/* Active */
.cat-item.active .cat-icon-wrap {
  border-color: var(--gold);
  border-width: 3px;
  box-shadow: 0 8px 24px rgba(200,151,58,.38);
  transform: translateY(-4px);
}
.cat-item.active .cat-icon-overlay { background: rgba(200,151,58,.52); }

.cat-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: var(--transition);
  text-align: center;
  line-height: 1.3;
}
.cat-item:hover .cat-label,
.cat-item.active .cat-label { color: var(--navy); }
.cat-count {
  display: block;
  font-size: .68rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 1px;
}

/* Legacy pill filter-tab (sidebar) */
.filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 9px 24px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-soft);
  border: 2px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}
.tour-card.hidden { display: none; }

/* Card image */
.tc-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.tc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.tour-card:hover .tc-image img { transform: scale(1.07); }

.tc-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,34,56,.6) 0%, transparent 55%);
}

/* Badges */
.tc-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
}
.tc-days {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}
.tc-wish {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: var(--transition);
  font-size: .95rem;
  backdrop-filter: blur(4px);
}
.tc-wish:hover, .tc-wish.liked { color: #E84040; }
.tc-wish.liked i { font-weight: 900; }

/* Card category pill (bottom of image) */
.tc-category {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(21,34,56,.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 4px 12px;
  border-radius: 50px;
}

/* Card body */
.tc-body { padding: 20px 20px 0; flex: 1; display: flex; flex-direction: column; }
.tc-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 9px;
}
.tc-location i { color: var(--gold); font-size: .72rem; }

.tc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 9px;
  line-height: 1.3;
}
.tc-desc {
  font-size: .85rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

/* Card meta strip (replaces old rating + info) */
.tc-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  margin-top: 14px;
}
.tc-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-soft);
}
.tc-meta-item i { color: var(--gold); font-size: .75rem; }
.tc-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

/* Card footer */
.tc-footer {
  padding: 14px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tc-price { line-height: 1.2; }
.tc-price-from { font-size: .7rem; color: var(--text-light); display: block; }
.tc-price-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.tc-price-amount span { font-size: .8rem; font-weight: 400; color: var(--text-light); }

/* Section CTA */
.section-cta { text-align: center; margin-top: 52px; }

/* =====================================================
   SERVICES
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-gold);
  background: rgba(200,151,58,.04);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0;
  transition: var(--transition);
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover .svc-icon,
.svc-card:hover h3,
.svc-card:hover p { position: relative; z-index: 1; }
.svc-card:hover .svc-icon { background: rgba(200,151,58,.2); color: var(--gold-light); }
.svc-card:hover h3 { color: var(--white); }
.svc-card:hover p { color: rgba(255,255,255,.65); }

.svc-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.svc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.svc-card p {
  font-size: .86rem;
  color: var(--text-soft);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* =====================================================
   CULTURE / DESTINATIONS
   ===================================================== */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 18px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.dest-card:nth-child(1) { grid-column: span 7; }
.dest-card:nth-child(2) { grid-column: span 5; }
.dest-card:nth-child(3) { grid-column: span 4; }
.dest-card:nth-child(4) { grid-column: span 4; }
.dest-card:nth-child(5) { grid-column: span 4; }

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.dest-card:hover img { transform: scale(1.08); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,34,56,.88) 0%, rgba(21,34,56,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  transition: var(--transition);
}
.dest-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.dest-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}
.dest-card:nth-child(1) .dest-title { font-size: 1.7rem; }
.dest-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 340px;
}
.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.dest-card:hover .dest-link { opacity: 1; transform: translateY(0); }
.dest-link i { font-size: .75rem; transition: transform .25s; }
.dest-link:hover i { transform: translateX(4px); }

/* =====================================================
   RECOMMENDED CAROUSEL
   ===================================================== */
.rec-wrap { position: relative; }
.rec-track-outer { overflow: hidden; }
.rec-track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
.rec-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.rec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}
.rec-img { position: relative; height: 200px; overflow: hidden; }
.rec-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.rec-card:hover .rec-img img { transform: scale(1.06); }
.rec-badge {
  position: absolute;
  top: 14px;
  left: 14px;
}
.rec-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(21,34,56,.8);
  color: var(--white);
  font-size: .74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.rec-body { padding: 20px; }
.rec-stars { color: var(--gold); font-size: .82rem; margin-bottom: 6px; display: flex; align-items: center; gap: 3px; }
.rec-stars span { color: var(--text-light); font-size: .78rem; margin-left: 4px; }
.rec-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.rec-desc { font-size: .83rem; color: var(--text-soft); line-height: 1.55; margin-bottom: 14px; }
.rec-includes { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.rec-includes li { font-size: .8rem; color: var(--text-soft); display: flex; align-items: center; gap: 7px; }
.rec-includes li i { color: #0EA868; font-size: .75rem; }
.rec-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.rec-price { font-size: .83rem; color: var(--text-light); }
.rec-price strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--navy); }

/* Carousel arrows */
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 10;
  font-size: .95rem;
}
.car-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.car-prev { left: -22px; }
.car-next { right: -22px; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid transparent;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { border-color: var(--border-gold); box-shadow: var(--shadow-sm); }
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .15;
}
.testi-stars { color: var(--gold); font-size: .88rem; margin-bottom: 14px; display: flex; gap: 3px; }
.testi-text { font-size: .9rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-gold); }
.testi-author strong { display: block; font-size: .88rem; font-weight: 700; color: var(--navy); }
.testi-author span { font-size: .78rem; color: var(--text-light); }

/* =====================================================
   NEWSLETTER
   ===================================================== */
.newsletter-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .06;
}
.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .05;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.newsletter-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.newsletter-text p { color: rgba(255,255,255,.6); font-size: .95rem; }
.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-row { display: flex; gap: 10px; }
.nl-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: var(--white);
  font-size: .92rem;
  transition: var(--transition);
}
.nl-input::placeholder { color: rgba(255,255,255,.4); }
.nl-input:focus { border-color: var(--gold); background: rgba(255,255,255,.1); }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.cinfo-list { display: flex; flex-direction: column; gap: 26px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 16px; }
.cinfo-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cinfo-item h4 { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.cinfo-item p { font-size: .9rem; color: var(--text-soft); }

/* Contact Form */
.cform { display: flex; flex-direction: column; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,58,.12);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: #0E1B2E; color: rgba(255,255,255,.65); }
.footer-top { padding: 72px 0 52px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 52px;
}
.footer-brand-logo img { height: 60px; width: auto; margin-bottom: 18px; }
.footer-brand-logo .logo-fallback {
  display: flex;
  margin-bottom: 18px;
}
.footer-brand p { font-size: .875rem; line-height: 1.75; max-width: 270px; margin-bottom: 24px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .92rem;
  transition: var(--transition);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }

.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 1rem; line-height: 1; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .875rem; }
.footer-contact-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; width: 14px; text-align: center; }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  font-size: 1rem;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21,34,56,.85), rgba(21,34,56,.45));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb i { font-size: .65rem; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal { opacity: 0; }
.reveal.visible { animation: fadeUp .55s ease forwards; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .tours-grid      { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .testi-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 36px; }
  .newsletter-inner{ grid-template-columns: 1fr; gap: 36px; }
  .rec-card        { flex: 0 0 calc(50% - 12px); }
  .culture-grid    { grid-template-rows: 240px 240px; }
}

@media (max-width: 900px) {
  .dest-card:nth-child(1) { grid-column: span 12; }
  .dest-card:nth-child(2) { grid-column: span 6; }
  .dest-card:nth-child(3) { grid-column: span 6; }
  .dest-card:nth-child(4) { grid-column: span 4; }
  .dest-card:nth-child(5) { grid-column: span 4; }
  .dest-card:nth-child(6) { grid-column: span 4; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Mobile Nav Drawer */
  .main-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: var(--navy);
    z-index: 999;
    padding: calc(var(--header-h) + 12px) 20px 32px;
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform .35s ease;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list > li > a { color: rgba(255,255,255,.85); padding: 13px 16px; border-radius: var(--radius-sm); }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.07);
    margin-top: 4px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; }

  /* Grids */
  .tours-grid     { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .rec-card       { flex: 0 0 100%; }
  .car-prev       { left: 0; }
  .car-next       { right: 0; }
  .form-row-2     { grid-template-columns: 1fr; }
  .culture-grid   { grid-template-columns: 1fr; grid-template-rows: unset; gap: 14px; }
  .dest-card      { height: 220px; }
  .dest-card:nth-child(n) { grid-column: span 12; }

  /* Hero */
  .hero-scroll { display: none; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-desc  { font-size: .97rem; margin-bottom: 28px; }
  .hero-cta   { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-cta .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Page hero */
  .page-hero { height: 300px; }

  /* Form inputs — prevent iOS auto-zoom on focus */
  .form-group input,
  .form-group select,
  .form-group textarea,
  .nl-input { font-size: 1rem; }

  /* Section header */
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 520px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .lang-switcher { display: none; }
  .nl-row { flex-direction: column; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .section-header { margin-bottom: 32px; }
  /* Cat filter — slightly smaller on phones */
  .cat-icon-wrap { width: 60px; height: 60px; }
  .cat-item      { min-width: 60px; gap: 7px; }
  .cat-label     { font-size: .75rem; }
  /* Smaller section eyebrow lines */
  .section-eyebrow::before,
  .section-eyebrow::after { width: 18px; }
}

@media (max-width: 480px) {
  /* Hide login button — use hamburger nav */
  .btn-login { display: none; }
  .header-wrap { gap: 8px; }
  /* Back to top — keep out of way of thumbs */
  .back-top { bottom: 16px; right: 14px; width: 40px; height: 40px; }
  /* Cat filter even smaller */
  .cat-icon-wrap { width: 54px; height: 54px; }
  .cat-item      { min-width: 54px; gap: 6px; }
  .cat-label     { font-size: .7rem; }
  /* Hero CTA max-width */
  .hero-cta .btn { max-width: none; }
  /* Footer brand logo */
  .footer-brand-logo img { height: 48px; }
}
