/* ======================================================
   TRAVEL LANDING PRO — V2 PREMIUM UI
====================================================== */

/* =========================
   DESIGN TOKENS (SINGLE SOURCE)
========================= */
:root {
  /* Backgrounds */
  --bg-main: #ffffff;
  --bg-soft: #f9fafb;
  --bg-elevated: #ffffff;
  --bg-dark: #0f172a;
  --card-bg: var(--bg-elevated);


  /* Text */
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --text-invert: #ffffff;

  /* Accent (Luxury Gold) */
  --accent-main: #c9a64d;
  --accent-soft: rgba(201,166,77,0.12);
  --accent-hover: #b8953f;

  /* Borders */
  --border-soft: #e5e7eb;

  /* Radius */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-soft: 0 6px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 28px rgba(0,0,0,0.08);
  --shadow-strong: 0 22px 44px rgba(0,0,0,0.12);

  /* Motion */
  --ease-premium: cubic-bezier(.25,1,.5,1);
  --transition-fast: 0.2s var(--ease-premium);
  --transition-slow: 0.45s var(--ease-premium);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.15rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.6rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 16px;
}

/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  background:
    radial-gradient(circle at 20% 0%, rgba(201,166,77,0.05), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(15,23,42,0.04), transparent 50%),
    var(--bg-main);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text); }
p {
  font-size: var(--text-md);
  color: var(--text-muted);
  margin: 0;
}

/* =========================
   HERO
========================= */
.tp-hero {
  min-height: 85vh;
  padding: 80px 24px;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(to top, rgba(15,23,42,.65), transparent 60%),
    var(--tp-hero-bg);
  background-size: cover;
  background-position: center;
  color: var(--text-invert);
}

.tp-hero-content {
  max-width: 720px;
}

.tp-hero-content h1 {
  color: var(--text-invert);
}

.tp-hero-content p {
  color: rgba(255,255,255,.85);
}


.tp-hero {
  position: relative;
  overflow: hidden;
}

.tp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2) 40%,
    transparent
  );
}


/* =========================
   BADGES
========================= */
.tp-badge-pill {
  display: inline-block;
  background: var(--accent-main);
  color: var(--text-invert);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
}

/* =========================
   SECTIONS
========================= */
.tp-section {
  max-width: var(--container-max);
  margin: auto;
  padding: 48px var(--container-padding);
}

.tp-section-header {
  max-width: 600px;
  margin-bottom: 28px;
}

.tp-section-kicker {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: var(--text-xs);
  color: var(--accent-main);
  margin-bottom: 6px;
  display: block;
}

/* =========================
   GRIDS
========================= */
.tp-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

/* =========================
   CARDS (UNIFIED)
========================= */
.tp-info-card,
.fact-card,
.tp-airbnb-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-slow),
              box-shadow var(--transition-slow);
}

.tp-info-card:hover,
.tp-airbnb-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.tp-info-card {
  padding: 18px;
}

.tp-info-card h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-main);
}

/* =========================
   HORIZONTAL RAIL
========================= */
.tp-horizontal-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.tp-horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.tp-airbnb-card {
  width: 260px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  overflow: hidden;
}

