/* ============================================================
   MyPrettyHolidays.com — Design System & Global Styles
   Brand: White · Charcoal · Teal · Amber · Light Grey
   ============================================================ */

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

/* ── 1. DESIGN TOKENS ── */
:root {
  /* Brand Palette */
  --white:        #FFFFFF;
  --charcoal:     #1A1A1A;
  --teal:         #007E8A;
  --amber:        #F5A623;
  --grey:         #F2F2F2;

  /* Extended */
  --teal-dark:    #005f69;
  --teal-xdark:   #004a52;
  --teal-light:   #e6f4f5;
  --teal-mid:     #cce9ec;
  --amber-dark:   #d4890a;
  --amber-light:  #fef4e3;
  --charcoal-75:  #404040;
  --charcoal-50:  #888888;
  --charcoal-25:  #cccccc;
  --border:       #E8E8E8;

  /* Text */
  --text-primary:   #1A1A1A;
  --text-secondary: #555555;
  --text-muted:     #888888;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.18);

  /* Typography */
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:   'Inter', system-ui, -apple-system, sans-serif;

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

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

  /* Motion */
  --ease:   cubic-bezier(.4,0,.2,1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 400ms;

  /* Layout */
  --max-w:  1280px;
  --pad-x:  1.5rem;
}

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

/* ── 3. LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section        { padding: var(--sp-20) 0; }
.section-sm     { padding: var(--sp-12) 0; }
.section-lg     { padding: var(--sp-24) 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.section-header h2 {
  margin-bottom: var(--sp-4);
  color: var(--charcoal);
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── 4. TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.2px;
}

/* Amber — primary CTA (book / enquire only) */
.btn-amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,.40);
}

/* Teal — secondary CTA */
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,126,138,.35);
}

/* Outline variants */
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--charcoal-75);
  transform: translateY(-2px);
}

/* Sizes */
.btn-sm  { padding: 0.45rem 1.1rem; font-size: 0.8rem; }
.btn-lg  { padding: 1rem 2.25rem;   font-size: 0.975rem; }
.btn-xl  { padding: 1.15rem 2.5rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── 6. ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.55rem 2.5rem;
  font-size: 0.83rem;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
  position: relative;
  z-index: 100;
  line-height: 1.5;
  min-height: 38px;
}
.announcement-bar #announcementText {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem;
  text-align: center;
}
.announcement-bar strong { font-weight: 700; }
.announcement-bar a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.25rem;
  white-space: nowrap;
}
.announcement-bar .ab-close {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  color: var(--white);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: background var(--t-fast);
  cursor: pointer; border: none;
  flex-shrink: 0;
}
.announcement-bar .ab-close:hover { background: rgba(255,255,255,.30); }

/* ── 7. HEADER / NAV ── */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: transparent;
  border-bottom: none;
  padding: 10px 1.25rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: var(--sp-5);
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: var(--r-md);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 0 0.75rem 0 1.5rem;
  transition: box-shadow 0.3s ease;
}

.header.scrolled .header-inner {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo { flex-shrink: 0; }
.logo a { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; display: block; }

/* Nav */
.nav { display: flex; align-items: center; }
.nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav ul li > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A1A1A;
  border-radius: var(--r-md);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  white-space: nowrap;
}
.nav ul li > a:hover { color: var(--teal); background: rgba(0,126,138,0.07); }
.nav ul li > a.active { color: var(--teal); background: rgba(0,126,138,0.10); font-weight: 600; }
.nav ul li > a i { font-size: 0.8rem; transition: transform var(--t-fast); }
.nav ul li:hover > a > i { transform: rotate(-180deg); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 2.5rem;
  min-width: 440px;
  z-index: 100;
}
.has-dropdown:hover .dropdown { display: grid; }

.dd-group-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.5rem 0.4rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--border);
}
.dd-group { display: flex; flex-direction: column; gap: 0.15rem; }
.dd-group a {
  display: block;
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.dd-group a:hover { color: var(--teal); background: var(--teal-light); padding-left: 1rem; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--t-fast);
  white-space: nowrap;
}
.header-phone:hover { color: var(--teal); }
.header-phone i { font-size: 1rem; color: var(--teal); }

/* Nav User Auth State */
#nav-auth-btn { display: flex; align-items: center; }
.nav-user-menu { position: relative; display: flex; align-items: center; }
.nav-user-trigger {
  display: flex; align-items: center; gap: 6px;
  cursor: pointer; border: none; background: transparent; padding: 0;
}
.nav-user-trigger .nav-user-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-user-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.13);
  min-width: 190px; z-index: 9999;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}
.nav-user-dropdown.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-user-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; color: var(--text-primary);
  text-decoration: none; font-size: 0.85rem; font-weight: 500;
  transition: background .15s;
}
.nav-user-dropdown a:first-child { border-radius: 12px 12px 0 0; }
.nav-user-dropdown a:last-child { border-radius: 0 0 12px 12px; color: #EF4444; }
.nav-user-dropdown a:hover { background: var(--surface); }
.nav-user-dropdown a i { font-size: 1rem; color: var(--teal); }
.nav-user-dropdown a:last-child i { color: #EF4444; }
.nav-dd-hr { margin: 4px 0; border: none; border-top: 1px solid var(--border); }

/* Currency switcher */
/* Currency Dropdown */
.currency-dropdown-wrap { position: relative; }
.currency-dropdown-btn {
  display: flex; align-items: center; gap: 0.3rem;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-primary);
  background: #fff; cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.currency-dropdown-btn i { font-size: 0.9rem; color: var(--teal); }
.currency-dropdown-btn .cur-arrow { font-size: 1rem; color: var(--text-muted); transition: transform 0.2s; }
.currency-dropdown-btn.active .cur-arrow { transform: rotate(180deg); }
.currency-dropdown-btn:hover { border-color: var(--teal); }
#currencyShort { display: none; color: var(--text-primary); }
.currency-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  min-width: 200px; z-index: 500; overflow: hidden;
}
.currency-dropdown-menu.open { display: block; }
.cur-opt {
  display: flex; align-items: center; gap: 0.75rem;
  width: 100%; padding: 0.75rem 1rem;
  border: none; background: none; cursor: pointer; text-align: left;
  transition: background var(--t-fast);
}
.cur-opt:hover { background: var(--grey); }
.cur-opt.active { background: rgba(0,126,138,0.06); }
.cur-flag { font-size: 1.2rem; }
.cur-name { flex: 1; font-size: 0.82rem; font-weight: 500; color: var(--text-primary); }
.cur-code { font-size: 0.76rem; font-weight: 700; color: var(--teal); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-md);
  transition: background var(--t-fast);
  align-self: center;
}
.hamburger:hover { background: var(--grey); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease);
}
.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 Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 89;
  padding: 7.5rem 1.25rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
}
.mobile-nav.open {
  display: block;
  transform: translateX(0);
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  border-radius: var(--r-lg);
  border: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--teal-light);
  color: var(--teal);
}
.mobile-nav-link.active {
  font-weight: 700;
}
/* Icons for nav links */
.mobile-nav-link .mnl-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grey);
  border-radius: var(--r-md);
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-nav-link:hover .mnl-icon,
.mobile-nav-link.active .mnl-icon {
  background: rgba(0,126,138,0.12);
  color: var(--teal);
}

/* Subnav */
.mobile-subnav {
  display: none;
  margin: 0.25rem 0 0.5rem 1rem;
  padding: 0.5rem;
  background: var(--grey);
  border-radius: var(--r-lg);
}
.mobile-subnav.open { display: block; }
.mobile-subnav-label {
  display: block;
  padding: 0.5rem 0.75rem 0.25rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 0.25rem;
}
.mobile-subnav-label:first-child { margin-top: 0; }
.mobile-subnav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.mobile-subnav a:last-child { border-bottom: none; }
.mobile-subnav a::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--charcoal-25);
  flex-shrink: 0;
}
.mobile-subnav a:hover {
  color: var(--teal);
  background: var(--white);
}
.mobile-subnav a:hover::before {
  background: var(--teal);
}

/* Divider before action links */
.mobile-nav-link.mobile-action-amber,
.mobile-nav-link.mobile-action-teal {
  margin-top: 0.25rem;
}

/* CTAs */
.mobile-nav-ctas {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mobile-nav-ctas .btn { justify-content: center; border-radius: var(--r-lg); font-size: 0.9rem; padding: 0.7rem 1.25rem; }

/* ── 8. HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Pull hero up behind announcement bar + floating pill nav */
  margin-top: -120px;
  padding-top: 120px;
}

/* Slides */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity;
}
.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 9s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

/* Multi-layer cinematic overlay */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.52) 52%, rgba(0,0,0,0.12) 100%),
    linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 42%);
}
/* Grain texture */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* Layout container */
/* ─ Centered hero layout (new) ─ */
.hero-center-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 5rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ─ Legacy: hero-container kept for back-compat ─ */
.hero-container {
  position: relative; z-index: 3; display: grid;
  grid-template-columns: 1fr 320px; gap: 2.5rem;
  align-items: center; width: 100%; padding-top: 2rem;
}
.hero-main { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
  width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.6); }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-headline .hl-line { display: block; }
.hero-headline em {
  color: var(--amber);
  font-style: italic;
}

.hero-sub {
  color: rgba(255,255,255,0.76);
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: 1.75rem;
  max-width: 490px;
}
.hero-sub strong { color: rgba(255,255,255,0.96); font-weight: 700; }

/* Floating Search Card */
/* ── MEGA SEARCH WIDGET (MakeMyTrip / Agoda style) ── */
.hero-search-mega {
  width: 100%;
  max-width: 1000px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 0.5rem 0.5rem 0.9rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  margin-bottom: 1.8rem;
  /* Reset text-align so search labels/values are left-aligned, not inheriting center from hero-center-wrap */
  text-align: left;
}

