/* ═══════════════════════════════════════════════════════════════
   TRAVELWORLD — INNER PAGES CSS  (LIGHT THEME)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --gold:   #B8860B;
  --dark:   #FFFFFF;
  --dark2:  #F7F4EF;
  --dark3:  #EDE9E1;
  --light:  #3A2E1E;
  --gray:   #6B6560;
  --white:  #1A1410;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
}

/* ── BODY / BASE ─────────────────────────────────────────────── */
body {
  background: #F7F4EF;
  color: #1A1410;
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ── SITE HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0rem 4rem;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  transition: padding 0.3s ease;
}
.site-header.scrolled { padding: 0rem 4rem; }

.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-travel { color: var(--dark); }
.logo-world  { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3A2E1E;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(184,134,11,0.5);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
}
.nav-links .nav-cta:hover { background: var(--gold); color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  position: relative;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY (backdrop) ─────────────────────────── */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  /* z-index: 99998; */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── MOBILE MENU SIDEBAR ─────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: #fff;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}

/* Close button inside mobile menu */
.mobile-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.mobile-menu-close::before,
.mobile-menu-close::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: #1A1410;
}
.mobile-menu-close::before { transform: rotate(45deg); }
.mobile-menu-close::after  { transform: rotate(-45deg); }

.mobile-menu ul { list-style: none; text-align: left; padding: 0; margin: 0; }
.mobile-menu ul li { margin: 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.mobile-menu ul li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #1A1410;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  padding: 1rem 0;
}
.mobile-menu ul li a:hover { color: var(--gold); }

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6rem;
  max-width: 900px;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span:last-child { color: var(--gold); }

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.page-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.page-hero-stat {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-hero-stat i { color: var(--gold); }

/* ── INNER SECTIONS ──────────────────────────────────────────── */
.inner-section { padding: 6rem; background: var(--dark); }
.inner-section.alt { background: var(--dark2); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ── OVERVIEW GRID ───────────────────────────────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.overview-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.overview-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.highlight-item {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem;
  transition: border-color 0.3s;
}
.highlight-item:hover { border-color: rgba(201,168,76,0.3); }
.highlight-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  display: block;
}
.highlight-item h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
}
.highlight-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--white);
}

/* ── MUST VISIT PLACES GRID ──────────────────────────────────── */
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.place-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.place-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.place-card:hover .place-card-img { transform: scale(1.08); }
.place-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.place-card:hover .place-card-overlay { opacity: 1; }
.place-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.4rem;
}
.place-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.place-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.place-card:hover .place-card-desc { max-height: 80px; }

/* ── TABS (EXPERIENCES) ──────────────────────────────────────── */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.tab-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tab-btn:hover,
.tab-btn.active {
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.05);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.exp-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem;
  transition: border-color 0.3s;
  box-shadow: var(--shadow);
}
.exp-item:hover { border-color: rgba(184,134,11,0.35); }
.exp-item > i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.exp-item-text h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.exp-item-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── WHERE TO STAY ───────────────────────────────────────────── */
.stay-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.stay-tier {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stay-tier-header {
  background: rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1rem 1.5rem;
}
.stay-tier-header h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
}
.stay-tier-body { padding: 1.5rem; }
.hotel-item {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.hotel-item:last-child { border-bottom: none; }
.hotel-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.hotel-stars { color: var(--gold); font-size: 0.65rem; margin-bottom: 0.3rem; }
.hotel-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ── FOOD GRID ───────────────────────────────────────────────── */
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.food-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  box-shadow: var(--shadow);
}
.food-card:hover { border-color: rgba(184,134,11,0.35); transform: translateY(-4px); }
.food-card-emoji { font-size: 2rem; display: block; margin-bottom: 0.8rem; }
.food-card h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.food-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ── TRAVEL TIPS ─────────────────────────────────────────────── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.tip-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
  transition: border-color 0.3s;
  box-shadow: var(--shadow);
}
.tip-card:hover { border-color: rgba(184,134,11,0.35); }
.tip-card i {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: block;
}
.tip-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.tip-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── ITINERARY ───────────────────────────────────────────────── */
.itinerary-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.itin-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}
.itin-btn:hover,
.itin-btn.active {
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.05);
}
.itin-panel { display: none; }
.itin-panel.active { display: block; }