.tp-airbnb-image {
  height: 180px;
  background-image: var(--tp-airbnb-bg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.tp-airbnb-title {
  padding: 14px;
  font-weight: 600;
  font-size: var(--text-sm);
}

.tp-airbnb-description {
  padding: 0 14px 14px;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* =========================
   FACT CARDS
========================= */
.fact-card {
  padding: 16px;
  background: var(--bg-soft);
  text-align: center;
}

.fact-card .tp-emoji {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

/* =========================
   STICKY MENU (CLEAN)
========================= */
/* --- TOP STICKY HEADER REFINEMENT --- */
.header-top {
    position: sticky;
    top: 0;
    z-index: 1500;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-soft);
    padding: 12px var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom button styles using your Luxury Gold accent */
.destination-btn, .share-btn {
    background: var(--accent-main) !important;
    color: var(--text-invert) !important;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-sm) !important;
    padding: 8px 16px !important;
    transition: var(--transition-fast) !important;
    box-shadow: var(--shadow-soft);
}

.destination-btn:hover, .share-btn:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
}

/* --- BOTTOM STICKY MENU REFINEMENT --- */
.sticky-menu {
    background: var(--bg-dark) !important; /* Use your Slate dark */
    padding: 8px 18px !important;
    gap: 8px !important;
    border: 1px solid rgba(255,255,255,0.1);
}

.sticky-menu button {
    font-family: var(--font-body);
    color: var(--text-subtle) !important;
    font-weight: 500;
    font-size: 0.7rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sticky-menu button.active {
    background: var(--accent-main) !important; /* Luxury Gold */
    color: var(--text-invert) !important;
}


.sticky-menu {
  backdrop-filter: blur(14px);
  background: rgba(15,23,42,0.75);
  border: 1px solid rgba(255,255,255,0.08);
}




/* --- MOBILE TWEAKS --- */
@media (max-width: 768px) {
    .header-top {
        padding: 10px 12px;
    }
    .destination-btn, .share-btn {
        padding: 6px 10px !important;
        font-size: 11px !important;
    }
    .sticky-menu {
        bottom: 12px;
        width: 92%;
    }
}

/* ======================================================
   HOTELS V2 — PREMIUM SECTION
====================================================== */

/* Editorial cards (text-first) */
.tp-hotels-editorial {
  margin-bottom: 32px;
}

.tp-hotel-editorial-card {
  background: var(--bg-soft);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.tp-hotel-editorial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tp-hotel-emoji {
  font-size: 1.6rem;
}

.tp-hotel-editorial-card h3 {
  font-size: var(--text-lg);
  margin: 0;
}

.tp-hotel-editorial-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Hotel rail */
.tp-hotel-rail {
  margin-top: 12px;
}

/* Image-led hotel card */
.tp-hotel-card {
  width: 260px;
  flex: 0 0 auto;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform var(--transition-slow),
              box-shadow var(--transition-slow);
}

.tp-hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

/* Image */
.tp-hotel-image {
  height: 180px;
  background-image: var(--tp-hotel-bg);
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Body */
.tp-hotel-body {
  padding: 14px;
}

.tp-hotel-body h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 6px;
}

.tp-hotel-location {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .tp-hotel-card {
    width: 220px;
  }
}


.tp-hotel-card,
.tp-food-card,
.tp-shop-card {
  will-change: transform;
}

.tp-hotel-card:hover,
.tp-food-card:hover,
.tp-shop-card:hover {
  transform: translateY(-6px) scale(1.02);
}
.tp-hotel-image,
.tp-food-image,
.tp-shop-image {
  transition: transform var(--transition-slow);
}

.tp-hotel-card:hover .tp-hotel-image,
.tp-food-card:hover .tp-food-image,
.tp-shop-card:hover .tp-shop-image {
  transform: scale(1.05);
}

.tp-section {
  position: relative;
}

.tp-section:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-soft),
    transparent
  );
  transform: translateX(-50%);
}


/* ======================================================
   RESTAURANTS V2 — PREMIUM SECTION
====================================================== */

/* Editorial food notes */
.tp-food-editorial {
  margin-bottom: 32px;
}

.tp-food-editorial-card {
  background: var(--bg-soft);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.tp-food-editorial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tp-food-emoji {
  font-size: 1.6rem;
}

.tp-food-editorial-card h3 {
  font-size: var(--text-lg);
  margin: 0;
}

.tp-food-editorial-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Food rail */
.tp-food-rail {
  margin-top: 12px;
}

/* Image-led restaurant card */
.tp-food-card {
  width: 260px;
  flex: 0 0 auto;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform var(--transition-slow),
              box-shadow var(--transition-slow);
}

.tp-food-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

/* Image */
.tp-food-image {
  height: 180px;
  background-image: var(--tp-food-bg);
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Body */
.tp-food-body {
  padding: 14px;
}

.tp-food-body h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 6px;
}

.tp-food-location {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .tp-food-card {
    width: 220px;
  }
}

/* ======================================================
   STICKY NAV V2
====================================================== */


/* =========================
   RESPONSIVE
========================= */



/* ======================================================
   HEADER TOP — STICKY MENU
====================================================== */

/* Sticky header */


/* Language Switcher */
.tp-lang-switcher {
  position: relative;
}


 
/* Container and Menu */
.tp-lang-switcher .tp-lang-menu {
    display: none;
    position: absolute;
    top: 40px; /* Slightly more spacing */
    left: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    z-index: 1000;
    min-width: 120px;
}

.tp-lang-switcher.open .tp-lang-menu {
    display: block;
}

/* The Main Button (🌐 EN) */
.tp-lang-switcher > button {
    background: var(--bg-soft);
    border: 1px solid var(--accent-main); /* Gold Border */
    color: var(--accent-main);           /* Gold Text */
    padding: 6px 14px;
    border-radius: var(--radius-xs);
    cursor: pointer;
    font-size: var(--text-sm);
    font-weight: 600;
    transition: var(--transition-fast);
}

.tp-lang-switcher > button:hover {
    background: var(--accent-soft);
    color: var(--accent-hover);
    transform: translateY(-1px);
}

/* Individual Language Buttons inside the Menu */
.tp-lang-menu button {
    display: block;
    width: 100%;
    padding: 10px 14px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--text-main); /* Keep main text dark for readability */
    transition: var(--transition-fast);
}

.tp-lang-menu button:hover {
    background: var(--accent-soft);
    color: var(--accent-main); /* Text turns Gold on hover */
}

/* Highlight the active/selected language */
.tp-lang-menu button.active {
    color: var(--accent-main);
    font-weight: 600;
}

/* Options */
.options {
  display: flex;
  align-items: center;
  gap: 12px;
}

.destination-btn, .share-btn {
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
}

.destination-btn:hover, .share-btn:hover {
  background: #005fcc;
  transform: scale(1.05);
}

/* Share dropdown */
.social-icons {
  display: none;
  position: absolute;
  top: 36px;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  z-index: 1000;
}

.social-icons a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.social-icons a:hover {
  background: #f0f0f0;
}









/* ======================================================
   SHOPS V2 — PREMIUM SECTION
====================================================== */

/* Editorial cards (text-first) */
.tp-shops-editorial {
  margin-bottom: 32px;
}

.tp-shop-editorial-card {
  background: var(--bg-soft);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.tp-shop-editorial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tp-shop-emoji {
  font-size: 1.6rem;
}

.tp-shop-editorial-card h3 {
  font-size: var(--text-lg);
  margin: 0;
}

.tp-shop-editorial-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Shop rail */
.tp-shop-rail {
  margin-top: 12px;
}

/* Image-led shop card */
.tp-shop-card {
  width: 260px;
  flex: 0 0 auto;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform var(--transition-slow),
              box-shadow var(--transition-slow);
}

.tp-shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

/* Image */
.tp-shop-image {
  height: 180px;
  background-image: var(--tp-shop-bg);
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Body */
.tp-shop-body {
  padding: 14px;
}

.tp-shop-body h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 6px;
}

.tp-shop-location {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .tp-shop-card {
    width: 220px;
  }
}

/* ======================================================
   BARS V2 — PREMIUM SECTION
====================================================== */
.tp-bars-editorial { margin-bottom: 32px; }
.tp-bar-editorial-card { background: var(--bg-soft); padding: 20px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.tp-bar-editorial-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.tp-bar-emoji { font-size: 1.6rem; }
.tp-bar-editorial-card h3 { font-size: var(--text-lg); margin: 0; }
.tp-bar-editorial-text { font-size: var(--text-sm); color: var(--text-muted); }
.tp-bar-rail { margin-top: 12px; }
.tp-bar-card { width: 260px; flex: 0 0 auto; background: var(--card-bg); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); overflow: hidden; scroll-snap-align: start; transition: transform var(--transition-slow), box-shadow var(--transition-slow); }
.tp-bar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.tp-bar-image { height: 180px; background-size: cover; background-position: center; position: relative; }
.tp-bar-body { padding: 14px; }
.tp-bar-body h4 { font-size: var(--text-sm); font-weight: 600; margin-bottom: 6px; }
.tp-bar-location { font-size: var(--text-xs); color: var(--text-muted); }
@media (max-width: 768px) { .tp-bar-card { width: 220px; } }

/* ======================================================
   CLUBS V2 — PREMIUM SECTION
====================================================== */
.tp-clubs-editorial { margin-bottom: 32px; }
.tp-club-editorial-card { background: var(--bg-soft); padding: 20px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.tp-club-editorial-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.tp-club-emoji { font-size: 1.6rem; }
.tp-club-editorial-card h3 { font-size: var(--text-lg); margin: 0; }
.tp-club-editorial-text { font-size: var(--text-sm); color: var(--text-muted); }
.tp-club-rail { margin-top: 12px; }
.tp-club-card { width: 260px; flex: 0 0 auto; background: var(--card-bg); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); overflow: hidden; scroll-snap-align: start; transition: transform var(--transition-slow), box-shadow var(--transition-slow); }
.tp-club-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.tp-club-image { height: 180px; background-size: cover; background-position: center; position: relative; }
.tp-club-body { padding: 14px; }
.tp-club-body h4 { font-size: var(--text-sm); font-weight: 600; margin-bottom: 6px; }
.tp-club-location { font-size: var(--text-xs); color: var(--text-muted); }
@media (max-width: 768px) { .tp-club-card { width: 220px; } }

/* ======================================================
   SERVICES V2 — PREMIUM SECTION
====================================================== */
.tp-services-editorial { margin-bottom: 32px; }
.tp-service-editorial-card { background: var(--bg-soft); padding: 20px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.tp-service-editorial-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.tp-service-emoji { font-size: 1.6rem; }
.tp-service-editorial-card h3 { font-size: var(--text-lg); margin: 0; }
.tp-service-editorial-text { font-size: var(--text-sm); color: var(--text-muted); }
.tp-service-rail { margin-top: 12px; }
.tp-service-card { width: 260px; flex: 0 0 auto; background: var(--card-bg); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); overflow: hidden; scroll-snap-align: start; transition: transform var(--transition-slow), box-shadow var(--transition-slow); }
.tp-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.tp-service-image { height: 180px; background-size: cover; background-position: center; position: relative; }
.tp-service-body { padding: 14px; }
.tp-service-body h4 { font-size: var(--text-sm); font-weight: 600; margin-bottom: 6px; }
.tp-service-location { font-size: var(--text-xs); color: var(--text-muted); }
@media (max-width: 768px) { .tp-service-card { width: 220px; } }

/* ======================================================
   TOURS V2 — PREMIUM SECTION
====================================================== */
.tp-tours-editorial { margin-bottom: 32px; }
.tp-tour-editorial-card { background: var(--bg-soft); padding: 20px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.tp-tour-editorial-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.tp-tour-emoji { font-size: 1.6rem; }
.tp-tour-editorial-card h3 { font-size: var(--text-lg); margin: 0; }
.tp-tour-editorial-text { font-size: var(--text-sm); color: var(--text-muted); }
.tp-tour-rail { margin-top: 12px; }
.tp-tour-card { width: 260px; flex: 0 0 auto; background: var(--card-bg); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); overflow: hidden; scroll-snap-align: start; transition: transform var(--transition-slow), box-shadow var(--transition-slow); }
.tp-tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.tp-tour-image { height: 180px; background-size: cover; background-position: center; position: relative; }
.tp-tour-body { padding: 14px; }
.tp-tour-body h4 { font-size: var(--text-sm); font-weight: 600; margin-bottom: 6px; }
.tp-tour-location { font-size: var(--text-xs); color: var(--text-muted); }
@media (max-width: 768px) { .tp-tour-card { width: 220px; } }

/* ======================================================
   STICKY BOTTOM NAV (JS DEPENDS ON THIS)
====================================================== */
.sticky-menu {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 8px;
  background: var(--bg-dark);
  border-radius: 999px;
  box-shadow: var(--shadow-strong);
  z-index: 1200; /* IMPORTANT */
}

.sticky-menu button {
  background: transparent;
  border: none;
  color: var(--text-invert);
  font-size: var(--text-xs);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}

.sticky-menu button.active {
  background: rgba(255,255,255,.15);
  color: var(--accent-main);
}
.tp-section {
  scroll-margin-top: 110px;
}
.sticky-menu {
  pointer-events: auto;
}

.sticky-menu button {
  pointer-events: auto;
}


@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }
}