/* Category tabs */
.search-cat-tabs {
  display: flex;
  gap: 0;
  padding: 0.5rem 0.5rem 0;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sct {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  background: none; border: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.sct i { font-size: 1rem; }
.sct:hover { color: rgba(255,255,255,0.85); }
.sct.active { color: #fff; border-bottom-color: var(--amber); }

/* Search fields row */
.hero-search-row {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  min-height: 70px;
  margin: 0.5rem 0 0.8rem;
}
.search-mega-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.4rem;
  flex: 1;
  min-width: 0;
  position: relative;
}
.search-mega-field + .search-mega-field { border-left: 1px solid #f0f0f0; }
.smf-icon {
  width: 36px; height: 36px;
  background: rgba(0,126,138,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.smf-icon i { font-size: 1.1rem; color: var(--teal); }
.smf-inner { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.smf-inner label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 3px;
  text-align: left;
}
.smf-inner select { text-align: left; }
.smf-inner select {
  border: none; outline: none;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  width: 100%;
  -webkit-appearance: none;
}
.smf-divider { width: 1px; background: #f0f0f0; flex-shrink: 0; margin: 12px 0; }
.hero-search-btn-mega {
  flex-shrink: 0;
  border-radius: 0 12px 12px 0 !important;
  padding: 0 2rem !important;
  border: none !important;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  display: flex; align-items: center; gap: 0.5rem;
  min-height: 70px;
}
.hero-search-btn-mega i { font-size: 1.1rem; }

/* Legacy search-field (for other pages) */
.hero-search-card {
  background: rgba(255,255,255,0.09); backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.16); border-radius: 18px;
  padding: 0.5rem 0.5rem 0.9rem; margin-bottom: 1.6rem; max-width: 660px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.hero-search {
  display: flex; align-items: stretch; background: #fff;
  border-radius: 12px; overflow: hidden; margin-bottom: 0.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.search-field {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.82rem 1.1rem; flex: 1; min-width: 0; border-right: 1px solid #f2f2f2;
}
.search-field:last-of-type { border-right: none; }
.search-field i { font-size: 1.1rem; color: var(--teal); flex-shrink: 0; }
.search-field-inner { display: flex; flex-direction: column; min-width: 0; }
.search-field-inner label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 2px;
}
.search-field-inner select {
  border: none; outline: none; font-family: var(--font-sans);
  font-size: 0.84rem; font-weight: 600; color: var(--charcoal);
  background: transparent; cursor: pointer; width: 100%; -webkit-appearance: none;
}
.hero-search-btn {
  border-radius: 0 12px 12px 0 !important;
  padding: 0.82rem 1.6rem !important;
  border: none !important; flex-shrink: 0;
  font-size: 0.86rem; font-weight: 700; white-space: nowrap;
}

/* Popular tags */
.hero-popular {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  flex-wrap: wrap;
  padding: 0 0.4rem;
}
.hero-popular .label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-tag-link {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.18rem 0.65rem;
  border-radius: 50px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.hero-tag-link:hover { background: var(--amber); border-color: var(--amber); color: #fff; }

/* Dual CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero-cta-primary {
  box-shadow: 0 6px 28px rgba(245,166,35,0.45);
}
.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-cta-ghost:hover { color: var(--amber); border-color: var(--amber); }
.hero-cta-ghost i { font-size: 0.95rem; }

/* ─ Right: Destination Spotlight ─ */
.hero-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}
.hero-spot-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.35s ease;
}
.hero-spot-card:hover { transform: translateY(-4px); }
.hero-spot-img {
  position: relative;
  height: 155px;
  overflow: hidden;
}
.hero-spot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.5s ease;
}
.hero-spot-live {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.28rem;
  border: 1px solid rgba(34,197,94,0.4);
}
.hero-spot-body { padding: 0.95rem 1.05rem 1.1rem; }
.hero-spot-eyebrow {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
.hero-spot-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.12rem;
}
.hero-spot-tagline {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-bottom: 0.55rem;
}
.hero-spot-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}
.hero-spot-rating strong { color: #fff; }
.hero-spot-price {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.85rem;
}
.hero-spot-price strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--amber);
  font-family: var(--font-sans);
  line-height: 1;
}
.hero-spot-price span { font-size: 0.62rem; }
.hero-spot-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--amber);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.58rem 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 16px rgba(245,166,35,0.42);
}
.hero-spot-cta:hover { opacity: 0.88; transform: scale(1.02); }
.hero-spot-cta i { font-size: 1rem; }

/* Slide counter — disabled */
.hero-counter {
  display: none;
}
.hero-counter-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-sans);
  line-height: 1;
  letter-spacing: -1px;
  min-width: 2ch;
}
.hero-counter-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 3px;
  overflow: hidden;
}
.hero-counter-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 3px;
  width: 33.33%;
  transition: width 0.5s ease;
}
.hero-counter-total {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  font-family: var(--font-sans);
  font-weight: 600;
}

/* ─ Bottom Thumbnail Navigation ─ */
/* ── HERO THUMB V2 REDESIGN ── */
/* ── DESTINATION NAVIGATOR STRIP — centered ── */
.hero-thumb-nav {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0; z-index: 10;
  background: rgba(10,10,10,0.6); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: 16px 16px 0 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12); border-bottom: none;
  min-width: 660px;
}
.hero-thumb {
  position: relative; background: transparent; border: none; cursor: pointer; padding: 0;
  overflow: hidden; transition: background 0.25s; flex: 1;
}
.hero-thumb + .hero-thumb { border-left: 1px solid rgba(255,255,255,0.1); }
.hero-thumb.active { background: rgba(0,126,138,0.3); }
.hero-thumb:hover:not(.active) { background: rgba(255,255,255,0.06); }

/* Thumbnail image — shown left side */
.htv2-bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.25;
  transition: opacity 0.3s;
}
.htv2-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease; display: block;
}
.hero-thumb.active .htv2-bg { opacity: 0.35; }
.hero-thumb:hover .htv2-bg img { transform: scale(1.06); }

/* Content */
.htv2-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
}
.htv2-body { flex: 1; text-align: left; display: flex; flex-direction: column; gap: 3px; }
.htv2-region {
  font-size: 10px; color: var(--amber); font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  display: flex; align-items: center; gap: 3px;
}
.htv2-name {
  font-size: 15px; font-weight: 700; color: #fff;
  letter-spacing: -0.2px; line-height: 1.15;
  font-family: 'Inter', system-ui, sans-serif;
}
.htv2-meta { font-size: 11px; color: rgba(255,255,255,0.6); }
.htv2-meta strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.htv2-cta {
  flex-shrink: 0; background: var(--amber); color: #1A1A1A;
  font-size: 10.5px; font-weight: 700; padding: 5px 11px;
  border-radius: 20px; letter-spacing: 0.3px;
  opacity: 0; transform: translateX(5px);
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.hero-thumb.active .htv2-cta,
.hero-thumb:hover .htv2-cta { opacity: 1; transform: translateX(0); }

/* Active — amber top accent */
.hero-thumb.active::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--amber); z-index: 3;
}

/* Progress bar */
/* Progress bar — disabled */
.hero-thumb-bar { display: none; }
.hero-thumb-progress { display: none; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 78px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.35);
  z-index: 3;
  animation: bounceDown 2s ease infinite;
}
.scroll-cue i { font-size: 1.3rem; }
@keyframes bounceDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* Hero responsive */
@media (max-width: 1100px) {
  .hero-container { grid-template-columns: 1fr; padding-top: 2rem; }
  .hero-side { display: none; }
  .hero-search-card { max-width: 100%; }
}
@media (max-width: 768px) {
  .hero { margin-top: -100px; padding-top: 100px; min-height: 100svh; }
  .hero-headline { font-size: clamp(1.6rem, 6.5vw, 2.2rem); letter-spacing: -0.5px; margin-bottom: 0.75rem; line-height: 1.15; }
  .hero-badge { font-size: 0.68rem; padding: 0.28rem 0.75rem; margin-bottom: 0.75rem; }
  .hero-search { flex-direction: column; border-radius: 12px; }
  .search-field { border-right: none; border-bottom: 1px solid #f2f2f2; }
  .hero-search-btn { border-radius: 0 0 12px 12px !important; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 0.7rem; margin-bottom: 2.5rem; }
  .hero-ctas .btn-lg { padding: 0.55rem 1.5rem; font-size: 0.88rem; min-height: 44px; }
  .hero-cta-ghost { font-size: 0.82rem; }
  .hero-sub { font-size: 0.95rem; }

  /* Thumb nav: compact pill strip at hero bottom */
  .hero-thumb-nav {
    position: absolute;
    bottom: 8px; left: 50%; transform: translateX(-50%);
    min-width: auto;
    max-width: 92vw;
    display: flex; gap: 4px;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.15);
    padding: 5px 8px;
    overflow: hidden;
  }
  .hero-thumb {
    flex: 0 0 auto;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
  }
  .hero-thumb + .hero-thumb { border-left: none; }
  .htv2-bg, .htv2-cta, .htv2-meta { display: none; }
  .htv2-inner {
    padding: 4px 10px;
    gap: 0;
    flex-direction: column;
    align-items: center;
  }
  .htv2-body { text-align: center; gap: 0; }
  .htv2-region { display: none; }
  .htv2-name {
    font-size: 10px; font-weight: 600;
    color: rgba(255,255,255,.7); letter-spacing: .3px;
  }
  .hero-thumb.active .htv2-name { color: #fff; }
  .hero-thumb.active { background: rgba(0,126,138,.5); }
  .hero-thumb.active::after { height: 2px; }
  .hero-thumb-bar { display: none; }
  .hero-thumb-progress { display: none; }
}

/* ── 9. TRUST BAR ── */
.trust-bar {
  background: var(--charcoal);
  padding: 1.4rem 0;
  border-bottom: 3px solid var(--teal);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon i { font-size: 1.3rem; color: var(--amber); }
.trust-text { display: flex; flex-direction: column; }
.trust-number {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-display);
}
.trust-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-top: 2px;
  white-space: nowrap;
}

/* ── 10. DESTINATION CARDS ── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
  margin-bottom: var(--sp-10);
}
.destinations-grid .dest-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.dest-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
}
.destinations-grid .dest-card:nth-child(1) {
  aspect-ratio: unset;
}

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

.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.80) 0%,
    rgba(0,0,0,.20) 50%,
    transparent 100%
  );
  transition: background var(--t-slow);
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.05) 100%
  );
}

.dest-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
}
.destinations-grid .dest-card:nth-child(1) .dest-card-body { padding: 1.75rem; }

.dest-card-region {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.2rem;
}
.dest-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
  line-height: 1.2;
}
.destinations-grid .dest-card:nth-child(1) .dest-card-name { font-size: 1.9rem; }

.dest-card-count {
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
  margin-top: 0.2rem;
}

.dest-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  margin-top: 0.65rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t-base) var(--ease);
}
.dest-card:hover .dest-card-cta {
  opacity: 1;
  transform: translateY(0);
}
.dest-card-cta:hover { background: var(--amber) !important; border-color: var(--amber) !important; }

/* ── 11. TOUR CARDS ── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--sp-10);
}

.tour-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-mid);
}

.tour-card-img {
  position: relative;
  height: 215px;
  overflow: hidden;
  flex-shrink: 0;
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.tour-card:hover .tour-card-img img { transform: scale(1.07); }

.badge-dest {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--teal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: var(--r-full);
}
.badge-dur {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: rgba(26,26,26,.80);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  border-radius: var(--r-full);
  display: flex; align-items: center; gap: 0.3rem;
}

.tour-card-body {
  padding: 1rem 1rem 0.875rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-route {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.tour-route i { font-size: 0.82rem; color: var(--teal); }

.tour-card-body h3 {
  font-size: 0.975rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.tour-highlights {
  flex: 1;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.tour-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.tour-highlights li i { color: var(--teal); font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}
.price-block { display: flex; flex-direction: column; }
.price-from {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.price-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
}
.tour-card-actions { display: flex; gap: 0.45rem; }

/* ── 12. SPECIAL DEALS ── */
.special-deals {
  background: var(--charcoal);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}
.special-deals::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,126,138,.18) 0%, transparent 65%);
  pointer-events: none;
}
.special-deals::after {
  content: '';
  position: absolute;
  bottom: -30%; left: 25%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 65%);
  pointer-events: none;
}
.deals-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 1;
}
.deals-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,166,35,.14);
  border: 1px solid rgba(245,166,35,.30);
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}
.deals-content h2 { color: var(--white); margin-bottom: var(--sp-4); }
.deals-content p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.75; margin-bottom: var(--sp-6); }
.deals-perks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--sp-8);
}
.deal-perk {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
}
.deal-perk i { color: var(--amber); font-size: 1rem; flex-shrink: 0; }

.deals-img {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.deals-img img { width: 100%; height: 100%; object-fit: cover; }
.deals-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--amber);
  color: var(--white);
  padding: 0.85rem 1.3rem;
  border-radius: var(--r-xl);
  text-align: center;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245,166,35,.5);
}
.deals-badge .badge-big { display: block; font-size: 1.35rem; line-height: 1; }
.deals-badge .badge-small { display: block; font-size: 0.68rem; font-weight: 600; opacity:.88; margin-top: 3px; }

/* ── 13. WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-light) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.why-card:hover::before { opacity: 1; }
.why-card:hover {
  border-color: var(--teal-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-card-number {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: rgba(0,126,138,.06);
  line-height: 1;
  pointer-events: none;
}
.why-icon-wrap {
  width: 60px; height: 60px;
  background: var(--teal-light);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-4);
  transition: all var(--t-base) var(--ease);
  position: relative;
}
.why-icon-wrap i { font-size: 1.6rem; color: var(--teal); transition: color var(--t-base); }
.why-card:hover .why-icon-wrap { background: var(--teal); }
.why-card:hover .why-icon-wrap i { color: var(--white); }
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  font-family: var(--font-sans);
  position: relative;
}
.why-card p { font-size: 0.845rem; color: var(--text-secondary); line-height: 1.7; position: relative; }

/* ── 14. HOW IT WORKS ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--amber));
  opacity: .25;
  z-index: 0;
}
.step { text-align: center; position: relative; }
.step-bubble {
  width: 80px; height: 80px;
  background: var(--teal-light);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
  position: relative;
  z-index: 1;
  transition: all var(--t-base) var(--ease);
}
.step:hover .step-bubble { background: var(--teal); }
.step:hover .step-bubble i { color: var(--white); }
.step-bubble i { font-size: 1.9rem; color: var(--teal); transition: color var(--t-base); }
.step-num {
  position: absolute;
  top: -0.75rem; right: -0.75rem;
  width: 26px; height: 26px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.step p { font-size: 0.845rem; color: var(--text-secondary); line-height: 1.7; }

/* ── 15. TESTIMONIALS ── */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 1.75rem;
  position: relative;
  transition: all var(--t-base) var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: serif;
}
.testimonial-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--teal);
  font-family: var(--font-display);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); }