.itin-days { display: flex; flex-direction: column; gap: 1rem; }
.itin-day {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.3s;
  box-shadow: var(--shadow);
}
.itin-day:hover { border-color: rgba(184,134,11,0.3); }
.itin-day-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  min-width: 2.5rem;
  line-height: 1;
}
.itin-day-content h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.itin-day-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── ENQUIRY CTA ─────────────────────────────────────────────── */
.enquiry-cta {
  background: var(--dark2);
  padding: 6rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 2.5rem auto 0;
  text-align: left;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.9rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #1A1410;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  box-sizing: border-box;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus { border-color: rgba(184,134,11,0.5); box-shadow: 0 0 0 3px rgba(184,134,11,0.08); }
.enquiry-form select option { background: #fff; color: #1A1410; }
.enquiry-form textarea { min-height: 120px; resize: vertical; grid-column: 1 / -1; }
.btn-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 6px;
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
}
.btn-submit:hover { background: #b8943e; transform: translateY(-2px); }

/* ── RELATED DESTINATIONS ────────────────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.related-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  text-decoration: none;
  display: block;
}
.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.related-card:hover img { transform: scale(1.08); }
.related-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.related-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
}
.related-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #C9A84C;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ── DESTINATIONS LIST PAGE ──────────────────────────────────── */
.dest-list-hero {
  height: 100vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}
.dest-list-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.dest-list-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.35) 40%,
    rgba(10,10,10,0.75) 100%);
}
.dest-list-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}
.dest-list-hero-content .section-label {
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.dest-list-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.dest-list-hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.dest-list-hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.dest-list-hero-stats span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-left: 1px solid rgba(201,168,76,0.4);
  padding-left: 1rem;
}
.dest-list-hero-stats span:first-child { border-left: none; padding-left: 0; }

/* Filter Bar */
.filter-bar {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.5rem 6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  position: sticky;
  top: 70px;
  z-index: 100;
}
.filter-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-right: 0.3rem;
}
.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
}
.filter-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  margin: 0 0.5rem;
}
.filter-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.4rem 0.9rem;
}
.filter-search i { color: var(--gray); font-size: 0.75rem; }
.filter-search input {
  background: none;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--white);
  width: 180px;
}
.filter-search input::placeholder { color: var(--gray); }

/* Destinations Grid */
.destinations-list-section { padding: 4rem 6rem; background: var(--dark); }
.destinations-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.dest-list-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  display: block;
  transition: transform 0.4s ease;
}
.dest-list-card:hover { transform: translateY(-6px); }
.dest-list-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-list-card:hover img { transform: scale(1.06); }
.dest-list-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.1) 60%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.dest-list-card-continent {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.4rem;
}
.dest-list-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.3rem;
}
.dest-list-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}
.dest-list-card-explore {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-top: 0.8rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.dest-list-card:hover .dest-list-card-explore { opacity: 1; transform: translateY(0); }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.contact-info-item > i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}
.contact-info-item h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
}
.contact-info-item a,
.contact-info-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--white);
  text-decoration: none;
  line-height: 1.6;
}
.contact-info-item a:hover { color: var(--gold); }

/* ── ABOUT PAGE — TEAM ───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}
.team-card {
  text-align: center;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.team-card-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
  margin: 0 auto 1rem;
  display: block;
}
.team-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.team-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--gray);
}

/* ── SITE FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #EDE9E1;
  border-top: 1px solid rgba(184,134,11,0.15);
  padding: 5rem 6rem 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  color: var(--gray);
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--gold); }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}
.footer-contact li i { color: var(--gold); width: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .inner-section { padding: 4rem 3rem; }
  .page-hero-content { padding: 0 3rem; }
  .filter-bar { padding: 1.2rem 3rem; }
  .destinations-list-section { padding: 3rem; }
  .overview-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stay-tiers { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .site-header { padding: 0rem 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .inner-section { padding: 3rem 1.5rem; }
  .page-hero-content { padding: 0 1.5rem; }
  .filter-bar {
    padding: 0.75rem 1rem;
    top: 60px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    gap: 0.5rem;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; }
  .destinations-list-section { padding: 2rem 1.5rem; }
  .enquiry-form { grid-template-columns: 1fr; }
  .enquiry-form textarea { grid-column: 1; }
  .enquiry-form .btn-submit { grid-column: 1; }
  .related-grid { grid-template-columns: 1fr; }
  .stay-tiers { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .site-footer { padding: 3rem 1.5rem 1.5rem; }
  .enquiry-cta { padding: 3rem 1.5rem; }
  .itin-day { flex-direction: column; gap: 0.5rem; }
  .itin-day-num { font-size: 1.2rem; }
  .page-hero { min-height: 50vh; }
  .page-hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .overview-highlights { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .inner-section { padding: 2.5rem 1rem; }
  .page-hero-content { padding: 0 1rem; }
  .page-hero-title { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .overview-highlights { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .enquiry-cta { padding: 2rem 1rem; }
  .filter-bar { padding: 0.6rem 0.75rem; }
  .site-header { padding: 0 1rem; }
  .footer-bottom { font-size: 0.7rem; }
}