/* =========================
   DESTINATION MODAL
========================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--bg-elevated);
  padding: 24px;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-strong);
  position: relative;
}

.modal-content h3 {
  margin-bottom: 14px;
}

.modal-content select,
.modal-content button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  font-size: var(--text-sm);
}

.modal-content button {
  background: var(--accent-main);
  color: var(--text-invert);
  border: none;
  cursor: pointer;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 20px;
  cursor: pointer;
}


/* ====================================================== 
CONTINENT GRID — FORCE 3 COLUMNS (ALL DEVICES)
====================================================== */



.tp-continent-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}

.tp-continent-grid .continent-card {
  min-width: 0; /* Important to prevent auto min-width issues */
}
@media (max-width: 768px) {
  .tp-continent-grid .continent-card {
    min-height: 140px;
    font-size: 0.9rem;
  }
}




.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow),
    background var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-strong);
}

.card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: transform var(--transition-slow);
}

.card:hover img {
  transform: scale(1.05);
}

.card span {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-main);
  transition: color var(--transition-fast);
}

.card:hover span {
  color: var(--accent-main);
}


/* =========================
   QUICK FACTS — 2 ROW GRID
========================= */

/* =========================
   QUICK FACTS — FORCE 2 ROWS
========================= */

.tp-facts-container {
  display: grid;
  grid-auto-flow: column;             /* Fill vertically first */
  grid-template-rows: repeat(2, auto);/* EXACTLY 2 ROWS */
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.tp-facts-container .fact-card {
  min-width: 220px;
  scroll-snap-align: start;
}


/* =========================
   HORIZONTAL SCROLL ARROWS
========================= */

.tp-scroll-wrapper {
  position: relative;
}

.tp-scroll-btn {
  position: absolute;
  top: -36px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  color: var(--accent-main);
  font-size: 18px;
  cursor: pointer;
  z-index: 20;
  box-shadow: var(--shadow-soft);
}

.tp-scroll-left {
  right: 42px;
}

.tp-scroll-right {
  right: 0;
}

.tp-scroll-btn:hover {
  background: var(--accent-soft);
}

.tp-scroll-btn:disabled {
  opacity: 0.3;
  cursor: default;
}



/* Luxury Gold “View on Map” button */
.tp-view-map-btn {
  display: inline-block;
  background: var(--accent-main);         /* Luxury Gold */
  color: var(--text-invert);              /* White text */
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  text-align: center;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition-fast), 
              background var(--transition-fast),
              box-shadow var(--transition-fast);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.tp-view-map-btn:hover {
  background: var(--accent-hover);        /* Darker gold on hover */
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

/* =========================
   CITY INTRO (PRE-HERO)
========================= */
/* =========================
   CITY INTRO — PREMIUM
========================= */
/* =========================
   CITY INTRO — TITLE LOCKUP
========================= */
.tp-city-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--text-main);
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}