.testimonial-dest { font-size: 0.75rem; color: var(--text-muted); }

/* ── 16. NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -50%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 65%);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  position: relative;
}
.newsletter-content h2 { color: var(--white); margin-bottom: var(--sp-2); }
.newsletter-content p { color: rgba(255,255,255,.78); font-size: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  color: var(--charcoal);
}
.newsletter-input::placeholder { color: var(--charcoal-50); }
.newsletter-note { font-size: 0.75rem; color: rgba(255,255,255,.55); margin-top: 0.6rem; }

/* ── 17. FOOTER ── */
.footer {
  background: #111111;
  color: rgba(255,255,255,.65);
  padding: var(--sp-20) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer-brand .logo-white {
  height: 44px;
  margin-bottom: var(--sp-4);
  display: block;
  background: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  width: fit-content;
}
.footer-brand p {
  font-size: 0.845rem;
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  max-width: 270px;
  color: rgba(255,255,255,.55);
}
.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: all var(--t-fast) var(--ease);
}
.social-btn:hover { background: var(--teal); color: var(--white); }

.footer-col h5 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
  font-family: var(--font-sans);
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-size: 0.845rem;
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 0.35rem;
  transition: all var(--t-fast) var(--ease);
}
.footer-links a i { font-size: 0.65rem; opacity: .5; }
.footer-links a:hover { color: var(--amber); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex; gap: 0.7rem;
  font-size: 0.845rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}
.footer-contact-item i { color: var(--teal); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,.4); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: var(--amber); }

/* ── 18. MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--r-3xl);
  max-width: 560px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: modalIn 0.3s var(--ease);
}
@keyframes modalIn {
  from { opacity:0; transform:translateY(20px) scale(.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.modal-head {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.modal-head h3 { font-size: 1.15rem; font-weight: 700; font-family: var(--font-sans); }
.modal-head p { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.modal-close {
  width: 30px; height: 30px;
  background: var(--grey);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all var(--t-fast);
  flex-shrink: 0;
  cursor: pointer; border: none;
}
.modal-close:hover { background: var(--charcoal); color: var(--white); }
.modal-body { padding: 1.75rem; }

/* ── 19. FORMS ── */
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  letter-spacing: 0.2px;
}
.form-label .req { color: var(--amber); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,126,138,.10);
}
.form-textarea { min-height: 100px; resize: vertical; }

/* Radio group */
.radio-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.radio-option { display: flex; align-items: center; gap: 0.4rem; cursor: pointer; }
.radio-option input { accent-color: var(--teal); }
.radio-option span { font-size: 0.845rem; color: var(--text-secondary); }

/* ── 20. FLOATING CTAs ── */
.floating-actions {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 490;
  transition: bottom 0.4s cubic-bezier(.34,1.56,.64,1);
}
.floating-actions.bar-visible {
  bottom: 4.5rem;
}
.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 1.3rem;
  transition: all var(--t-base) var(--ease);
  text-decoration: none;
  position: relative;
}
.float-btn:hover { transform: scale(1.12); box-shadow: var(--shadow-lg); }
.float-phone   { background: var(--teal); color: var(--white); }
.float-whatsapp { background: #25D366; color: var(--white); }
.float-enquire { background: var(--amber); color: var(--white); width: 54px; height: 54px; }

.float-btn .tooltip {
  position: absolute;
  right: calc(100% + 0.6rem);
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
}
.float-btn:hover .tooltip { opacity: 1; }

/* ── 21. PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-75) 100%);
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1920&q=40');
  background-size: cover;
  background-position: center;
  opacity: .15;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.7); }
.breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-4);
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb i { font-size: 0.65rem; }

/* ── 22. FILTER SIDEBAR ── */
.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 1.5rem;
  position: sticky;
  top: 6rem;
}
.filter-group { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.filter-group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  display: block;
}
.filter-options { display: flex; flex-direction: column; gap: 0.45rem; }
.filter-option { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.filter-option input { accent-color: var(--teal); }
.filter-option span { font-size: 0.845rem; color: var(--text-secondary); }
.filter-option span em { font-style: normal; color: var(--text-muted); font-size: 0.78rem; }

/* ── 23. TOUR DETAIL ── */
.tour-detail-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  overflow: hidden;
}
.tour-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.tour-detail-hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.70) 0%, rgba(0,0,0,.20) 60%, transparent 100%);
}
.tour-detail-header {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 0;
}
.tour-meta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.75rem; }
.tour-meta-pill {
  display: flex; align-items: center; gap: 0.3rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 0.78rem; font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
}
.tour-meta-pill i { font-size: 0.85rem; }

.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-8);
  align-items: start;
  padding: var(--sp-12) 0;
}
.tour-section { margin-bottom: var(--sp-8); }
.tour-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--charcoal);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--teal-light);
  display: flex; align-items: center; gap: 0.5rem;
}
.tour-section-title i { color: var(--teal); }

.itinerary-list { display: flex; flex-direction: column; gap: 0; }
.itinerary-day {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.5rem;
}
.itinerary-day:last-child { padding-bottom: 0; }
.itinerary-day::before {
  content: '';
  position: absolute;
  left: 29px; top: 40px; bottom: 0;
  width: 2px;
  background: var(--teal-light);
}
.itinerary-day:last-child::before { display: none; }
.day-num {
  width: 60px; height: 60px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.day-num span { font-size: 1.2rem; font-weight: 800; line-height: 1; }
.day-content h4 { font-size: 0.95rem; font-weight: 700; font-family: var(--font-sans); color: var(--charcoal); margin-bottom: 0.5rem; }
.day-content p { font-size: 0.845rem; color: var(--text-secondary); line-height: 1.7; }

.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.include-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.45;
  padding: 0.5rem;
  background: var(--teal-light);
  border-radius: var(--r-md);
}
.include-item i { color: var(--teal); flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }
.exclude-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.45;
  padding: 0.5rem;
  background: #fff5f5;
  border-radius: var(--r-md);
}
.exclude-item i { color: #e53e3e; flex-shrink: 0; font-size: 0.9rem; margin-top: 1px; }

/* Enquiry Card */
.enquiry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 6rem;
}
.enquiry-card-head {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 1.25rem 1.5rem;
}
.enquiry-card-head h4 { color: var(--white); font-size: 1rem; font-family: var(--font-sans); }
.enquiry-card-head p { color: rgba(255,255,255,.75); font-size: 0.8rem; margin-top: 2px; }
.enquiry-card-body { padding: 1.5rem; }
.book-confidence { padding: 1rem 1.5rem; background: var(--grey); border-top: 1px solid var(--border); }
.confidence-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-secondary); font-weight: 500;
  margin-bottom: 0.4rem;
}
.confidence-item:last-child { margin-bottom: 0; }
.confidence-item i { color: var(--teal); font-size: 0.9rem; flex-shrink: 0; }
.need-help {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.need-help-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600;
  color: var(--teal);
  transition: color var(--t-fast);
}
.need-help-link:hover { color: var(--teal-dark); }
.need-help-link i { font-size: 1rem; }

/* ── 24. HIGHLIGHTS ── */
.highlights-list { display: flex; flex-direction: column; gap: 0.5rem; }
.highlight-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.875rem; color: var(--text-secondary); line-height: 1.55;
}
.highlight-item i { color: var(--amber); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ── 25. ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--amber);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--r-xl);
  font-weight: 700;
  text-align: center;
}
.about-img-badge .big { display: block; font-size: 2rem; line-height: 1; }
.about-img-badge .small { display: block; font-size: 0.75rem; font-weight: 600; opacity: .88; }

.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: var(--sp-8); }
.about-stat {
  background: var(--grey);
  border-radius: var(--r-xl);
  padding: 1.25rem;
  text-align: center;
}
.about-stat .stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
  font-family: var(--font-display);
  display: block;
}
.about-stat .stat-lbl { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* ── 26. CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.contact-info-card {
  background: var(--grey);
  border-radius: var(--r-2xl);
  padding: 2rem;
}
.contact-info-item {
  display: flex; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 46px; height: 46px;
  background: var(--teal);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i { color: var(--white); font-size: 1.2rem; }
.contact-info-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.contact-info-val { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); margin-top: 2px; line-height: 1.5; }
.contact-info-val a { color: var(--teal); transition: color var(--t-fast); }
.contact-info-val a:hover { color: var(--teal-dark); }

/* ── 27. SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ── 28. UTILITIES ── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-8  { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mb-0  { margin-bottom: 0 !important; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.bg-grey-section { background: var(--grey); }

/* ── About page pillars grid (replaces inline style for responsiveness) ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── 29. RESPONSIVE ── */
@media (max-width: 1100px) {
  .why-grid           { grid-template-columns: repeat(2,1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .trust-bar-inner    { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: none; }
}

@media (max-width: 1024px) {
  .nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  /* Pill nav on mobile */
  .header { padding: 12px 1rem; }
  .header-inner { height: 52px; padding: 0 0.5rem 0 1.1rem; gap: var(--sp-3); }
  /* Hide Build Your Package btn + Sign In text from header — show sign-in as icon only */
  .header-actions .btn-amber { display: none; }
  #nav-auth-btn .nav-signin-text { display: none; }
  /* Reduce pill radius on small-screen elements */
  .currency-dropdown-btn { border-radius: var(--r-lg) !important; padding: 0.3rem 0.55rem; font-size: 0.72rem; }
  #currencyLabel { display: none !important; }
  #currencyShort { display: inline !important; font-weight: 700; font-size: 0.72rem; color: var(--charcoal); }
  .btn-sm { border-radius: var(--r-lg) !important; }
  .deals-inner    { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: var(--sp-6); }
  .testimonials-row { grid-template-columns: 1fr; }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .enquiry-card { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
/* Mobile nav: special styling for action links */
.mobile-nav-link.mobile-action-amber {
  color: var(--amber-dark);
  font-weight: 700;
  background: var(--amber-light);
}
.mobile-nav-link.mobile-action-amber::before {
  background: rgba(245,166,35,0.15);
  color: var(--amber-dark);
}
.mobile-nav-link.mobile-action-teal {
  color: var(--teal);
  font-weight: 600;
}
.mobile-nav-link.mobile-action-teal::before {
  background: rgba(0,126,138,0.1);
  color: var(--teal);
}

@media (max-width: 768px) {
  :root { --pad-x: 1.25rem; }
  .section { padding: var(--sp-14, 3.5rem) 0; }
  /* Prevent iOS auto-zoom on focused inputs (requires font-size >= 16px) */
  input, select, textarea { font-size: 16px; }
  .destinations-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .destinations-grid .dest-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/7;
  }
  .tours-grid { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .steps-row  {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .steps-row::before { display: none; }
  .trust-bar-inner { grid-template-columns: repeat(2,1fr); }
  .hero-search { flex-direction: column; border-radius: var(--r-xl); }
  .search-field { border-right: none; border-bottom: 1px solid var(--border); }
  .search-field:last-of-type { border-bottom: none; }
  .hero-search .btn-amber { border-radius: 0 0 var(--r-xl) var(--r-xl); padding: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  /* Footer mobile: compact full-width */
  .footer { padding: var(--sp-10) 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6) var(--sp-4); margin-bottom: var(--sp-8); }
  .footer-brand { grid-column: 1 / -1; padding-bottom: var(--sp-5); border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-brand p { max-width: 100%; font-size: 0.8rem; margin-bottom: var(--sp-4); }
  .footer-col { padding-bottom: var(--sp-5); border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-col:last-child { grid-column: 1 / -1; border-bottom: none; }
  .footer-brand .logo-white { height: 38px; margin-bottom: var(--sp-3); }
  .footer-col h5 { font-size: 0.72rem; margin-bottom: var(--sp-3); letter-spacing: 1px; }
  .footer-links { gap: 0.4rem; }
  .footer-links a { font-size: 0.8rem; }
  .footer-contact-list { gap: 0.55rem; }
  .footer-contact-item { font-size: 0.8rem; gap: 0.5rem; }
  .footer-contact-item i { font-size: 0.9rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1rem 0; gap: 0.5rem; }
  .footer-bottom p { font-size: 0.72rem; }
  .footer-bottom-links { gap: 1rem; }
  .footer-bottom-links a { font-size: 0.72rem; }
  .newsletter-form { flex-direction: column; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  /* ── Tour detail "You May Also Like": 1-col on all mobile ── */
  #tdSimilar { grid-template-columns: 1fr !important; }
  /* ── Skeleton loader: 1-col on all mobile ── */
  #toursSkeleton { grid-template-columns: 1fr !important; }
  /* ── Blog post hero image: reduce height on mobile ── */
  .blog-post-hero-img { height: 180px; }
  /* ── Testimonials featured image: cap height on mobile ── */
  .testi-featured-img { min-height: 220px; }
}

@media (max-width: 480px) {
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; padding: 0.4rem 0.75rem; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  h1 { font-size: 2.4rem; }
  .deals-inner { gap: var(--sp-8); }
}

@media print {
  .floating-actions, .modal-overlay, .header, .mobile-nav, .announcement-bar,
  .td-hero, .trust-badges-row, .photo-strip-section, .sidebar-col,
  .td-save-btn, #tdShareWaBtn, #tdMobileBar, .sticky-offer-bar,
  #related-tours-section, .footer, #cookieBanner, #bttBtn,
  .viewing-now, .faq-section, .cta-section { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .td-main-col { width: 100% !important; max-width: 100% !important; }
  .td-layout { display: block !important; }
  a { color: #000; text-decoration: none; }
  h2, h3 { page-break-after: avoid; }
  .td-itinerary-item, .tour-highlights-card { page-break-inside: avoid; }
}

/* ============================================================
   ENHANCEMENT LAYER — Conversion, Visual Effects, SEO
   ============================================================ */

/* ── STAR RATINGS ON TOUR CARDS ── */
.tour-stars {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .35rem;
}
.tour-stars span {
  font-weight: 700;
  color: var(--charcoal);
}
.tour-stars em {
  font-style: normal;
  color: var(--text-muted);
}

/* ── COUNTDOWN TIMER ── */
.countdown-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-xl);
  padding: .75rem 1.25rem;
  margin: 1.5rem 0;
  width: fit-content;
  flex-wrap: wrap;
}
.countdown-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
}
.countdown-units {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,.25);
  border-radius: var(--r-md);
  padding: .35rem .6rem;
  min-width: 48px;
}
.cd-unit span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.cd-unit em {
  font-style: normal;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: .1rem;
}
.cd-sep {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  margin-top: -.4rem;
}

/* ── WHY BOOK NOW SECTION ── */
.why-book-now {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 60%, var(--teal-xdark) 100%);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}
.why-book-now::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-book-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-2xl);
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, background .3s ease;
}
.why-book-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.16);
}
.why-book-ribbon {
  position: absolute;
  top: 12px;
  right: -24px;
  background: var(--amber);
  color: var(--charcoal);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: .25rem 2.5rem;
  transform: rotate(30deg);
}
.why-book-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  color: #fff;
}
.why-book-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
}
.why-book-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.why-book-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.price-old {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  text-decoration: line-through;
  font-family: var(--font-sans);
}
.price-new {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--amber);
  font-family: var(--font-sans);
}
.why-book-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(245,166,35,.2);
  border: 1px solid rgba(245,166,35,.4);
  color: #F5A623;
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: var(--r-full);
}
@media (max-width: 768px) {
  .why-book-grid { grid-template-columns: 1fr; }
}