.tp-city-kicker {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-main);
  margin-bottom: 18px;
}

/* =========================
   CITY INTRO — MOBILE
========================= */
@media (max-width: 768px) {
  .tp-city-title {
    font-size: 1.6rem;
  }

  .tp-city-kicker {
    font-size: 0.7rem;
    margin-bottom: 14px;
  }
}

.tp-lang-switcher .tp-lang-menu {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.tp-lang-switcher.open .tp-lang-menu {
  display: block;
}
#gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    z-index: 9999;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#gdpr-banner button {
    background: #ff6f61;
    border: none;
    padding: 8px 15px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    border-radius: 3px;
}

/* ======================================================
   ZOIWA FOOTER — PREMIUM STYLE
====================================================== */

.zoiwa-footer {
  margin-top: 80px;
  padding: 40px 20px 28px;
  background: var(--bg-dark);
  color: var(--text-invert);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.zoiwa-footer-inner {
  max-width: var(--container-max);
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.zoiwa-footer-inner a {
  font-size: var(--text-sm);
  color: var(--text-subtle);
  position: relative;
  transition: color var(--transition-fast);
}

.zoiwa-footer-inner a:hover {
  color: var(--accent-main);
}

/* Elegant underline animation */
.zoiwa-footer-inner a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent-main);
  transition: width var(--transition-fast);
}