/* ── STICKY OFFER BAR ── */
/* ── STICKY OFFER BAR (improved) ───────────────────────────────────────── */
.sticky-offer-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: linear-gradient(90deg, #0f1923 0%, #1a2535 50%, #0f1923 100%);
  border-top: 3px solid var(--amber);
  box-shadow: 0 -4px 24px rgba(0,0,0,.45);
  padding: .7rem 1.25rem;
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}
.sticky-offer-bar.visible { transform: translateY(0); }
.sticky-offer-bar.hidden  { transform: translateY(110%); }

.sticky-offer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: nowrap;
}

/* Badge */
.sticky-offer-badge {
  display: flex; align-items: center; gap: .3rem;
  background: var(--amber);
  color: #1a1a1a;
  font-size: .68rem; font-weight: 900;
  letter-spacing: .8px; text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: var(--r-full);
  white-space: nowrap; flex-shrink: 0;
  animation: sobbPulse 2s ease-in-out infinite;
}
@keyframes sobbPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,166,35,.55); }
  50%      { box-shadow: 0 0 0 7px rgba(245,166,35,0); }
}

/* Text block */
.sticky-offer-content {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: .1rem;
}
.sticky-offer-title {
  font-size: .85rem; font-weight: 700;
  color: #fff; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.sticky-offer-sub {
  font-size: .75rem; color: rgba(255,255,255,.6);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Countdown */
.sticky-offer-countdown {
  display: flex; align-items: center; gap: .35rem;
  flex-shrink: 0;
}
.sticky-offer-countdown-label {
  font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .5px;
  white-space: nowrap;
}
.soc-units {
  display: flex; align-items: center; gap: .2rem;
}
.soc-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px;
  padding: .15rem .35rem;
  min-width: 32px;
}
.soc-val {
  font-size: .82rem; font-weight: 800;
  color: var(--amber); line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.soc-lbl { font-size: .5rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .3px; }
.soc-sep { font-size: .8rem; font-weight: 700; color: var(--amber); margin-top: -4px; }

/* Code chip */
.sticky-offer-code {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.07);
  border: 1.5px dashed rgba(245,166,35,.55);
  border-radius: var(--r-md);
  padding: .3rem .65rem;
  cursor: pointer; flex-shrink: 0;
  transition: background .2s, border-color .2s;
  position: relative;
}
.sticky-offer-code:hover { background: rgba(255,255,255,.13); border-color: var(--amber); }
.sticky-offer-code-text {
  font-size: .78rem; font-weight: 800;
  color: var(--amber); letter-spacing: 1.2px;
  font-family: monospace;
}
.sticky-offer-code-icon { font-size: .9rem; color: rgba(255,255,255,.5); }
.sticky-offer-code-copied {
  position: absolute; top: -28px; left: 50%;
  transform: translateX(-50%);
  background: #16a34a; color: #fff;
  font-size: .65rem; font-weight: 700;
  padding: .2rem .5rem; border-radius: var(--r-sm);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .2s;
}
.sticky-offer-code.copied .sticky-offer-code-copied { opacity: 1; }

/* CTA */
.sticky-offer-cta {
  flex-shrink: 0;
  font-size: .82rem !important;
  padding: .45rem 1.1rem !important;
  border-radius: var(--r-full) !important;
  box-shadow: 0 0 14px rgba(245,166,35,.4);
  transition: box-shadow .2s, transform .18s !important;
  white-space: nowrap;
}
.sticky-offer-cta:hover { box-shadow: 0 0 22px rgba(245,166,35,.6); transform: translateY(-1px); }

/* Close */
.sticky-offer-close {
  background: none; border: none;
  color: rgba(255,255,255,.35); cursor: pointer;
  font-size: 1.1rem; padding: .25rem;
  line-height: 1; flex-shrink: 0;
  border-radius: var(--r-sm);
  transition: color .18s, background .18s;
}
.sticky-offer-close:hover { color: #fff; background: rgba(255,255,255,.1); }

/* Mobile */
@media (max-width: 768px) {
  .sticky-offer-countdown { display: none; }
  .sticky-offer-bar { padding: .65rem 1rem; }
}
@media (max-width: 540px) {
  .sticky-offer-code { display: none; }
  .sticky-offer-sub  { display: none; }
  .sticky-offer-inner { gap: .6rem; }
}

/* ── EXIT INTENT MODAL ── */
.exit-intent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.exit-intent-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.exit-intent-modal {
  background: var(--white);
  border-radius: var(--r-2xl);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: modalIn .35s ease forwards;
}
.exit-intent-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: rgba(0,0,0,.4);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  z-index: 10;
  transition: background .2s;
}
.exit-intent-close:hover { background: rgba(0,0,0,.7); }
.exit-intent-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.exit-intent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exit-intent-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
}
.exit-intent-img-overlay span {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.exit-intent-body {
  padding: 1.5rem 1.75rem 1.75rem;
}
.exit-intent-body h3 {
  font-size: 1.25rem;
  margin: .5rem 0 .65rem;
}
.exit-intent-body p {
  color: var(--text-secondary);
  font-size: .875rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.exit-intent-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* ── PHOTO STRIP (Tour Detail) ── */
.photo-strip-wrap {
  background: var(--charcoal);
  overflow: hidden;
}
.photo-strip {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.photo-strip::-webkit-scrollbar { display: none; }
.photo-strip-item {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 180px;
  overflow: hidden;
  cursor: pointer;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.photo-strip-item:hover img {
  transform: scale(1.08);
}
.photo-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  color: #fff;
  font-size: 1.5rem;
}
.photo-strip-item:hover .photo-strip-overlay { opacity: 1; }

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ── TRUST BADGES ROW (Tour Detail) ── */
.trust-badges-row {
  background: var(--grey);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0;
}
.trust-badges-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-badge-item i {
  color: var(--teal);
  font-size: 1rem;
}

/* ── FAQ ACCORDION ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--teal);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: background .2s;
}
.faq-q:hover { background: var(--grey); }
.faq-icon {
  font-size: 1.1rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 1.25rem 1.1rem;
}
.faq-a.open { display: block; }
.faq-a p {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-a a { color: var(--teal); }

/* ── RECENTLY BOOKED TOAST ── */
.booked-toast {
  position: fixed;
  bottom: 7rem;
  left: 1.5rem;
  z-index: 490;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: .85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  max-width: 280px;
  transform: translateX(-120%);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.booked-toast.show { transform: translateX(0); }
.booked-toast-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
  background: var(--teal);
}
.booked-toast-text {
  font-size: .78rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.booked-toast-text strong {
  color: var(--charcoal);
  display: block;
  font-size: .82rem;
}
.booked-toast-time {
  font-size: .68rem;
  color: var(--text-muted);
  margin-top: .1rem;
}

/* ── KEN BURNS ON DESTINATION CARDS ── */
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  50%  { transform: scale(1.08) translate(-1%, -.5%); }
  100% { transform: scale(1)    translate(0, 0); }
}
.dest-card img {
  animation: kenBurns 12s ease-in-out infinite;
  will-change: transform;
}
.dest-card:hover img {
  animation-play-state: paused;
  transform: scale(1.06);
  transition: transform .5s ease;
}

/* ── DESTINATION CARD MOOD OVERLAY ── */
.dest-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.2) 55%,
    transparent 100%
  );
  transition: background .4s ease;
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,126,138,.8) 0%,
    rgba(0,126,138,.3) 55%,
    transparent 100%
  );
}
.dest-card-tagline {
  font-size: .78rem;
  color: rgba(255,255,255,.8);
  font-style: italic;
  margin-bottom: .3rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.dest-card:hover .dest-card-tagline {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO PARALLAX TEXT ── */
.hero-content {
  will-change: transform;
}

/* ── SCROLL CUE BOUNCE ANIMATION ── */
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
.scroll-cue i {
  animation: bounceDown 1.6s ease-in-out infinite;
}

/* ── ANIMATED NUMBER COUNTERS ── */
.trust-number,
.stat-num {
  display: inline-block;
}

/* ── BLOG STYLES ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-category {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--teal);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: var(--r-full);
}
.blog-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .72rem;
  color: var(--text-muted);
  margin-bottom: .6rem;
}
.blog-card-meta i { font-size: .8rem; }
.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  line-height: 1.4;
  color: var(--charcoal);
}
.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.blog-card-body h3 a:hover { color: var(--teal); }
.blog-card-body p {
  font-size: .845rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-read-more {
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
}
.blog-read-more:hover { gap: .55rem; }

/* Blog Post Layout */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  padding: var(--sp-12) 0;
  align-items: start;
}
@media (max-width: 1024px) { .blog-post-layout { grid-template-columns: 1fr; } }

.blog-post-article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.blog-post-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.blog-post-content {
  padding: 2.5rem;
}
.blog-post-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 .75rem;
}
.blog-post-content h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin: 1.5rem 0 .5rem;
}
.blog-post-content p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  font-size: .9375rem;
}
.blog-post-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
}
.blog-post-content li {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: .4rem;
}
.blog-quick-answer {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.blog-quick-answer strong {
  display: block;
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .4rem;
}
.blog-quick-answer p {
  color: var(--charcoal) !important;
  margin: 0 !important;
  font-weight: 500;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.blog-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 1.5rem;
}
.blog-toc h4 {
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.toc-list a {
  font-size: .83rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: .2rem 0;
  display: block;
  border-left: 2px solid transparent;
  padding-left: .75rem;
  transition: color .2s, border-color .2s;
}
.toc-list a:hover,
.toc-list a.active {
  color: var(--teal);
  border-left-color: var(--teal);
}
.blog-sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 1.5rem;
}
.blog-sidebar-widget h4 {
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
}
.sidebar-tour-card {
  display: flex;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.sidebar-tour-card:last-child { border-bottom: none; }
.sidebar-tour-card img {
  width: 72px;
  height: 55px;
  object-fit: cover;
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.sidebar-tour-info .dest-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--teal);
}
.sidebar-tour-info .tour-name {
  font-size: .83rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
  margin: .1rem 0 .2rem;
}
.sidebar-tour-info .tour-dur {
  font-size: .72rem;
  color: var(--text-muted);
}

/* Author Box */
.author-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--grey);
  border-radius: var(--r-2xl);
  padding: 1.5rem;
  margin: 2.5rem 0;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-info .author-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--charcoal);
}
.author-info .author-title {
  font-size: .78rem;
  color: var(--teal);
  margin: .1rem 0 .3rem;
}
.author-info .author-bio {
  font-size: .8rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Blog category filter tabs */
.blog-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.blog-tab {
  padding: .45rem 1.1rem;
  border-radius: var(--r-full);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  transition: all .2s;
}
.blog-tab.active,
.blog-tab:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}


/* ── BLOG FILTER CATEGORY TABS ── */
.blog-filter-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* ── URGENCY BADGE ON TOUR CARDS ── */
.tour-card-img { position: relative; }
.badge-seats {
  position: absolute;
  bottom: .65rem;
  left: .65rem;
  background: rgba(10, 10, 10, 0.82);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25px;
  padding: .28rem .7rem .28rem .5rem;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: .38rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(34,197,94,.45);
  box-shadow: 0 0 10px rgba(34,197,94,.22);
}
/* Green live-pulse dot */
.dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(34,197,94,.9);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 5px rgba(34,197,94,.9); }
  50% { opacity: 0.65; transform: scale(0.75); box-shadow: 0 0 10px rgba(34,197,94,.4); }
}

/* Ensure tour-card-img wrapper is positioned */
.tour-card-img {
  position: relative;
  overflow: hidden;
}

/* ── WISHLIST / SAVE BUTTON ── */
.card-save-btn {
  position: absolute;
  bottom: .65rem;
  right: .65rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #9CA3AF;
  transition: color 0.18s, transform 0.18s, background 0.18s;
  z-index: 3;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  line-height: 1;
}
.card-save-btn:hover { color: #EF4444; transform: scale(1.12); background: #fff; }
.card-save-btn.saved { color: #EF4444; background: #fff; }
.card-save-btn.saved i::before { content: "\eab2"; } /* ri-heart-fill */

/* Save button on tour-detail hero */
.td-save-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.td-save-btn:hover { background: rgba(255,255,255,.28); }
.td-save-btn.saved { background: rgba(239,68,68,.25); border-color: rgba(239,68,68,.6); color: #fca5a5; }
.td-save-btn.saved i::before { content: "\eab2"; } /* ri-heart-fill */

/* Wishlist login prompt modal */
#wishlist-login-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}
#wishlist-login-modal.open { display: flex; }
.wishlist-login-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 380px;
  width: 92%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  position: relative;
  animation: wlModalIn 0.22s ease;
}
@keyframes wlModalIn {
  from { transform: scale(0.92) translateY(12px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.wishlist-login-close {
  position: absolute;
  top: .85rem; right: .85rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: #6B7280;
}
.wishlist-login-close:hover { background: #E5E7EB; }

/* ══════════════════════════════════════════════════════════
   TOUR CARD v2 — Reference-style: price, urgency, reviews
   ══════════════════════════════════════════════════════════ */

/* Offer badge — red/orange urgency label on image top-left */
.badge-offer {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(239,68,68,.45);
  text-transform: uppercase;
}

/* Override badge-dur to clean white pill */
.badge-dur {
  background: rgba(255,255,255,.94) !important;
  color: var(--charcoal) !important;
  border: 1.5px solid rgba(255,255,255,.7) !important;
  font-weight: 700 !important;
  font-size: 0.7rem !important;
  backdrop-filter: none !important;
}

/* 2-column inclusions grid */
.tour-inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.22rem 0.5rem;
  margin-bottom: 0.55rem;
}
.tour-inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 0.28rem;
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.3;
}
.tour-inclusions li i {
  color: var(--teal);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Meta row: cities/days stat + inline star rating */
.tour-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.55rem;
  gap: 0.5rem;
}
.tour-meta-stat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
}
.tour-meta-stat i { color: var(--teal); font-size: 0.8rem; }
/* Highlighted star rating pill */
.tour-meta-stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  white-space: nowrap;
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  border-radius: 20px;
  padding: 0.18rem 0.55rem;
}
.tour-meta-stars .stars-color { color: #D97706; font-size: 0.82rem; letter-spacing: 0.3px; }
.tour-meta-stars strong { font-size: 0.8rem; color: #92400E; font-weight: 800; }
.tour-meta-stars em { font-style: normal; font-size: 0.7rem; color: #B45309; font-weight: 600; }

/* Amenity icons row */
.tour-amenity-icons {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.tour-amenity-icons span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.9rem;
  flex-shrink: 0;
  cursor: default;
  transition: background var(--t-fast) var(--ease);
}
.tour-amenity-icons span:hover { background: var(--teal); color: #fff; }

/* Price row: current price + strikethrough + savings badge */
.tour-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.7rem;
  background: #F4FFFE;
  border-radius: var(--r-md);
  border: 1px solid rgba(30,167,136,.18);
  margin-bottom: 0.55rem;
}
.card-price-block { display: flex; flex-direction: column; gap: 1px; }
.card-price-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.card-price-main { display: flex; align-items: baseline; gap: 0.45rem; }
.card-price-current {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal);
  font-family: var(--font-sans);
  line-height: 1;
}
.card-price-original {
  font-size: 0.78rem;
  color: #DC2626;
  text-decoration: line-through;
  font-family: var(--font-sans);
  opacity: 0.85;
}
.card-price-per { font-size: 0.6rem; color: var(--text-muted); }
.badge-savings {
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.35rem 0.72rem;
  border-radius: var(--r-full);
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(239,68,68,.3);
}

/* CTA section: Call Now (left, smaller) + Book Now (right, bigger) */
.tour-cta-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0.45rem;
}
.btn-tour-call,
.btn-tour-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.6rem 0.5rem;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  text-decoration: none;
  border: none;
  font-family: var(--font-sans);
}
.btn-tour-call { background: var(--teal); color: #fff; }
.btn-tour-call:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(30,167,136,.35); }
.btn-tour-wa { background: #25D366; color: #fff; }
.btn-tour-wa:hover { background: #1DB954; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,211,102,.35); }
.btn-tour-call i, .btn-tour-wa i { font-size: 0.85rem; }

/* Card heading typography */
.tour-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--charcoal);
}
.tour-card-body .tour-route {
  margin-bottom: 0.5rem;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
  .tour-inclusions { grid-template-columns: 1fr; }
  .card-price-current { font-size: 1rem; }
  .btn-tour-call, .btn-tour-wa { font-size: 0.72rem; padding: 0.5rem 0.4rem; }
}


/* ── Card clickable image overlay ── */
.tour-card-img-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}
.badge-offer, .badge-dur, .badge-seats, .badge-booking-fast { z-index: 3 !important; }

/* ── Social proof row (views + next departure) ── */
.tour-card-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: #FFFBF0;
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--r-md);
  padding: 0.4rem 0.65rem;
  margin-bottom: 0.6rem;
  gap: 0.5rem;
}
.tour-views-count, .tour-next-dep-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.tour-views-count strong { color: #D97706; font-weight: 700; }
.tour-card-social i { color: #D97706; font-size: 0.75rem; }

/* ── View Full Itinerary button ── */
.btn-tour-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.58rem;
  margin-top: 0.5rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--teal);
  color: var(--teal);
  background: transparent;
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
  font-family: var(--font-sans);
  cursor: pointer;
  box-sizing: border-box;
}
.btn-tour-details:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(30,167,136,.3);
}
.btn-tour-details i { font-size: 0.88rem; }

/* ── Book Now primary CTA ── */
.btn-tour-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.72rem 1rem;
  min-height: 48px;
  border-radius: var(--r-md);
  background: var(--amber);
  color: #1A1A1A;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  box-shadow: 0 3px 14px rgba(245,166,35,.4);
  letter-spacing: 0.1px;
  font-family: var(--font-sans);
  box-sizing: border-box;
}
.btn-tour-book:hover {
  background: #E8960F;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(245,166,35,.58);
}
.btn-tour-book i { font-size: 1rem; }

/* ── Secondary row: View Details + WhatsApp ── */
.tour-cta-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.42rem;
}