.zoiwa-footer-inner a:hover::after {
  width: 100%;
}

.zoiwa-footer-copy {
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.tp-floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  z-index: 999;
}
/* Hide on tablets and phones */
@media (max-width: 1024px) {
    .tp-floating-cta {
        display: none !important;
    }
}

/* =========================================
   ANGLED IMAGE STACK EXPLORE CARD
========================================= */

/* =========================================
   ANGLED IMAGE STACK — WHITE BORDER, NO GREY BG
========================================= */

/* =========================================
   ANGLED IMAGE STACK — WHITE BORDER, NO GREY BG
========================================= */

.tp-angled-stack {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  height: auto; /* allow card to grow with text */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px; /* top + bottom padding */
  overflow: visible;
  transition: var(--transition-slow);
}

.tp-angled-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 16px; /* space for text below */
}

.tp-angled-img {
  position: absolute;
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  border: 6px solid #ffffff;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  background-color: #ffffff;
}

.tp-angled-img-1 { transform: rotate(-12deg); z-index: 1; top:0; left:0; }
.tp-angled-img-2 { transform: rotate(8deg); z-index: 2; top:0; left:0; }
.tp-angled-img-3 { transform: rotate(0deg); z-index: 3; top:0; left:0; }

.tp-angled-text {
  text-align: center;
  font-weight: 700;
  font-size: var(--text-md);
  color: #000000; /* black text */
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hover animation */
.tp-angled-stack:hover .tp-angled-img-1 { transform: rotate(-16deg) scale(1.05); }
.tp-angled-stack:hover .tp-angled-img-2 { transform: rotate(12deg) scale(1.05); }
.tp-angled-stack:hover .tp-angled-img-3 { transform: rotate(2deg) scale(1.05); }


.tp-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* Mobile: 2 items per row */
@media (max-width: 768px) {
    .tp-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* slightly tighter spacing for mobile */
    }
}