/* ── Booking Fast badge (pulsing amber) ── */
.badge-booking-fast {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(217,119,6,.92);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem 0.22rem 0.5rem;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  backdrop-filter: blur(4px);
  z-index: 3;
  letter-spacing: 0.3px;
}
.dot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: dotPulseAnim 1.4s ease-in-out infinite;
}
@keyframes dotPulseAnim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ══ TOUR DETAIL — Sidebar Pricing Banner ══ */
.td-price-banner {
  background: linear-gradient(135deg, #F0FDF8, #DCFDF2);
  border: 1px solid rgba(30,167,136,.22);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.td-price-offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  gap: 0.5rem;
}
.td-offer-badge {
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.24rem 0.7rem;
  border-radius: var(--r-full);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.td-seats-left {
  font-size: 0.7rem;
  color: #EF4444;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.td-price-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}
.td-price-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}
.td-price-main { display: flex; align-items: baseline; gap: 0.5rem; }
.td-price-current {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--teal);
  font-family: var(--font-sans);
  line-height: 1;
}
.td-price-original {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-family: var(--font-sans);
}
.td-price-per { font-size: 0.62rem; color: var(--text-muted); display: block; margin-top: 2px; }
.td-save-badge {
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.td-next-departure {
  font-size: 0.73rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(30,167,136,.25);
}
.td-next-departure i { color: var(--teal); font-size: 0.8rem; }
.td-next-departure strong { color: var(--charcoal); }

/* ============================================================
   HOMEPAGE CATEGORY SECTIONS
   ============================================================ */

/* Shared section header row */
.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
}
.section-header-row .section-titles { flex: 1; }
.section-header-row .section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 0.35rem;
}
.section-header-row h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0 0 0.3rem;
}
.section-header-row .section-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}
.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.btn-link-arrow i { font-size: 1rem; transition: transform 0.2s ease; }
.btn-link-arrow:hover { color: var(--teal-dark, #005f69); gap: 0.55rem; }
.btn-link-arrow:hover i { transform: translateX(3px); }

/* ---- 1. BEST SELLING DESTINATIONS ---- */
.bsd-section { padding: var(--sp-20) 0; background: #fff; }
.bsd-rail {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) #eee;
  -webkit-overflow-scrolling: touch;
}
.bsd-rail::-webkit-scrollbar { height: 4px; }
.bsd-rail::-webkit-scrollbar-track { background: #eee; border-radius: 4px; }
.bsd-rail::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }
.bsd-card {
  flex: 0 0 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  scroll-snap-align: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.bsd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,126,138,0.18);
}
.bsd-card-img {
  position: relative;
  height: 155px;
  overflow: hidden;
}
.bsd-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.bsd-card:hover .bsd-card-img img { transform: scale(1.07); }
.bsd-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
}
.bsd-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(245,166,35,0.5);
}
.bsd-dest-name {
  position: absolute;
  bottom: 10px;
  left: 12px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.bsd-card-body {
  padding: 0.85rem 1rem 1rem;
}
.bsd-packages-count {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}
.bsd-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.bsd-price-from {
  font-size: 0.62rem;
  color: var(--text-muted);
  display: block;
}
.bsd-price-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal);
  font-family: var(--font-sans);
  line-height: 1;
}
.bsd-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  border: none;
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.bsd-explore-btn:hover { background: #005f69; transform: scale(1.03); }

/* ---- 2. LAST-MINUTE DEALS ---- */
.lmd-section { padding: var(--sp-20) 0; background: var(--grey); }
.lmd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .lmd-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .lmd-grid { grid-template-columns: repeat(2, 1fr); } }
.lmd-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.lmd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(239,68,68,0.15);
}
.lmd-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.lmd-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.lmd-card:hover .lmd-img-wrap img { transform: scale(1.07); }
.lmd-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}
.lmd-flash-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 3px 10px rgba(239,68,68,0.4);
}
.lmd-flash-badge i { font-size: 0.75rem; }
.lmd-card-overlay-text {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  z-index: 2;
}
.lmd-dest-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.lmd-duration-tag {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.lmd-card-body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.lmd-price-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.lmd-price-current {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal);
  font-family: var(--font-sans);
  line-height: 1;
}
.lmd-price-original {
  font-size: 0.85rem;
  color: #DC2626;
  text-decoration: line-through;
  font-weight: 600;
  opacity: 0.85;
}
.lmd-save-pill {
  background: #FEF2F2;
  color: #DC2626;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 20px;
  padding: 0.2rem 0.55rem;
  border: 1px solid #FCA5A5;
}
.lmd-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lmd-inclusions li {
  font-size: 0.72rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.lmd-inclusions li i { color: var(--teal); font-size: 0.78rem; }
.lmd-cta-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0.45rem;
  margin-top: auto;
}
.lmd-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.5rem;
  border: 1.5px solid var(--teal);
  border-radius: 10px;
  background: transparent;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.lmd-call-btn:hover { background: var(--teal); color: #fff; }
.lmd-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.5rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--amber), #e8950e);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  box-shadow: 0 3px 14px rgba(245,166,35,0.4);
  white-space: nowrap;
}
.lmd-book-btn:hover { opacity: 0.92; transform: translateY(-1px); }

/* ---- 3. VISA FREE DESTINATIONS ---- */
.vfd-section { padding: var(--sp-20) 0; background: #fff; }
.vfd-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) { .vfd-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .vfd-grid { grid-template-columns: repeat(2, 1fr); } }
.vfd-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.vfd-card-img {
  height: 200px;
  overflow: hidden;
}
.vfd-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.vfd-card:hover .vfd-card-img img { transform: scale(1.08); }
.vfd-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
}
.vfd-visa-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(16,185,129,0.9);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.vfd-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 2;
}
.vfd-country {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  display: block;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.vfd-packages {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.vfd-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
}
.vfd-explore i { font-size: 0.8rem; transition: transform 0.2s; }
.vfd-card:hover .vfd-explore i { transform: translateX(4px); }

/* ---- 4. EXPLORE BY THEME ---- */
.theme-section { padding: var(--sp-20) 0; background: var(--grey); }
.theme-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) { .theme-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .theme-grid { grid-template-columns: repeat(2, 1fr); } }
.theme-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,126,138,0.16);
}
.theme-card-img {
  height: 150px;
  overflow: hidden;
  position: relative;
}
.theme-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.theme-card:hover .theme-card-img img { transform: scale(1.08); }
.theme-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 55%);
}
.theme-icon-wrap {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
}
.theme-icon-wrap i { color: #fff; font-size: 1.1rem; }
.theme-card-body { padding: 0.85rem 1rem 1rem; }
.theme-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.2rem;
  line-height: 1.2;
}
.theme-tagline {
  font-size: 0.68rem;
  color: var(--teal);
  font-weight: 600;
  font-style: italic;
  margin: 0 0 0.5rem;
}
.theme-count {
  font-size: 0.68rem;
  color: var(--text-muted);
}
.theme-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.theme-cta:hover { border-bottom-color: var(--amber); }

/* ---- 5. INTERNATIONAL DESTINATIONS ---- */
.intl-section { padding: var(--sp-20) 0; background: #fff; }
.intl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
@media (max-width: 1024px) { .intl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .intl-grid { grid-template-columns: 1fr; } }
.intl-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.intl-card.intl-featured {
  grid-column: span 2;
}
.intl-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.intl-card.intl-featured .intl-card-img { height: 260px; }
.intl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.intl-card:hover .intl-card-img img { transform: scale(1.07); }
.intl-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, transparent 50%);
}
.intl-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.1rem 1.2rem;
  z-index: 2;
}
.intl-country {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: block;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  margin-bottom: 0.15rem;
}
.intl-card.intl-featured .intl-country { font-size: 1.35rem; }
.intl-packages-info {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.55rem;
}
.intl-from-price {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}
.intl-from-label { font-size: 0.62rem; color: rgba(255,255,255,0.7); }
.intl-price { font-size: 1rem; font-weight: 800; color: var(--amber); font-family: var(--font-sans); }
.intl-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  transition: background 0.2s ease;
  text-decoration: none;
}
.intl-explore-btn:hover { background: rgba(255,255,255,0.3); }

/* ---- 6. OFFERS ---- */
.offers-section { padding: var(--sp-20) 0; background: var(--grey); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .offers-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
.offer-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.offer-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.offer-card.offer-teal::before { background: linear-gradient(135deg, rgba(0,126,138,0.88), rgba(0,90,100,0.75)); }
.offer-card.offer-amber::before { background: linear-gradient(135deg, rgba(180,90,0,0.88), rgba(245,166,35,0.7)); }
.offer-card.offer-dark::before { background: linear-gradient(135deg, rgba(20,20,40,0.92), rgba(0,126,138,0.6)); }
.offer-content { position: relative; z-index: 2; }
.offer-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.3rem;
}
.offer-headline {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
.offer-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.offer-code-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.offer-code {
  background: rgba(255,255,255,0.18);
  border: 1.5px dashed rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  font-family: var(--font-sans);
}
.offer-discount-tag {
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}
.offer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.4rem;
  background: #fff;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}
.offer-cta-btn:hover { opacity: 0.92; transform: scale(1.02); }
.offer-corner-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(245,166,35,0.5);
  line-height: 1.1;
}
.offer-corner-badge .off-pct {
  font-size: 1.1rem;
  font-weight: 900;
  font-family: var(--font-sans);
  display: block;
}
.offer-corner-badge .off-label {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- GLOBAL BUTTON IMPROVEMENTS ---- */
.btn, .btn-amber, .btn-teal, .btn-outline-teal {
  letter-spacing: 0.01em;
  font-weight: 700;
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1), box-shadow 0.18s ease, opacity 0.18s ease;
}
.btn-amber:hover, .btn-amber:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 22px rgba(245,166,35,0.45);
}
.btn-teal:hover, .btn-teal:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 22px rgba(0,126,138,0.35);
}
.btn-outline-teal:hover, .btn-outline-teal:focus-visible {
  transform: translateY(-2px) scale(1.02);
}
.btn:active { transform: translateY(0) scale(0.99); }

/* ============================================================
   THE MYPRETTYHOLIDAYS DIFFERENCE — diff-section
   ============================================================ */
.diff-section {
  background: linear-gradient(160deg, #F7FEFF 0%, #F0F9FA 50%, #FFFDF7 100%);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}
.diff-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,126,138,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Layout: photo-left | items-right */
.diff-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1100px) {
  .diff-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Left Column ── */
.diff-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,126,138,0.18), 0 4px 16px rgba(0,0,0,0.1);
}
.diff-photo-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.diff-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,40,45,0.65) 0%, transparent 55%);
}
.diff-stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.25rem 1.5rem;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.diff-stat {
  flex: 1;
  text-align: center;
}
.diff-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.diff-stat-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}
.diff-stat-num sup {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  vertical-align: super;
}
.diff-stat-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.65);
}

.diff-quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 14px;
  border-left: 4px solid var(--teal);
  box-shadow: 0 4px 20px rgba(0,126,138,0.1);
  position: relative;
}
.diff-quote i {
  font-size: 2rem;
  color: var(--teal);
  opacity: 0.25;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.diff-quote p {
  font-family: var(--font-serif);
  font-size: 0.97rem;
  color: var(--charcoal);
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 0.65rem;
}
.diff-quote strong {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
}

/* ── Right Column: 4 differentiator items ── */
.diff-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diff-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.diff-item:last-child { border-bottom: none; }
.diff-item:hover .diff-item-icon {
  background: var(--teal);
  transform: scale(1.08);
}
.diff-item:hover .diff-item-icon i { color: #fff; }
.diff-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0,126,138,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.diff-item-icon i {
  font-size: 1.4rem;
  color: var(--teal);
  transition: color 0.25s ease;
}
.diff-item-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.diff-item-body p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 0.55rem;
}
.diff-item-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(0,126,138,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}
.diff-item-proof i { font-size: 0.8rem; color: var(--teal); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .diff-photo-wrap img { height: 280px; }
  .diff-stat-num { font-size: 1.25rem; }
}

/* ============================================================
   TESTIMONIALS — testi-section
   ============================================================ */
.testi-section {
  padding: var(--sp-20) 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.testi-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Header row: titles + overall score ── */
.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}
.testi-header .section-titles h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
}

.testi-overall {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #F0FDF8, #E0F7FA);
  border: 1px solid rgba(0,126,138,0.2);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  flex-shrink: 0;
}
.testi-score {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.testi-score-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.testi-stars-big {
  color: var(--amber);
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.testi-score-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.testi-platforms {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.1rem;
}
.testi-platforms span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.testi-platforms .ri-google-fill { color: #EA4335; }
.testi-platforms .ri-star-fill { color: #34A853; }
.testi-count {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  border-left: 1px solid rgba(0,126,138,0.15);
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .testi-header { flex-direction: column; align-items: flex-start; }
  .testi-overall { width: 100%; }
  .testi-count { border-left: none; padding-left: 0; }
}

/* ── Featured Review ── */
.testi-featured {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 4px 16px rgba(0,126,138,0.1);
  margin-bottom: 2rem;
  background: #fff;
}
@media (max-width: 900px) {
  .testi-featured { grid-template-columns: 1fr; }
}
.testi-featured-img {
  position: relative;
  min-height: 340px;
}
.testi-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.08)),
              linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
}
.testi-feat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(234,67,53,0.92);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(4px);
}
.testi-featured-body {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #FAFFFE, #F7FFFE);
  border-left: none;
}
.testi-feat-stars {
  color: var(--amber);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
}
.testi-feat-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 1rem;
  border: none;
  padding: 0;
}
.testi-feat-outcome {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16,185,129,0.1);
  color: #059669;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  width: fit-content;
}
.testi-feat-outcome i { font-size: 0.9rem; }
.testi-feat-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.testi-feat-author img { border-radius: 50%; width: 48px; height: 48px; object-fit: cover; flex-shrink: 0; }
.testi-feat-author strong { display: block; font-size: 0.9rem; color: var(--charcoal); }
.testi-feat-author span { font-size: 0.72rem; color: var(--text-muted); }

/* ── 3-card Grid ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 899px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }

.testi-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,126,138,0.12);
}
.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testi-stars {
  color: var(--amber);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
}
.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
}
.testi-verified-g {
  background: rgba(234,67,53,0.08);
  color: #EA4335;
}
.testi-verified-ta {
  background: rgba(52,168,83,0.08);
  color: #34A853;
}
.testi-outcome {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.4;
}
.testi-outcome i { font-size: 0.85rem; color: var(--amber); flex-shrink: 0; margin-top: 1px; }
.testi-card-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.testi-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: auto;
}
.testi-avatar-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(0,126,138,0.15);
}
.testi-card-author strong { display: block; font-size: 0.85rem; color: var(--charcoal); }
.testi-card-author span { font-size: 0.68rem; color: var(--text-muted); }

/* ── Bottom CTA ── */
.testi-cta {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, #F0FDF8, #FFFDF4);
  border-radius: 20px;
  border: 1px solid rgba(0,126,138,0.12);
}
.testi-cta p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 0 0 1.5rem;
  font-weight: 600;
}
.testi-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   STATS SHOWCASE (replaces old trust-bar)
══════════════════════════════════════════ */
/* ── STATS SHOWCASE ── */
.stats-showcase {
  background: linear-gradient(135deg, #005F69 0%, #007E8A 60%, #009AA8 100%);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stats-showcase > .container { max-width: 100%; padding: 0; }
.stats-showcase-inner {
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}
.ssc-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 24px; text-align: center; gap: 4px;
  position: relative;
}
.ssc-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: rgba(255,255,255,0.9); margin-bottom: 10px;
}
.ssc-num {
  font-size: 34px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -1.5px;
  font-family: 'Inter', system-ui, sans-serif;
}
.ssc-label {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}
.ssc-desc {
  font-size: 11.5px; color: rgba(255,255,255,0.55); max-width: 130px; line-height: 1.5; margin-top: 2px;
}
.ssc-divider {
  width: 1px; background: rgba(255,255,255,0.15); align-self: stretch;
  margin: 24px 0; flex-shrink: 0;
}
/* Hide marquee clones on desktop */
.ssc-clone { display: none; }
@media (max-width: 768px) {
  .ssc-clone { display: flex; }
}

/* ── Hero spot strip (replaces old hero-side) ── */
.hero-spot-strip {
  position: absolute;
  bottom: 90px; right: 2rem;
  z-index: 4;
}
.hero-spot-mini {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  min-width: 200px;
}
.hero-spot-mini img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.hsm-info { display: flex; flex-direction: column; flex: 1; }
.hsm-name { font-size: 0.82rem; font-weight: 700; color: #fff; }
.hsm-price { font-size: 0.72rem; color: rgba(255,255,255,0.7); }
.hsm-price strong { color: var(--amber); font-weight: 700; }
.hsm-live { margin-left: auto; }
.hsm-live .dot-live { display: inline-block; width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: pulse 2s infinite; }

/* hero-ctas center alignment */
.hero-center-wrap .hero-ctas { justify-content: center; }
.hero-center-wrap .hero-badge { margin-bottom: 1.2rem; }
.hero-center-wrap .hero-sub { display: none; }

/* Login button in header */
.btn-outline-teal {
  display: inline-flex; align-items: center; gap: 0.3rem;
  border: 1.5px solid var(--teal); color: var(--teal);
  background: transparent; border-radius: var(--r-full);
  padding: 0.3rem 0.8rem; font-size: 0.78rem; font-weight: 600;
  text-decoration: none; transition: all var(--t-fast);
}
.btn-outline-teal:hover { background: var(--teal); color: #fff; }

/* ════ RESPONSIVE ADDITIONS ════ */
@media (max-width: 1100px) {
  .stats-showcase-inner { flex-wrap: wrap; }
  .ssc-item { flex: 0 0 50%; min-width: 150px; padding: 28px 16px; }
  .ssc-divider { display: none; }
  .hero-search-mega { max-width: 98vw; }
  .hero-spot-strip { display: none; }
}
@media (max-width: 768px) {
  .hero-center-wrap { padding: 5rem 0.75rem 4.5rem; gap: 0; }
  /* Glassmorphic search on mobile — scaled down 20% */
  .hero-search-mega {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
    padding: 0.4rem 0.5rem 0.7rem;
    border-radius: 16px;
    margin-bottom: 1.2rem;
  }
  .search-cat-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 0; border-bottom-color: rgba(255,255,255,0.1); padding: 0.3rem 0.3rem 0; }
  .sct { padding: 0.4rem 0.7rem; font-size: 0.72rem; white-space: nowrap; }
  .hero-search-row {
    flex-direction: column; border-radius: 10px; min-height: auto;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: none;
    margin: 0.3rem 0 0.5rem;
  }
  .search-mega-field { border-left: none !important; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 0.55rem 1rem; }
  .search-mega-field:last-of-type { border-bottom: none; }
  .smf-icon { background: rgba(255,255,255,0.15); }
  .smf-icon i { color: #fff; }
  .smf-inner label { color: rgba(255,255,255,0.6); }
  .smf-inner select { color: #fff; }
  .smf-inner select option { color: var(--charcoal); background: #fff; }
  .smf-divider { display: none; }
  .hero-search-btn-mega { border-radius: 0 0 10px 10px !important; min-height: 46px; justify-content: center; font-size: 0.9rem; }
  .currency-dropdown-btn { padding: 0.3rem 0.5rem; font-size: 0.7rem; }
  #currencyLabel { display: none !important; }
  #currencyShort { display: inline !important; font-weight: 700; font-size: 0.72rem; color: var(--charcoal); }

  /* Stats showcase: infinite marquee on mobile */
  .stats-showcase { overflow: hidden; }
  .stats-showcase-inner {
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 0;
    padding: 0;
    animation: sscMarquee 20s linear infinite;
    width: max-content;
  }
  .stats-showcase-inner:active,
  .stats-showcase-inner:hover {
    animation-play-state: paused;
  }
  .ssc-item {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 18px 20px;
  }
  .ssc-icon { width: 38px; height: 38px; font-size: 16px; margin-bottom: 6px; }
  .ssc-num { font-size: 24px; letter-spacing: -1px; }
  .ssc-label { font-size: 9.5px; letter-spacing: .8px; }
  .ssc-desc { display: none; }
  .ssc-divider { display: none; }
}
@keyframes sscMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 500px) {
  .ssc-item { min-width: 120px; padding: 14px 16px; }
  .ssc-num { font-size: 22px; }
  .ssc-icon { width: 34px; height: 34px; font-size: 14px; margin-bottom: 4px; }
}

/* ── Flash Sale Bar (tour-detail.html, ?flash=1) ── */
.flash-sale-bar {
  display: none; /* shown by JS only when ?flash=1 */
  align-items: center;
  gap: .55rem;
  background: linear-gradient(90deg, #ff6b00 0%, var(--amber) 100%);
  color: #fff;
  border-radius: var(--r-md);
  padding: .5rem .85rem;
  margin-bottom: .75rem;
  font-size: .8rem;
  font-weight: 700;
}
.flash-sale-icon { font-size: 1rem; flex-shrink: 0; }
.flash-sale-label { flex: 1; letter-spacing: .2px; }
.flash-sale-ends {
  font-size: .72rem;
  font-weight: 800;
  background: rgba(0,0,0,.18);
  border-radius: var(--r-sm);
  padding: .15rem .45rem;
  white-space: nowrap;
  letter-spacing: .5px;
}

/* ── Payment Modal ─────────────────────────────────────────────────────────── */
.pay-modal-overlay {
  position: fixed; inset: 0; z-index: 9100;
  background: rgba(26,26,26,.62);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.pay-modal-overlay.open { opacity: 1; pointer-events: all; }

.pay-modal-card {
  background: #fff;
  border-radius: var(--r-lg);
  width: 100%; max-width: 500px; margin: 1rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.1);
  transform: scale(.92) translateY(24px);
  transition: transform .32s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
  opacity: 0;
  overflow: hidden;
}
.pay-modal-overlay.open .pay-modal-card { transform: scale(1) translateY(0); opacity: 1; }

.pay-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.pay-modal-header h3 { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--charcoal); }
.pay-modal-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; line-height: 1; color: var(--grey-text, #888);
  padding: .25rem; border-radius: var(--r-sm);
  transition: background .18s, color .18s;
}
.pay-modal-close:hover { background: #f2f2f2; color: var(--charcoal); }

.pay-modal-body { padding: 1.25rem 1.5rem 1.5rem; }

.pay-order-summary {
  background: #f8f9fa; border-radius: var(--r-md);
  padding: .9rem 1rem; margin-bottom: 1.2rem;
  border: 1px solid var(--border);
}
.pay-order-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .85rem; color: #555; margin-bottom: .45rem;
}
.pay-order-row:last-child { margin-bottom: 0; }
.pay-order-row span:last-child { font-weight: 600; color: var(--charcoal); }
.pay-order-amount-row {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); margin-top: .7rem; padding-top: .7rem;
}
.pay-order-amount-row .pay-order-amount-label { font-size: .85rem; font-weight: 700; color: var(--charcoal); }
.pay-order-amount-value {
  font-size: 1.3rem; font-weight: 800; color: var(--teal);
}

.pay-modal-divider {
  text-align: center; font-size: .78rem; color: #999; font-weight: 600;
  letter-spacing: .4px; text-transform: uppercase;
  margin: 0 0 1rem; position: relative;
}
.pay-modal-divider::before, .pay-modal-divider::after {
  content: ''; position: absolute; top: 50%; width: calc(50% - 2.5rem);
  height: 1px; background: var(--border);
}
.pay-modal-divider::before { left: 0; }
.pay-modal-divider::after { right: 0; }

.pay-gateway-group { display: flex; flex-direction: column; gap: .75rem; }

.btn-gateway-im, .btn-gateway-cca {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  border: none; border-radius: var(--r-md); cursor: pointer;
  font-size: .95rem; font-weight: 700; padding: .85rem 1.25rem;
  transition: transform .18s, box-shadow .18s, filter .18s;
}
.btn-gateway-im:hover, .btn-gateway-cca:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.btn-gateway-im:active, .btn-gateway-cca:active { transform: translateY(0); }

.btn-gateway-im {
  background: var(--amber); color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(245,166,35,.35);
}
.btn-gateway-cca {
  background: var(--teal); color: #fff;
  box-shadow: 0 2px 8px rgba(0,126,138,.3);
}

.pay-gateway-note {
  text-align: center; font-size: .75rem; color: #888;
  margin-top: .9rem; line-height: 1.5;
}

/* ── Stepper (shared) ────────────────────────────────────────────────────── */
.stepper-group { display: flex; align-items: center; gap: .4rem; }
.stepper-btn {
  width: 34px; height: 34px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--grey); color: var(--charcoal);
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s, border-color .18s, color .18s;
  line-height: 1;
}
.stepper-btn:hover { background: var(--teal-light); border-color: var(--teal); color: var(--teal); }
.stepper-btn:active { background: var(--teal-mid); }

/* =============================================================
   MOBILE & TABLET RESPONSIVENESS — COMPREHENSIVE LAYER
   Target: max conversion on phones (360–430px) and tablets (768–1024px)
   ============================================================= */

/* ── Global touch targets & base ───────────────────────────── */
@media (max-width: 1024px) {
  /* Ensure all interactive elements meet 44px min touch target */
  .btn, button, a.btn,
  .btn-tour-call, .btn-tour-book, .btn-tour-wa,
  .float-btn, .nav-item,
  input[type="submit"], input[type="button"] {
    min-height: 44px;
  }

  /* Prevent horizontal scroll from oversized elements */
  img, video, iframe { max-width: 100%; }

  /* Hero spot strip overflow fix */
  .hero-spot-strip { min-width: unset !important; width: 100%; overflow-x: auto; }
}

/* ── Tablet (768px – 1024px) ───────────────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }


  /* Tour cards: 2 columns on tablet */
  .tours-filter-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Blog grid: 2 columns on tablet */
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why book now: 2+1 on tablet */
  .why-book-grid { grid-template-columns: repeat(2, 1fr); }

  /* Destinations: 3 columns on tablet */
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }

  /* Footer: 2 columns on tablet */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8) var(--sp-6); }

  /* Tour detail: single column at 1024px already, keep sidebar visible as card below */
  .tour-detail-grid .enquiry-card { border-radius: var(--r-xl); }

  /* Blog post sidebar below content on tablet */
  .blog-post-layout { grid-template-columns: 1fr; gap: 2rem; }
  .blog-post-content { padding: 2rem; }
  /* Sidebar: stop sticking when it falls below the article */
  .blog-sidebar { position: static; }

  /* Reduce hero headline on tablet */
  .hero-headline { font-size: clamp(2rem, 4vw, 3.2rem); }

  /* Section header row: stays as row on tablet but reduce title font slightly */
  .section-header-row { margin-bottom: 1.5rem; }
  .section-header-row h2 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

  /* About pillars: 2-col on tablet */
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ── Mobile (max 768px) ────────────────────────────────────── */
@media (max-width: 768px) {
  /* Container padding */
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Section spacing */
  .section { padding: 3rem 0; }

  /* ── Typography ── */
  .hero-headline { font-size: clamp(1.75rem, 7.5vw, 2.6rem); line-height: 1.2; }
  .section-title  { font-size: clamp(1.4rem, 5vw, 2rem); }
  h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  h2 { font-size: clamp(1.2rem, 4.5vw, 1.8rem); }

  /* ── Announcement bar ── */
  .announcement-bar { font-size: .78rem; padding: .4rem 2.5rem .4rem 1rem; text-align: center; }

  /* ── Hero ── */
  .hero { min-height: 520px; }
  .hero-content { padding: 1.5rem 0; }
  .hero-sub { font-size: .9rem; }
  .hero-cta-group { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  /* ── Search bar ── */
  .search-field-label { font-size: .7rem; }
  .search-field-value { font-size: .9rem; }

  /* ── Destination cards grid ── */
  .destinations-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .dest-card { border-radius: var(--r-lg); }

  /* ── Tour cards ── */
  .tours-filter-grid { grid-template-columns: 1fr !important; }
  .tour-card-img { height: 200px; }
  .tour-card-img img { height: 200px; }
  .tour-cta-row { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .btn-tour-call, .btn-tour-wa, .btn-tour-book {
    font-size: .8rem;
    padding: .65rem .5rem;
    min-height: 44px;
    border-radius: var(--r-lg);
  }
  .btn-tour-call i, .btn-tour-wa i, .btn-tour-book i { font-size: .85rem; }

  /* ── Tour detail grid: sidebar below content ── */
  .tour-detail-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 0;
    gap: 1.5rem;
  }
  .enquiry-card { position: static !important; top: unset; border-radius: var(--r-xl); }

  /* Tour detail hero action row */
  .td-hero-actions { flex-wrap: wrap; gap: .5rem; }
  .td-save-btn, #tdShareWaBtn { font-size: .75rem; padding: .3rem .75rem; }

  /* Tour meta pills: wrap on mobile */
  .tour-meta-pills { flex-wrap: wrap; gap: .35rem; }
  .tour-meta-pill { font-size: .72rem; padding: .2rem .6rem; }

  /* ── Tours page filter layout ── */
  .tours-layout { grid-template-columns: 1fr !important; }
  .filter-panel { border-radius: var(--r-xl); margin-bottom: 1rem; }

  /* ── About stats: 2 columns on mobile ── */
  .about-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .about-stat-val { font-size: 2rem; }

  /* ── Why Book Now: single column ── */
  .why-book-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-book-card { padding: 1.25rem; }

  /* ── Countdown timer ── */
  .countdown-bar { flex-wrap: wrap; gap: .35rem; justify-content: center; }
  .cd-unit { min-width: 40px; padding: .3rem .45rem; }
  .cd-num { font-size: 1.4rem; }
  .cd-label { font-size: .55rem; }

  /* ── Steps (how it works) ── */
  .steps-row { gap: 1.5rem; }

  /* ── Footer ── */
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-grid { gap: 2rem; }
  .footer-brand p { font-size: .83rem; }

  /* ── Forms ── */
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .form-input, .form-select, .form-textarea {
    font-size: 16px; /* prevent iOS zoom */
    padding: .7rem .9rem;
    min-height: 44px;
  }
  .form-label { font-size: .82rem; }

  /* ── Modals ── */
  .modal { width: 92vw; max-width: 420px; padding: 1.5rem; }
  .pay-modal-card { width: 94vw; max-width: 420px; padding: 1.5rem; }

  /* ── Floating actions ── */
  .floating-actions { bottom: 1.25rem; right: 1rem; gap: .5rem; }
  .float-btn { width: 46px; height: 46px; font-size: 1.2rem; }

  /* ── Sticky offer bar ── */
  .sticky-offer-bar { padding: .55rem .75rem; }
  .sticky-offer-inner { gap: .5rem; }
  .sticky-offer-badge { font-size: .6rem; padding: .2rem .5rem; }
  .sticky-offer-title, .sticky-offer-text { font-size: .72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
  .sticky-offer-text { flex: 1; min-width: 0; }
  .sticky-offer-sub { font-size: .7rem; display: none; }
  .sticky-offer-cta {
    padding: .35rem .7rem !important;
    font-size: .72rem !important;
    border-radius: var(--r-md) !important;
    box-shadow: 0 0 8px rgba(245,166,35,.3);
    white-space: nowrap;
  }
  .sticky-offer-close { font-size: .9rem; padding: .15rem; }

  /* ── Social proof toast: smaller on mobile ── */
  .booked-toast {
    bottom: 5.5rem;
    left: .75rem;
    max-width: 220px;
    padding: .6rem .75rem;
    gap: .55rem;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    opacity: .92;
  }
  .booked-toast-avatar { width: 30px; height: 30px; font-size: .7rem; }
  .booked-toast-text { font-size: .68rem; line-height: 1.35; }
  .booked-toast-text strong { font-size: .72rem; }
  .booked-toast-time { font-size: .6rem; }

  /* ── Announcement bar: mobile ── */
  .announcement-bar {
    font-size: 0.72rem;
    padding: 0.45rem 2.2rem 0.45rem 0.75rem;
    line-height: 1.5;
    min-height: 34px;
    justify-content: center;
  }
  .announcement-bar #announcementText {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    text-align: center;
  }
  .announcement-bar a { margin-left: 0.15rem; font-size: 0.72rem; }
  .announcement-bar .ab-close { width: 20px; height: 20px; font-size: 0.75rem; right: 0.4rem; }

  /* ── Blog ── */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-body { padding: 1rem; }
  .blog-card h3 { font-size: 1rem; }
  .blog-post-content { padding: 1.25rem; }
  .blog-post-hero-img { height: 220px; }

  /* ── Testimonials ── */
  .testi-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 1.25rem; }

  /* ── Newsletter ── */
  .newsletter-inner { gap: 1.5rem; }
  .newsletter-input { font-size: 16px; }
  .newsletter-form .btn { width: 100%; justify-content: center; }

  /* ── CTA section ── */
  .cta-section .btn { width: 100%; max-width: 320px; }

  /* ── Breadcrumb ── */
  .breadcrumb { font-size: .78rem; flex-wrap: wrap; }

  /* ── Page headers ── */
  .page-hero { padding: 3rem 0 2rem; }
  .page-hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* ── Trust badges ── */
  .trust-badges-row { overflow-x: auto; padding: .75rem 0; }
  .trust-badges-inner { gap: 1rem; flex-wrap: nowrap; }
  .trust-badge-item { flex-shrink: 0; }

  /* ── About pillars grid: 1-col on mobile ── */
  .pillars-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* ── Section header row: stack title + button vertically on mobile ── */
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: 1.25rem;
  }
  .section-header-row .btn-link-arrow {
    /* Shift link below title, no longer cramped to the right */
    margin-top: .15rem;
  }

  /* ── Hero search: trending tags compact on mobile ── */
  .hero-popular {
    justify-content: flex-start;
    padding: 0 .25rem;
    gap: 0.3rem;
  }
  .hero-popular .label { font-size: 0.68rem; }
  .hero-tag-link { font-size: 0.68rem; padding: 0.2rem 0.55rem; }

  /* ── Newsletter: center content in single column ── */
  .newsletter-content { text-align: left; }
  .newsletter-inner { text-align: left; }
}