/* Small phones: still 2 but tighter */
@media (max-width: 480px) {
    .tp-category-grid {
        gap: 12px;
    }
}

.tp-hidden-item {
    display: none;
}






/* Hiding the "Load More" items initially */


/* Ensure cards are responsive */
.tp-food-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

/* Hover effects for cards */
.tp-food-card:hover {
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

/* Responsive Images */
.tp-food-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



/* Smooth Transition for Load More button */
.tp-load-more-wrapper {
  text-align: center;
  margin-top: 30px;
}

.tp-load-more-btn {
  background: #3498db;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.tp-load-more-btn:hover {
  background: #2980b9;
}


/* =========================
   AD BANNER — RESPONSIVE + ANIMATION
========================= */
.tp-ad-banner {
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

.tp-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.header-center{
  flex:1;
  text-align:center;
}

/* brand */
.brand-logo{
  position:relative;
  font-size:18px;
  font-weight:700;
  letter-spacing:1px;
  text-decoration:none;
  color:#111;
}

.brand-logo::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:100%;
  height:2px;
  background:#D4AF37;
}


/* ======================================================
   GETYOURGUIDE WIDGET → MATCH TRAVEL LANDING PRO UI
====================================================== */

.tp-gyg-widget {
  display: flex;
}

.tp-gyg-widget iframe {
  border: 0;
  width: 1560px; /* ensures 6 cards visible */
  height: 340px;
}

/* ensure widget aligns with scroll rail */
.tp-tour-rail .tp-gyg-widget {
  flex: 0 0 auto;
}

/* prevent overflow issues */
.tp-tour-rail iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* mobile optimization */
@media (max-width:768px){

  .tp-gyg-widget iframe{
    width:1200px;
    height:320px;
  }

}

.tp-gyg-card iframe{
width:260px;
height:310px;
border:0;
border-radius:var(--radius-lg);
box-shadow:var(--shadow-soft);
}