/* ── Small mobile (max 480px) ──────────────────────────────── */
@media (max-width: 480px) {
  .container { padding-left: 1.1rem; padding-right: 1.1rem; }

  /* ── Hero ── */
  .hero { min-height: 460px; }
  .hero-headline { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .badge-offer { font-size: .65rem; padding: .2rem .5rem; }

  /* ── About stats: single column on tiny screens ── */
  .about-stats { grid-template-columns: 1fr 1fr !important; }

  /* ── Destinations grid ── */
  .destinations-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }

  /* ── Tour cards CTA: ensure both buttons visible ── */
  .tour-cta-row { grid-template-columns: 1fr 1fr; gap: .4rem; }
  .btn-tour-call, .btn-tour-wa, .btn-tour-book {
    font-size: .75rem;
    padding: .6rem .35rem;
    gap: .25rem;
  }

  /* ── Tour detail booking sidebar form ── */
  #sidebarBookForm .form-row { grid-template-columns: 1fr; }
  .radio-pill-sm label { font-size: .72rem; padding: .28rem .55rem; }

  /* ── Tour detail "You May Also Like" sidebar: stack to 1-col on small phones ── */
  #tdSimilar { grid-template-columns: 1fr !important; }
  /* ── Skeleton loader: 1-col on small phones ── */
  #toursSkeleton { grid-template-columns: 1fr !important; }

  /* ── Pillars grid: 1-col on small mobile ── */
  .pillars-grid { grid-template-columns: 1fr !important; }

  /* ── Countdown ── */
  .cd-num { font-size: 1.2rem; }
  .cd-unit { min-width: 36px; }

  /* ── Buttons: full-width primary CTAs ── */
  .btn-lg, .btn-xl { width: 100%; justify-content: center; }

  /* ── Blog ── */
  .blog-tabs { flex-wrap: wrap; gap: .35rem; }
  .blog-tab { font-size: .78rem; padding: .4rem .75rem; }

  /* ── Modals ── */
  .modal { width: 96vw; padding: 1.25rem; }
  .modal-head h3 { font-size: 1rem; }
  .pay-modal-card { width: 96vw; padding: 1.25rem; }
  .pay-modal-header h3 { font-size: 1rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem 0.75rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* ── Sticky offer bar: compact ── */
  .sticky-offer-bar { padding: .45rem .6rem; }
  .sticky-offer-badge { display: none; }
  .sticky-offer-title, .sticky-offer-text { font-size: .66rem; }
  .sticky-offer-cta { font-size: .68rem !important; padding: .3rem .6rem !important; }

  /* ── Social proof toast: even smaller ── */
  .booked-toast { max-width: 195px; padding: .5rem .6rem; left: .5rem; bottom: 5rem; }
  .booked-toast-avatar { width: 26px; height: 26px; font-size: .65rem; }
  .booked-toast-text { font-size: .64rem; }
  .booked-toast-text strong { font-size: .68rem; }

  /* ── Announcement bar: compact but visible ── */
  .announcement-bar { font-size: 0.68rem; padding: 0.4rem 1.75rem 0.4rem 0.6rem; line-height: 1.5; }

  /* ── Floating actions ── */
  .floating-actions { right: .75rem; }
  .float-btn { width: 44px; height: 44px; }
}

/* ── Very small (max 360px) ────────────────────────────────── */
@media (max-width: 360px) {
  .hero-headline { font-size: 1.5rem; }
  .btn-tour-call, .btn-tour-wa, .btn-tour-book { font-size: .7rem; padding: .55rem .25rem; }
  .announcement-bar { font-size: 0.65rem; padding: 0.35rem 1.5rem 0.35rem 0.5rem; line-height: 1.5; }
  .float-btn { width: 44px; height: 44px; font-size: 1.1rem; }
  .cd-unit { min-width: 32px; padding: .25rem .35rem; }
  .modal, .pay-modal-card { width: 98vw; padding: 1rem; }
  /* Tighten newsletter vertical gap on tiny screens */
  .newsletter-inner { gap: var(--sp-4); }
  /* Reduce about stats to 2-col (they can fit) */
  .about-stats { grid-template-columns: repeat(2, 1fr) !important; }
}
