/* ============================================================
   Smart Travel Planner — main.css
   Compiled design system for the Travelite flagship demo.
   Plan Smarter. Travel Better. Explore Without Limits.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --primary: #0ea5e9;
  --secondary: #2563eb;
  --accent: #06b6d4;
  --success: #10b981;
  --bg: #f8fafc;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --white: #fff;
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-brd: rgba(255, 255, 255, 0.7);
  --glass-blur: 18px;
  --grad: linear-gradient(135deg, #0ea5e9 0%, #2563eb 55%, #06b6d4 100%);
  --grad-soft: linear-gradient(135deg, #e0f2fe 0%, #eff6ff 50%, #ecfeff 100%);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --sh-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --sh-md: 0 12px 30px rgba(15, 23, 42, 0.08);
  --sh-lg: 0 30px 60px rgba(15, 23, 42, 0.12);
  --sh-glow: 0 20px 45px rgba(14, 165, 233, 0.28);
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Lenis smooth scroll — required base CSS (v1) */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: clip;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}
h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}
h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
p {
  margin: 0 0 1rem;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
img {
  max-width: 100%;
  display: block;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
::selection {
  background: rgba(14, 165, 233, 0.2);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(70px, 6vw, 80px) 0;
  position: relative;
}
.text-center {
  text-align: center;
}
.mb-0 {
  margin-bottom: 0;
}

/* ---------- Utilities ---------- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* keep gradient when SplitType wraps characters */
.grad-text .char,
.grad-text .word {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* SplitType wrappers must allow the yPercent lift to clip cleanly */
[data-split] .word {
  overflow: hidden;
  padding-bottom: 0.08em;
}
.trd-sec{
  background-color: var(--bg);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(37, 99, 235, 0.08);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head.left {
  margin-left: 0;
  text-align: left;
}
.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s;
  will-change: transform;
  white-space: nowrap;
}
.btn i,
.btn svg {
  transition: transform 0.3s var(--ease);
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--sh-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 55px rgba(14, 165, 233, 0.4);
}
.btn-primary:hover i {
  transform: translateX(4px);
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  color: var(--secondary);
}
.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-brd);
  color: var(--ink);
}
.btn-glass:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.85);
}
.btn-lg {
  padding: 18px 34px;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 11px 20px;
  font-size: 0.9rem;
}
.btn-block {
  width: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.tag-success {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
}
.tag-primary {
  background: rgba(14, 165, 233, 0.12);
  color: var(--primary);
}
.tag-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border: 1px solid var(--glass-brd);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(620px 420px at 50% 38%, rgba(37, 99, 235, 0.09), transparent 70%),
    var(--bg);
  transition:
    opacity 0.6s var(--ease),
    visibility 0.6s;
  /* ultimate safety net: auto-dismiss even if JS is disabled/broken */
  animation: plAutoHide 0.6s ease 4s forwards;
}
@keyframes plAutoHide {
  to { opacity: 0; visibility: hidden; }
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
}
/* gradient logo mark (matches the nav logo) */
.preloader .pl-mark {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: var(--grad);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.35);
  animation: plFloat 2.4s ease-in-out infinite;
}
.preloader .pl-mark i {
  animation: plPlane 2.4s var(--ease) infinite;
}
/* Travelite wordmark */
.preloader .pl-word {
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.preloader .pl-word b {
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.preloader .bar {
  width: 190px;
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--line);
  margin: 20px auto 0;
  overflow: hidden;
}
.preloader .bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
  border-radius: var(--r-pill);
  transition: width 0.3s linear;
}
.preloader .pl-tag {
  margin-top: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
@keyframes plFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes plPlane {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(2px, -2px) rotate(10deg); }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--grad);
  z-index: 1000;
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.6);
}

/* =========================================================
   DECORATIVE DESIGN SYSTEM
   Global mesh-gradient depth layer (fixed, behind everything)
   + section-scoped accents injected by decor.js.
   The Hero banner is intentionally excluded.
   ========================================================= */

/* ---- Global fixed mesh-glow depth (shows through light sections) ---- */
.page-shapes {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.page-shapes .g-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.gm-1 {
  width: 520px;
  height: 520px;
  top: -8%;
  left: -6%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3), transparent 68%);
  animation: floatSlow 24s ease-in-out infinite;
}
.gm-2 {
  width: 460px;
  height: 460px;
  top: 42%;
  right: -10%;
  background: radial-gradient(circle, rgba(249, 164, 92, 0.2), transparent 68%);
  animation: floatSlow 30s ease-in-out infinite 3s;
}
.gm-3 {
  width: 420px;
  height: 420px;
  bottom: -10%;
  left: 34%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.26), transparent 68%);
  animation: floatSlow 27s ease-in-out infinite 1.5s;
}

/* ---- Section decor host ---- */
.has-decor {
  position: relative;
}
.section.has-decor,
.footer.has-decor {
  overflow: hidden;
}
.has-decor > .container,
.has-decor > .container-fluid,
.has-decor > .container-xl {
  position: relative;
  z-index: 1;
}
.decor-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.decor-layer.on-dark {
  mix-blend-mode: screen;
}

/* mesh glow (scoped) */
.dc-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.dc-mesh.m-blue {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3), transparent 70%);
}
.dc-mesh.m-cyan {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.28), transparent 70%);
}
.dc-mesh.m-purple {
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.22),
    transparent 70%
  );
}
.dc-mesh.m-orange {
  background: radial-gradient(
    circle,
    rgba(249, 164, 92, 0.24),
    transparent 70%
  );
}

/* travel motifs (compass, stamps, plane trails, pin routes) */
.dc-travel {
  position: absolute;
  pointer-events: none;
  color: var(--secondary);
  opacity: 0.15;
  will-change: transform;
}
.dc-travel svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.dc-travel.tv-line {
  opacity: 0.2;
}
.dc-travel.tv-paper {
  opacity: 0.55;
}
.dc-travel.tv-pin {
  opacity: 0.6;
}
.decor-layer.on-dark .dc-travel {
  color: #7dd3fc;
  opacity: 0.28;
}

/* dotted rotating globe */
.dc-globe {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  will-change: transform;
  background:
    radial-gradient(circle at 32% 28%, rgba(6, 182, 212, 0.9), transparent 62%),
    radial-gradient(rgba(37, 99, 235, 0.85) 1.5px, transparent 1.7px);
  background-size:
    100% 100%,
    15px 15px;
  -webkit-mask: radial-gradient(circle, #000 58%, transparent 72%);
  mask: radial-gradient(circle, #000 58%, transparent 72%);
  animation: spinGlobe 120s linear infinite;
}
.dc-globe::before,
.dc-globe::after {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.35);
}
.dc-globe::after {
  inset: 6% 32%;
}

/* dotted world-map band */
.dc-wmap {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(37, 99, 235, 0.16) 1.4px,
    transparent 1.6px
  );
  background-size: 22px 22px;
  -webkit-mask: radial-gradient(
    ellipse 68% 62% at 50% 46%,
    #000 38%,
    transparent 80%
  );
  mask: radial-gradient(ellipse 68% 62% at 50% 46%, #000 38%, transparent 80%);
  opacity: 0.7;
}

/* glowing location pins */
.dc-pin {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px 1px rgba(6, 182, 212, 0.85);
}
.dc-pin::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(6, 182, 212, 0.55);
  animation: pinPulse 2.4s ease-out infinite;
}

/* flight-path divider (removed on request) */
.dc-path {
  display: none !important;
}
.dc-path {
  position: absolute;
  left: 0;
  width: 100%;
  height: 140px;
  overflow: visible;
}
.dc-path.top {
  top: -1px;
}
.dc-path.bottom {
  bottom: -1px;
}
.dc-path .route {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.5;
}
.dc-path .route-dash {
  fill: none;
  stroke: rgba(37, 99, 235, 0.35);
  stroke-width: 2;
  stroke-dasharray: 2 10;
  stroke-linecap: round;
  opacity: 0.5;
}
.dc-plane-i {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.6));
}

/* floating clouds */
.dc-cloud {
  position: absolute;
  opacity: 0.55;
  filter: blur(0.3px);
  will-change: transform;
  color: rgba(255, 255, 255, 0.9);
}
.dc-cloud.tint {
  color: rgba(224, 242, 254, 0.85);
}

/* particles / sparkles */
.dc-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.95),
    rgba(6, 182, 212, 0) 70%
  );
  box-shadow: 0 0 6px rgba(6, 182, 212, 0.7);
  will-change: transform, opacity;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(24px, -30px);
  }
}
@keyframes pinPulse {
  0% {
    transform: scale(0.5);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .g-mesh,
  .dc-mesh,
  .dc-globe,
  .dc-pin::after {
    animation: none !important;
  }
}

/* ---------- Custom cursor (rotating gradient ring + precise dot) ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100000;
  will-change: transform;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.9);
  transition:
    opacity 0.25s,
    width 0.2s var(--ease),
    height 0.2s var(--ease),
    background 0.25s;
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    opacity 0.25s;
}
/* the spinning gradient rim (child so its rotate never fights GSAP translate) */
.cursor-ring .cr-spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--primary),
    var(--accent),
    var(--secondary),
    var(--primary)
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 2px),
    #000 calc(100% - 2px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 2px),
    #000 calc(100% - 2px)
  );
  animation: cursorSpin 2.6s linear infinite;
  opacity: 0.9;
}
/* soft inner fill that appears on hover */
.cursor-ring::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.16),
    rgba(37, 99, 235, 0.05)
  );
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.cursor-ring.hover {
  width: 62px;
  height: 62px;
}
.cursor-ring.hover .cr-spin {
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 3px),
    #000 calc(100% - 3px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 3px),
    #000 calc(100% - 3px)
  );
  animation-duration: 1.1s;
}
.cursor-ring.hover::after {
  opacity: 1;
  transform: scale(1);
}
.cursor-dot.hover {
  width: 4px;
  height: 4px;
  opacity: 0.7;
}
.cursor-ring.down {
  width: 30px;
  height: 30px;
}
.cursor-ring.down .cr-spin {
  animation-duration: 0.7s;
}
@keyframes cursorSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-ring .cr-spin {
    animation: none;
  }
}
/* hide native cursor when custom is active */
body.has-cursor,
body.has-cursor * {
  cursor: none !important;
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 0;
  transition:
    padding 0.35s var(--ease),
    background 0.35s;
}
.nav.scrolled {
  padding: 10px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-brd);
  box-shadow: var(--sh-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}
.logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--sh-glow);
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  color: var(--ink);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
  background: rgba(37, 99, 235, 0.07);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta .btn-primary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  text-shadow: none;
}
.nav.scrolled .nav-cta .btn-primary {
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(37, 99, 235, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 8px rgba(15, 23, 42, 0.24);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--sh-sm);
  place-items: center;
  font-size: 1.2rem;
  color: var(--ink);
}
.nav-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(360px, 86vw);
  background: var(--white);
  z-index: 950;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
  padding: 90px 28px 28px;
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-drawer.open {
  transform: translateX(0);
}
.nav-drawer a {
  padding: 14px 16px;
  border-radius: 14px;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
}
.nav-drawer a:hover {
  background: var(--bg);
  color: var(--secondary);
}
.nav-drawer .btn {
  margin-top: 16px;
}
.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.6rem;
  color: var(--muted);
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  z-index: 940;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}
.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--grad-soft);
}
.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.hero-bg .b1 {
  width: 520px;
  height: 520px;
  background: rgba(14, 165, 233, 0.4);
  top: -140px;
  right: -80px;
}
.hero-bg .b2 {
  width: 420px;
  height: 420px;
  background: rgba(37, 99, 235, 0.3);
  bottom: -120px;
  left: -100px;
}
.hero-bg .b3 {
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.3);
  top: 40%;
  left: 45%;
}
.hero-map {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cloud {
  position: absolute;
  z-index: 1;
  opacity: 0.85;
  pointer-events: none;
}
.hero-plane {
  position: absolute;
  top: 18%;
  left: -10%;
  z-index: 2;
  font-size: 2rem;
  color: var(--secondary);
  filter: drop-shadow(0 10px 20px rgba(37, 99, 235, 0.3));
}
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  margin-bottom: 20px;
}
.hero-copy .lead {
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-trust .avatars {
  display: flex;
}
.hero-trust .avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -12px;
  box-shadow: var(--sh-sm);
}
.hero-trust .avatars img:first-child {
  margin-left: 0;
}
.hero-trust small {
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-trust strong {
  display: block;
  font-family: var(--font-head);
}

/* Smart search */
.smart-search {
  margin-top: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow: var(--sh-md);
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 3px;
  align-items: end;
}
.ss-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  transition: background 0.25s;
}
.ss-field:hover {
  background: rgba(255, 255, 255, 0.55);
}
.ss-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.ss-field select,
.ss-field input {
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
  outline: none;
  width: 100%;
}
.smart-search .btn {
  height: 52px;
  padding: 0 22px;
}

/* Hero right — floating cards */
.hero-visual {
  position: relative;
  height: 520px;
}
.float-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 16px;
  will-change: transform;
}
.hero-photo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78%;
  height: 82%;
  border-radius: var(--r-xl);
  object-fit: cover;
  box-shadow: var(--sh-lg);
}
.fc-hotel {
  top: 2%;
  left: -4%;
  width: 220px;
}
.fc-flight {
  bottom: 8%;
  left: -6%;
  width: 230px;
}
.fc-weather {
  top: 2%;
  right: -2%;
  width: 150px;
  text-align: center;
}
.fc-booking {
  bottom: 2%;
  right: -4%;
  width: 210px;
}
.fc-stats {
  top: 44%;
  right: -8%;
  width: 160px;
}
.fc-hotel img {
  border-radius: 12px;
  height: 96px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 10px;
}
.fc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.fc-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
}
.fc-sub {
  font-size: 0.78rem;
  color: var(--muted);
}
.fc-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--success);
}
.fc-weather .temp {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
}
.fc-weather i {
  font-size: 1.6rem;
  color: var(--accent);
}
.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 40px;
  margin-top: 8px;
}
.mini-bars span {
  flex: 1;
  background: var(--grad);
  border-radius: 4px;
  opacity: 0.85;
}
.scroll-ind {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-ind .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--muted);
  border-radius: 14px;
  position: relative;
}
.scroll-ind .mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: var(--secondary);
  border-radius: 2px;
  animation: scrolldot 1.5s infinite;
}
@keyframes scrolldot {
  0% {
    opacity: 0;
    top: 6px;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    top: 18px;
  }
  100% {
    opacity: 0;
  }
}

/* ---------- HERO v2 (banner-bg + globe collage) ---------- */
.hero-v2 {
  min-height: auto;
  padding: 150px 0 70px;
  align-items: flex-start;
  background:
    url("../images/banner-bg.png") center top/cover no-repeat,
    linear-gradient(180deg, #e7f1ff, #f8fafc);
}
.hero-v2 .hero-grid {
  grid-template-columns: 1.02fr 1.1fr;
  align-items: center;
  gap: 30px;
}
.hero-v2 .hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 120px);
  font-weight: 900;
  line-height: 0.9;
}
.hero-copy h1 .grad-text {
  position: relative;
}
.hl-spark {
  position: absolute !important;
  top: -0.42em;
  right: -0.2em;
  width: 0.62em;
  height: 0.62em;
  color: var(--secondary);
  pointer-events: none;
}
.hl-spark svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.hl-spark line {
  transform-origin: 12px 12px;
  animation: sparkTwinkle 2.6s ease-in-out infinite;
}
.hl-spark line:nth-child(2) {
  animation-delay: 0.18s;
}
.hl-spark line:nth-child(3) {
  animation-delay: 0.36s;
}
.hl-spark line:nth-child(4) {
  animation-delay: 0.54s;
}
.hl-spark line:nth-child(5) {
  animation-delay: 0.72s;
}
@keyframes sparkTwinkle {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hl-spark line {
    animation: none;
  }
}
.hero-v2 .hero-copy .lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: #475569;
}
.hero-v2 .eyebrow {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: var(--sh-sm);
}
.container-big {
  max-width: 1740px;
}
/* Search form */
.hero-v2 .smart-search {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--sh-md);
}
.hero-v2 .ss-field label {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-v2 .ss-field label i {
  color: var(--secondary);
}
.hero-v2 .ss-btn {
  height: 52px;
  padding: 0 22px;
  white-space: nowrap;
  font-size: 0.92rem;
  grid-column: 1 / -1;
  width: 100%;
  justify-content: center;
}
.hero-v2 .hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-v2 .btn-ghost .play {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 0.7rem;
  margin-right: 2px;
}

/* Right figure — globe image + floating cards */
.hero-figure {
  position: relative;
  min-height: 560px;
}
.hero-figure .globe {
  position: relative;
  z-index: 1;
  width: 118%;
  max-width: none;
  margin-left: -9%;
  -webkit-mask-image: radial-gradient(
    125% 120% at 52% 46%,
    #000 60%,
    rgba(0, 0, 0, 0) 84%
  );
  mask-image: radial-gradient(
    125% 120% at 52% 46%,
    #000 60%,
    rgba(0, 0, 0, 0) 84%
  );
  filter: drop-shadow(0 30px 50px rgba(37, 99, 235, 0.18));
}
.hero-figure .float-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}
.hero-figure .fc-flight {
  top: 14%;
  left: -2%;
  width: 210px;
}
.hero-figure .fc-hotel {
  top: 36%;
  left: -6%;
  width: 190px;
}
.hero-figure .fc-hotel img {
  border-radius: 12px;
  height: 82px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 8px;
}
.hero-figure .fc-weather {
  top: 30%;
  right: -2%;
  width: 172px;
}
.hero-figure .fc-budget {
  top: 54%;
  right: -4%;
  width: 180px;
}
.hero-figure .fc-ai {
  bottom: 8%;
  left: 24%;
  width: 230px;
}
.hero-figure .fc-itin {
  bottom: -2%;
  right: 4%;
  width: 220px;
}
.hero-figure .ai-bot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  margin-left: auto;
}
.hero-plane2 {
  position: absolute;
  z-index: 2;
  bottom: 16%;
  left: 6%;
  font-size: 1.4rem;
  color: var(--secondary);
  transform: rotate(-18deg);
  filter: drop-shadow(0 6px 12px rgba(37, 99, 235, 0.3));
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: 22px 26px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  margin-top: 44px;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-stat .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex: 0 0 auto;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--ink);
}
.hero-stat .lbl {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 991px) {
  .hero-v2 {
    padding: 120px 0 60px;
  }
  .hero-v2 .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-v2 .smart-search {
    grid-template-columns: 1fr 1fr;
  }
  .hero-v2 .ss-btn {
    grid-column: 1/-1;
    width: 100%;
  }
  .hero-figure {
    min-height: auto;
    max-width: 560px;
    margin: 0 auto;
  }
  .hero-figure .globe {
    width: 100%;
    margin-left: 0;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
/* Tablet & narrow desktop: let the globe fill the figure (no empty gap) and
   spread the floating cards to the four corners so they don't overlap */
@media (min-width: 641px) and (max-width: 1360px) {
  .hero-figure {
    min-height: 0;
    aspect-ratio: 1.2 / 1;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-figure .globe {
    width: 100%;
    margin-left: 0;
  }
  .hero-figure .float-card {
    z-index: 4;
  }
  .hero-figure .fc-weather {
    top: 2%;
    right: 0;
    width: 168px;
  }
  .hero-figure .fc-budget {
    top: 2%;
    left: 0;
    right: auto;
    width: 176px;
  }
  .hero-figure .fc-ai {
    bottom: 2%;
    left: 0;
    width: 208px;
  }
  .hero-figure .fc-itin {
    bottom: 2%;
    right: 0;
    width: 200px;
  }
  .hero-plane2 {
    display: none;
  }
}
@media (max-width: 640px) {
  .hero-v2 .smart-search {
    grid-template-columns: 1fr;
  }
  /* Mobile: show only the globe image, hide all floating glass cards */
  .hero-figure .float-card,
  .hero-figure .hero-plane2 {
    display: none !important;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* ---------- Marquee logos ---------- */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 26s linear infinite;
  align-items: center;
}
.marquee-track span {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--muted);
  font-size: 1.15rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Journey in Motion ---------- */
.journey {
  background: #0b1220;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.journey .pin-wrap {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}
.journey-track {
  display: flex;
  will-change: transform;
}
.journey-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: background 1s var(--ease);
}
.journey .cloud {
  opacity: 0.5;
}
.jn-panel {
  width: 100vw;
  height: 100vh;
  flex: 0 0 100vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 0 7vw;
  position: relative;
  z-index: 3;
}
.jn-copy .jn-index {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  opacity: 0.14;
  line-height: 1;
}
.jn-copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: #fff;
}
.jn-copy .country {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7dd3fc;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.jn-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 22px 0 28px;
}
.jn-meta .chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(8px);
}
.jn-meta .chip small {
  display: block;
  color: #94a3b8;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.jn-meta .chip strong {
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.jn-photo {
  position: relative;
  height: 64vh;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.jn-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jn-photo .pin {
  position: absolute;
  top: 22%;
  left: 30%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(6, 182, 212, 0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(6, 182, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
  }
}
.journey-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.journey-plane {
  position: absolute;
  z-index: 4;
  font-size: 1.8rem;
  color: #fff;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
  top: 0;
  left: 0;
}
.journey-head {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
}
.journey-head .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #7dd3fc;
}
.journey-progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.journey-progress .dot {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.25);
  transition: 0.4s;
}
.journey-progress .dot.active {
  background: var(--accent);
  width: 50px;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
  z-index: 1;
}

/* Journey fallback (mobile stacked) */
.journey-stack {
  display: none;
}
.journey-stack .jn-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.journey-stack .jn-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journey-stack .jn-card .body {
  position: relative;
  z-index: 2;
  padding: 26px;
  width: 100%;
  background: linear-gradient(transparent, rgba(11, 18, 32, 0.9));
}

/* ---------- Mood Finder ---------- */
.mood-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 50px;
}
.mood-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r-md);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.mood-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: 0.3s;
  z-index: 0;
}
.mood-card .ic {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--secondary);
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.mood-card span {
  font-family: var(--font-head);
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.mood-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}
.mood-card.active {
  border-color: transparent;
  box-shadow: var(--sh-glow);
}
.mood-card.active::before {
  opacity: 1;
}
.mood-card.active .ic {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.mood-card.active span {
  color: #fff;
}
.mood-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dest-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--sh-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.dest-card:hover img {
  transform: scale(1.08);
}
.dest-card .overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 22px;
  color: #fff;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
}
.dest-card .overlay h3 {
  color: #fff;
  margin-bottom: 4px;
}
.dest-card .overlay .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.dest-card .price {
  font-family: var(--font-head);
  font-weight: 700;
}
.dest-card.hide {
  display: none;
}

/* ---------- World Explorer ---------- */
.explorer {
  background: #0b1220;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.explorer .grad-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.25),
    transparent 65%
  );
  top: -10%;
  left: 20%;
  filter: blur(30px);
}
.explorer > .container {
  max-width: 1740px;
  position: relative;
  z-index: 3;
}
.explorer .grad-glow.g2 {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 65%);
  top: auto;
  bottom: -10%;
  left: auto;
  right: 20%;
}

/* Rays, clouds, glow */
.expl-rays {
  position: absolute;
  top: 4%;
  left: 50%;
  width: 920px;
  height: 920px;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.7;
  background: conic-gradient(
    from 0deg,
    rgba(14, 165, 233, 0.16),
    transparent 25%,
    rgba(6, 182, 212, 0.16) 50%,
    transparent 75%,
    rgba(37, 99, 235, 0.16)
  );
  animation: spin 44s linear infinite;
}
.expl-cloud {
  position: absolute;
  z-index: 1;
  opacity: 0.22;
  pointer-events: none;
}
.expl-cloud img {
  filter: brightness(0.55);
}

/* Stage */
.expl-stage {
  position: relative;
  height: 770px;
  max-width: 1520px;
  margin: 24px auto 0;
}

/* Globe */
.globe-wrap {
  position: absolute;
  top: 66px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  /* height: 480px; */
  z-index: 2;
}
.globe-glow {
  position: absolute;
  inset: -46px;
  border-radius: 50%;
  z-index: 0;
  filter: blur(20px);
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.55),
    rgba(37, 99, 235, 0.15) 55%,
    transparent 72%
  );
  animation: pulseGlow 4s ease-in-out infinite;
}
.globe-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  /* box-shadow:
    0 0 70px rgba(14, 165, 233, 0.5),
    inset 0 0 40px rgba(0, 0, 0, 0.55); */
  animation: spinGlobe 100s linear infinite;
}
.globe-wrap.slow .globe-img {
  animation-duration: 300s;
}
/* A real transparent globe PNG (with its own atmosphere/pins baked in):
   show it whole, keep its own glow, and float gently instead of spinning
   so baked-in pins/plane don't rotate. */
.globe-img.is-photo {
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, .5));
  animation: globeFloat 6s ease-in-out infinite;
  transform: none;
}
.globe-wrap.slow .globe-img.is-photo { animation-duration: 6s; }
@keyframes globeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .globe-img.is-photo { animation: none; }
}
.orbit-svg {
  position: absolute;
  inset: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}
.orbit-path {
  fill: none;
  stroke: rgba(125, 211, 252, 0.35);
  stroke-width: 1.5;
  stroke-dasharray: 5 8;
}
.orbit-plane {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  color: #fff;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 12px rgba(125, 211, 252, 0.9));
  opacity: 0;
}
@keyframes spinGlobe {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Mini destination cards */
.expl-minis {
  display: contents;
}
.dest-mini {
  position: absolute;
  z-index: 5;
  display: flex;
  gap: 12px;
  align-items: center;
  width: 252px;
  padding: 12px;
  border-radius: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 44px rgba(2, 8, 23, 0.5);
  color: #fff;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s,
    background 0.35s;
}
.dest-mini:hover,
.dest-mini.active {
  transform: translateY(-6px) scale(1.04);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 60px rgba(14, 165, 233, 0.42);
}
.dest-mini .dm-info {
  flex: 1;
  min-width: 0;
}
.dest-mini h4 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: #fff;
}
.dest-mini .dm-loc {
  font-size: 0.76rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 2px 0 8px;
}
.dest-mini .dm-weather {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
}
.dest-mini .dm-weather i {
  color: #f59e0b;
}
.dest-mini .dm-img {
  width: 78px;
  height: 90px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 auto;
}
.dest-mini .dm-pin {
  position: absolute;
  top: -11px;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.72rem;
  box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.25);
  animation: pulse 2.2s infinite;
}
.dest-mini .dm-tip {
  position: absolute;
  top: -46px;
  right: 0;
  background: #fff;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 9px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.25s;
  box-shadow: var(--sh-md);
  z-index: 8;
}
.dest-mini:hover .dm-tip {
  opacity: 1;
  transform: translateY(0);
}
.dm-paris {
  top: 20%;
  left: 7%;
}
.dm-dubai {
  top: 16%;
  right: 7%;
}
.dm-tokyo {
  top: 52%;
  left: 2%;
}
.dm-bali {
  top: 56%;
  right: 2%;
}

/* Featured card */
.featured-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  width: min(770px, 94%);
  display: grid;
  grid-template-columns: 300px 1fr;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-xl);
  box-shadow: 0 40px 80px rgba(2, 8, 23, 0.6);
  overflow: hidden;
  color: #fff;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.featured-card.swap {
  opacity: 0;
  transform: translateX(-50%) translateY(22px);
}
.featured-card .fc-media {
  position: relative;
  min-height: 270px;
  overflow: hidden;
}
.featured-card .fc-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.featured-card:hover .fc-media img {
  transform: scale(1.05);
}
.featured-card .fc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--r-pill);
}
.featured-card .fc-content {
  padding: 26px 28px;
  position: relative;
}
.featured-card .fc-wish {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: grid;
  place-items: center;
  transition: 0.3s;
}
.featured-card .fc-wish:hover,
.featured-card .fc-wish.active {
  background: #fff;
  color: #ef4444;
}
.featured-card .fc-content h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: #fff;
  margin: 0 0 8px;
}
.featured-card .fc-content p {
  color: #d9d9d9;
  font-size: 0.92rem;
  margin-bottom: 18px;
  max-width: 92%;
}
.fc-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.fw {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  transition: 0.3s;
}
.fw:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}
.fw i {
  color: #7dd3fc;
  font-size: 1rem;
}
.fw strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
  margin-top: 6px;
}
.fw small {
  color: #94a3b8;
  font-size: 0.66rem;
}
.fc-btn {
  position: relative;
  overflow: hidden;
}
.fc-ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ripple 0.6s ease-out forwards;
}
@keyframes ripple {
  to {
    width: 340px;
    height: 340px;
    opacity: 0;
  }
}

/* Bottom chips */
.expl-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.expl-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 9px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
  max-width: 180px;
  width: 100%;
}
.expl-chip img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: cover;
}
.expl-chip h5 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 0.92rem;
}
.expl-chip small {
  color: #94a3b8;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.expl-chip:hover,
.expl-chip.on {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(14, 165, 233, 0.6);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.5);
}
.expl-chip.more {
  color: #94a3b8;
}
.expl-chip.more .plus {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: #fff;
}
.expl-scroll {
  text-align: center;
  margin-top: 40px;
  color: #64748b;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
/* modern mouse-wheel indicator */
.mouse-modern {
  width: 30px;
  height: 48px;
  border-radius: 16px;
  position: relative;
  padding: 8px 0;
  display: flex;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(125, 211, 252, 0.08),
    rgba(125, 211, 252, 0)
  );
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 2px rgba(125, 211, 252, 0.35) inset,
    0 8px 24px rgba(14, 165, 233, 0.25);
}
.mouse-modern .wheel {
  width: 5px;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(180deg, #7dd3fc, #0ea5e9);
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.9);
  animation: wheelMove 1.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@keyframes wheelMove {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}
.expl-scroll .chevrons {
  display: flex;
  flex-direction: column;
  line-height: 0.5;
  color: #7dd3fc;
  font-size: 0.7rem;
}
.expl-scroll .chevrons i:nth-child(2) {
  margin-top: -3px;
}
.expl-scroll .chevrons i:nth-child(1) {
  animation: chevBob 1.6s infinite;
}
.expl-scroll .chevrons i:nth-child(2) {
  animation: chevBob 1.6s infinite 0.2s;
  opacity: 0.5;
}
@keyframes chevBob {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(3px);
    opacity: 1;
  }
}

/* Explorer decorative background shapes */
.expl-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.s-ring1 {
  top: 14%;
  left: 5%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(125, 211, 252, 0.18);
  border-radius: 50%;
  animation: floatY 7s ease-in-out infinite;
}
.s-ring2 {
  bottom: 18%;
  right: 6%;
  width: 180px;
  height: 180px;
  border: 2px dashed rgba(37, 99, 235, 0.18);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.s-sq {
  top: 22%;
  right: 12%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(14, 165, 233, 0.2);
  border-radius: 14px;
  transform: rotate(20deg);
  animation: floatY 6s ease-in-out infinite 0.5s;
}
.s-tri {
  bottom: 26%;
  left: 10%;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 36px solid rgba(6, 182, 212, 0.16);
  animation: floatY 8s ease-in-out infinite 1s;
}
.s-dots,
.s-dots2 {
  width: 130px;
  height: 90px;
  background-image: radial-gradient(
    rgba(125, 211, 252, 0.35) 2px,
    transparent 2px
  );
  background-size: 18px 18px;
  opacity: 0.5;
}
.s-dots {
  top: 40%;
  left: 3%;
}
.s-dots2 {
  bottom: 8%;
  right: 16%;
}
.s-blur1 {
  top: 30%;
  left: 40%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.15),
    transparent 70%
  );
  filter: blur(20px);
}
.s-blur2 {
  bottom: 6%;
  left: 30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 70%);
  filter: blur(20px);
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-18px) rotate(6deg);
  }
}

@media (max-width: 1199px) {
  .expl-stage {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
  .expl-rays {
    width: 520px;
    height: 520px;
  }
  .globe-wrap {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 340px;
    height: 340px;
  }
  .expl-minis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
    max-width: 720px;
  }
  .dest-mini {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .dm-paris,
  .dm-dubai,
  .dm-tokyo,
  .dm-bali {
    top: 0;
    left: 0;
    right: 0;
  }
  .featured-card {
    position: relative;
    bottom: auto;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 770px;
  }
  .featured-card.swap {
    transform: translateY(22px);
  }
}
@media (max-width: 640px) {
  .expl-minis {
    grid-template-columns: 1fr;
  }
  .featured-card {
    grid-template-columns: 1fr;
  }
  .fc-widgets {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.bento-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  cursor: pointer;
}
.bento-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.bento-item:hover img {
  transform: scale(1.09);
}
.bento-item .glass-ov {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s;
}
.bento-item .glass-ov h4 {
  margin: 0;
  font-family: var(--font-head);
}
.bento-item .glass-ov small {
  color: var(--muted);
}
.bento-item .go {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: transform 0.3s;
}
.bento-item:hover .go {
  transform: rotate(-45deg) scale(1.05);
}
.bento-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(15, 23, 42, 0.35));
  z-index: 1;
}
.bento-tall {
  grid-row: span 2;
}
.bento-wide {
  grid-column: span 2;
}

/* ---------- Popular Destinations (card grid) ---------- */
.pop-dest {
  position: relative;
  overflow: hidden;
}
.pop-dest .pd-plane {
  position: absolute;
  top: 70px;
  right: 6%;
  z-index: 1;
  pointer-events: none;
  color: var(--secondary);
}
.pop-dest .pd-plane i {
  position: absolute;
  right: -6px;
  top: 8px;
  font-size: 1.3rem;
  transform: rotate(12deg);
}
.pd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pd-card {
  position: relative;
  display: block;
  height: 340px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  color: #fff;
}
.pd-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pd-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 38%, rgba(11, 18, 32, 0.85));
  z-index: 1;
}
.pd-card:hover img {
  transform: scale(1.08);
}
.pd-card:hover {
  box-shadow: var(--sh-lg);
}
.pd-rating {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 11px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}
.pd-rating i {
  color: #f59e0b;
}
.pd-trend {
  position: absolute;
  top: 14px;
  left: 74px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.92);
  color: #ef4444;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 11px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}
.pd-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: 0.3s;
}
.pd-wish:hover,
.pd-wish.active {
  background: #fff;
  color: #ef4444;
  transform: scale(1.08);
}
.pd-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
}
.pd-overlay h3 {
  color: #fff;
  font-size: 1.35rem;
  margin: 0 0 4px;
}
.pd-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.pd-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.pd-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}
.pd-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pd-price b {
  font-family: var(--font-head);
}
.pd-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-glow);
  transition: transform 0.3s var(--ease);
}
.pd-card:hover .pd-btn {
  transform: translateY(-2px);
}
.pd-card:hover .pd-btn i {
  transform: translateX(3px);
}
.pd-btn i {
  transition: transform 0.3s var(--ease);
}
.pd-card.hide {
  display: none;
}

/* coloured mood tag */
.pd-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.74rem;
  color: #fff;
  margin-bottom: 12px;
}
.mt-relax {
  background: #0ea5e9;
}
.mt-luxury {
  background: #7c3aed;
}
.mt-adventure {
  background: #f97316;
}
.mt-nature {
  background: #10b981;
}
.mt-culture {
  background: #2563eb;
}
.mt-nightlife {
  background: #ec4899;
}

/* mood cards: Explore button reveals on hover */
.mood-item .pd-btn {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.mood-item:hover .pd-btn {
  opacity: 1;
  transform: none;
}
.mood-results {
  align-items: stretch;
}

.pd-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(120deg, #eff6ff, #f0fbff);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 22px 30px;
  box-shadow: var(--sh-sm);
}
.pd-cta-ic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: var(--sh-sm);
  flex: 0 0 auto;
}
.pd-cta-txt {
  flex: 1;
}
.pd-cta-txt h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin: 0 0 2px;
}
.pd-cta-txt p {
  margin: 0;
  color: var(--muted);
}
.pd-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .pd-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pop-dest .pd-plane {
    display: none;
  }
  .pd-cta {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .pd-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Cards grid generic ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Tour card */
.tour-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}
.tour-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  /* round the top corners on the media itself + promote to its own layer so
     the image is reliably clipped even while the card is 3D-tilted on hover
     (parent border-radius clipping leaks corners under 3D transforms) */
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}
.tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tour-card:hover .tour-media img {
  transform: scale(1.08);
}
.tour-media .tag {
  position: absolute;
  top: 14px;
  left: 14px;
}
.wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  color: var(--ink);
  z-index: 2;
  transition: 0.3s;
}
.wishlist:hover,
.wishlist.active {
  background: #fff;
  color: #ef4444;
}
.tour-body {
  padding: 20px;
}
.tour-body .loc {
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.tour-body h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.tour-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.tour-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tour-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.tour-foot .price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}
.tour-foot .price small {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.8rem;
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.9rem;
}
.rating span {
  color: var(--muted);
  font-weight: 500;
}

/* Feature card */
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.feature-card .ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--grad-soft);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--muted);
  margin: 0;
}

/* Experience card */
.exp-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--sh-sm);
}
.exp-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.exp-card:hover img {
  transform: scale(1.08);
}
.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(15, 23, 42, 0.82));
  z-index: 1;
}
.exp-card .body {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #fff;
}
.exp-card .body h3 {
  color: #fff;
  margin-bottom: 4px;
}
.exp-card .body p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}
.exp-card .count {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

/* ---------- Smart Trip Builder / Customizer ---------- */
.builder {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  padding: 30px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
}
.builder-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.builder-intro .builder-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 12px 0 8px;
}
.builder-intro .builder-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  max-width: 42ch;
}
.builder-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.field select,
.field input {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: 0.25s;
}
.field select:focus,
.field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}
.chip-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-select button {
  padding: 9px 15px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--muted);
  transition: 0.25s;
}
.chip-select button.on {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}
.summary {
  background: var(--grad-soft);
  border-radius: var(--r-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.summary h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
}
.summary-row:last-of-type {
  border: 0;
}
.summary-row .k {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 0 0 auto;
}
.summary-row .v {
  font-family: var(--font-head);
  font-weight: 600;
  text-align: right;
  min-width: 0;
}
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 18px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
}
.summary-total .amt {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--secondary);
}

/* Budget calculator */
.calc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
.calc-range {
  margin-bottom: 20px;
}
.calc-range .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.calc-range .top label {
  font-family: var(--font-head);
  font-weight: 600;
}
.calc-range .top .val {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
}
.calc-range input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 6px;
  background: var(--line);
  outline: none;
}
.calc-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad);
  cursor: pointer;
  box-shadow: var(--sh-glow);
  border: 3px solid #fff;
}
.calc-total {
  text-align: center;
  background: var(--grad-soft);
  border-radius: var(--r-lg);
  padding: 40px 28px;
}
.calc-total small {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
}
.calc-total .big {
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.1;
  margin: 10px 0;
}
.calc-total .donut {
  width: 150px;
  height: 150px;
  margin: 14px auto 0;
  border-radius: 50%;
}

/* ---------- Barber-style sticky section stack ----------
   Applied only to Smart Trip Builder, Trip Customizer and Budget Planner.
   The panels keep their existing section/card design; desktop sticky flow
   lets each next panel slide over the previous one without layout jumps. */
.sticky-stack {
  position: relative;
}
.sticky-panel {
  position: relative;
}
@media (min-width: 992px) {
  .sticky-stack {
    isolation: isolate;
  }
  .sticky-stack .sticky-panel {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
  }
  .sticky-stack .sticky-panel > .container {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .sticky-stack .sticky-panel:nth-child(1) {
    z-index: 1;
  }
  .sticky-stack .sticky-panel:nth-child(2) {
    z-index: 2;
  }
  .sticky-stack .sticky-panel:nth-child(3) {
    z-index: 3;
  }
}
@media (max-width: 991.98px) {
  .sticky-stack .sticky-panel {
    position: relative;
    min-height: 0;
  }
}

/* ---------- Timeline / Itinerary ---------- */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 0;
}
/* faint track — line + nodes share the same centre (x = 20px) */
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
  z-index: 0;
}
/* animated fill that grows on scroll */
.tl-fill {
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--primary), var(--accent));
  transform: scaleY(0);
  transform-origin: top center;
  z-index: 1;
}
.tl-item {
  position: relative;
  padding: 0 0 26px 70px;
}
.tl-item .node {
  position: absolute;
  left: 9px;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--line);
  box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.1);
  z-index: 2;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.tl-item .node.on {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.2);
}
.tl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--sh-sm);
  transition: transform 0.3s var(--ease);
}
.tl-card:hover {
  transform: translateX(6px);
  box-shadow: var(--sh-md);
}
.tl-card .day {
  font-family: var(--font-head);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tl-card h4 {
  margin: 4px 0 6px;
  font-family: var(--font-head);
}
.tl-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.tl-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--secondary);
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--sh-sm);
  height: auto;
}
.testi-card .stars {
  color: #f59e0b;
  margin-bottom: 14px;
}
.testi-card p {
  font-size: 1.05rem;
  color: var(--ink);
}
.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.testi-user img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: var(--sh-sm);
}
.testi-user strong {
  font-family: var(--font-head);
  display: block;
}
.testi-user small {
  color: var(--muted);
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}
.blog-card .media {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-card.feature .media {
  height: 100%;
  min-height: 300px;
}
.blog-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .media img {
  transform: scale(1.07);
}
.blog-card .media .tag {
  position: absolute;
  top: 14px;
  left: 14px;
}
.blog-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-body .meta {
  color: var(--muted);
  font-size: 0.82rem;
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}
.blog-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.blog-body a.more {
  margin-top: auto;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.blog-card.feature {
  grid-row: span 2;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open {
  box-shadow: var(--sh-md);
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-q .ic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--secondary);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: 0.35s;
}
.faq-item.open .faq-q .ic {
  transform: rotate(45deg);
  background: var(--grad);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted);
}

/* ---------- Newsletter ---------- */
.newsletter {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--grad);
  color: #fff;
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.newsletter h2 {
  color: #fff;
}
.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto 28px;
}
.newsletter .form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-pill);
  padding: 8px;
  backdrop-filter: blur(10px);
}
.newsletter .form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 18px;
  color: #fff;
  outline: none;
  font-family: var(--font-body);
  font-weight: 500;
}
.newsletter .form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter .form .btn {
  background: #fff;
  color: var(--secondary);
}
.newsletter .nl-float {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(2px);
}

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.stat .num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.stat .lbl {
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */
.footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer .grad-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 65%);
  bottom: -40%;
  left: -10%;
  filter: blur(30px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.footer .logo {
  color: #fff;
  margin-bottom: 16px;
}
.footer p {
  color: #94a3b8;
}
.footer h5 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-links a {
  display: block;
  padding: 6px 0;
  color: #94a3b8;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-nl {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-pill);
  padding: 6px;
  margin-top: 8px;
}
.footer-nl input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 10px 14px;
  outline: none;
  font-family: var(--font-body);
}
.footer-nl button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: #fff;
  transition: 0.3s;
}
.socials a:hover {
  background: var(--grad);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 56px;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #94a3b8;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

/* ---------- Page hero (inner) — premium AI-travel breadcrumb ---------- */
.page-hero {
  position: relative;
  padding: 200px 0 104px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background:
    url("../images/brd.jpg") center top / cover no-repeat,
    #f8fbff;
}
/* the brd.jpg background already contains the dotted map, pins, flight path,
   clouds, sparkles & wave — hide the CSS-generated decoration layers */
.page-hero .ph-bg {
  display: none;
}
/* soft wave at the bottom edge blends into the next section */
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 1;
  pointer-events: none;
}

/* --- decorative background layers --- */
.ph-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
/* dotted world-map texture */
.ph-map {
  position: absolute;
  inset: 30px 0 40px;
  background-image: radial-gradient(rgba(37, 99, 235, 0.34) 1.4px, transparent 1.7px);
  background-size: 21px 21px;
  opacity: 0.55;
  -webkit-mask-image: radial-gradient(115% 82% at 50% 44%, #000 40%, transparent 76%);
  mask-image: radial-gradient(115% 82% at 50% 44%, #000 40%, transparent 76%);
}
/* soft blue mesh + radial glows */
.ph-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.ph-glow.g1 {
  width: 560px;
  height: 380px;
  background: rgba(37, 99, 235, 0.16);
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
}
.ph-glow.g2 {
  width: 300px;
  height: 300px;
  background: rgba(14, 165, 233, 0.16);
  left: 14%;
  bottom: -60px;
}
.ph-glow.g3 {
  width: 260px;
  height: 260px;
  background: rgba(99, 102, 241, 0.14);
  right: 12%;
  top: 8%;
}
/* glass circles */
.ph-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 6px rgba(255, 255, 255, 0.6);
}
.ph-ring.r1 { width: 128px; height: 128px; top: 20%; left: 15%; }
.ph-ring.r2 { width: 74px; height: 74px; bottom: 20%; right: 17%; }
.ph-ring.r3 { width: 46px; height: 46px; top: 30%; right: 26%; }
/* minimal clouds */
.ph-cloud { position: absolute; opacity: 0.92; filter: drop-shadow(0 12px 20px rgba(37, 99, 235, 0.12)); }
.ph-cloud svg { display: block; width: 100%; height: auto; }
.ph-cloud.c1 { top: 22%; left: 4%; width: 132px; }
.ph-cloud.c2 { bottom: 20%; right: 5%; width: 104px; }
.ph-cloud.c3 { top: 60%; left: 18%; width: 78px; opacity: 0.7; }
/* animated flight path */
.ph-flight {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ph-flight path {
  fill: none;
  stroke: rgba(37, 99, 235, 0.5);
  stroke-width: 2;
  stroke-dasharray: 3 9;
  stroke-linecap: round;
  animation: phDash 24s linear infinite;
}
@keyframes phDash { to { stroke-dashoffset: -480; } }
.ph-plane {
  position: absolute;
  color: var(--secondary);
  font-size: 1.5rem;
  filter: drop-shadow(0 6px 12px rgba(37, 99, 235, 0.4));
}
.ph-plane.pl1 { top: 20%; right: 12%; transform: rotate(-24deg); }
/* glowing location pins */
.ph-pin {
  position: absolute;
  color: var(--secondary);
  font-size: 1.25rem;
  filter: drop-shadow(0 6px 10px rgba(37, 99, 235, 0.4));
}
.ph-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 82%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 70%);
  animation: phPulse 2.6s ease-out infinite;
}
@keyframes phPulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
  70% { transform: translate(-50%, -50%) scale(1.7); opacity: 0; }
  100% { opacity: 0; }
}
.ph-pin.pn1 { top: 33%; left: 17%; }
.ph-pin.pn2 { top: 40%; right: 20%; color: var(--primary); }
.ph-pin.pn3 { bottom: 24%; left: 27%; }
.ph-pin.pn4 { bottom: 22%; right: 27%; color: #6366f1; }
/* sparkle particles */
.ph-spark {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #fff 0%, #7dd3fc 55%, transparent 70%);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  opacity: 0;
  animation: phTwinkle 3.4s ease-in-out infinite;
}
@keyframes phTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
  50% { opacity: 0.95; transform: scale(1) rotate(45deg); }
}
.ph-spark.sp1 { top: 24%; left: 34%; animation-delay: 0s; }
.ph-spark.sp2 { top: 30%; right: 30%; width: 16px; height: 16px; animation-delay: 0.7s; }
.ph-spark.sp3 { bottom: 30%; left: 44%; width: 9px; height: 9px; animation-delay: 1.4s; }
.ph-spark.sp4 { top: 46%; left: 9%; animation-delay: 2.1s; }
.ph-spark.sp5 { bottom: 34%; right: 12%; width: 14px; height: 14px; animation-delay: 1s; }

/* --- foreground content --- */
.page-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  color: var(--secondary);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ph-badge i { color: var(--primary); font-size: 0.85rem; }

.ph-title-wrap { position: relative; display: inline-block; margin-top: 24px; }
.ph-title-glow {
  position: absolute;
  inset: -24% -12%;
  background: radial-gradient(58% 74% at 50% 50%, rgba(14, 165, 233, 0.25), rgba(37, 99, 235, 0.12) 55%, transparent 74%);
  filter: blur(26px);
  z-index: -1;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.9rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}
.ph-title-underline {
  display: block;
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: var(--grad);
  margin: 20px auto 0;
  position: relative;
}
.ph-title-underline::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.7);
}
.page-hero .lead {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

/* glass breadcrumb */
.breadcrumb-nav {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 11px 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(37, 99, 235, 0.12);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}
.breadcrumb-nav a,
.breadcrumb-nav .current {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  transition: color 0.2s;
}
.breadcrumb-nav a i { color: var(--muted); transition: color 0.2s; }
.breadcrumb-nav a:hover,
.breadcrumb-nav a:hover i { color: var(--secondary); }
.breadcrumb-nav .current { color: var(--secondary); }
.breadcrumb-nav .current i { color: var(--primary); }
.breadcrumb-nav .sep { color: rgba(100, 116, 139, 0.5); font-size: 0.68rem; }

@media (prefers-reduced-motion: reduce) {
  .ph-flight path, .ph-pin::before, .ph-spark { animation: none; }
  .ph-spark { opacity: 0.7; }
}
@media (max-width: 767px) {
  .page-hero { padding: 150px 0 84px; }
  .ph-ring.r1, .ph-ring.r3, .ph-cloud.c3, .ph-spark.sp4, .ph-spark.sp5 { display: none; }
  .ph-cloud.c1 { width: 90px; top: 16%; }
  .ph-cloud.c2 { width: 78px; }
  .page-hero .lead { font-size: 1rem; }
  .breadcrumb-nav { font-size: 0.84rem; padding: 9px 16px; gap: 9px; }
}

/* ---------- Filters / toolbar ---------- */
.toolbar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.toolbar .search-box {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border-radius: var(--r-pill);
  padding: 11px 18px;
}
.toolbar .search-box input {
  border: 0;
  background: transparent;
  outline: none;
  flex: 1;
  font-family: var(--font-body);
  font-weight: 500;
}
.toolbar select {
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 11px 18px;
  font-family: var(--font-head);
  font-weight: 500;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.view-toggle {
  display: flex;
  gap: 6px;
  background: var(--bg);
  border-radius: var(--r-pill);
  padding: 5px;
}
.view-toggle button {
  width: 40px;
  height: 38px;
  border-radius: var(--r-pill);
  color: var(--muted);
  display: grid;
  place-items: center;
}
.view-toggle button.on {
  background: #fff;
  color: var(--secondary);
  box-shadow: var(--sh-sm);
}
.chips-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  justify-content: center;
}
.filter-chip {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--muted);
  transition: 0.25s;
}
.filter-chip.on,
.filter-chip:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

/* list view */
.list-view .tour-card {
  display: grid;
  grid-template-columns: 300px 1fr;
}
.list-view .tour-media {
  height: 100%;
}
.tours-list.list-view {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}
.pagination a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  transition: 0.25s;
}
.pagination a:hover,
.pagination a.on {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

/* ---------- Details page ---------- */
.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 12px;
  margin-bottom: 50px;
}
.detail-gallery a {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.detail-gallery a:first-child {
  grid-row: span 2;
  grid-column: span 1;
}
.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.detail-gallery a:hover img {
  transform: scale(1.06);
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 44px;
  align-items: start;
}
.detail-main .blk {
  margin-bottom: 44px;
}
.detail-main h2 {
  font-size: 1.8rem;
}
.incl-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.incl-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.incl-list li i {
  color: var(--success);
}
.incl-list.excl li i {
  color: #ef4444;
}
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.highlight-grid .hl {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.highlight-grid .hl .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad-soft);
  color: var(--secondary);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.booking-card {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  padding: 26px;
}
.booking-card .price {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
}
.booking-card .price small {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.booking-card .divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.review-card .head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* Overview stat inline */
.ov-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.ov-stats .os {
  flex: 1;
  min-width: 130px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px;
}
.ov-stats .os i {
  color: var(--primary);
  font-size: 1.2rem;
}
.ov-stats .os small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 6px 0 2px;
}
.ov-stats .os strong {
  font-family: var(--font-head);
}

/* ---------- About ---------- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-collage img {
  border-radius: var(--r-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--sh-sm);
}
.about-collage img:first-child {
  grid-row: span 2;
  height: 100%;
}
.team-card {
  text-align: center;
}
.team-card .ph {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.team-card .ph img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.team-card:hover .ph img {
  transform: scale(1.06);
}
.team-card .socials {
  position: absolute;
  inset: auto 0 -60px 0;
  justify-content: center;
  padding: 14px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.7));
  transition: 0.4s;
  margin: 0;
}
.team-card:hover .socials {
  inset: auto 0 0 0;
}
.team-card h4 {
  font-family: var(--font-head);
  margin: 0;
}
.team-card small {
  color: var(--secondary);
  font-weight: 600;
}
.partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.partners .p {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  height: 90px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 600;
  transition: 0.3s;
}
.partners .p:hover {
  box-shadow: var(--sh-sm);
  color: var(--secondary);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  padding: 32px;
}
.contact-form .field {
  margin-bottom: 16px;
}
.contact-form textarea {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  resize: vertical;
  min-height: 130px;
  outline: none;
}
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}
.info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-bottom: 16px;
  transition: 0.3s;
}
.info-card:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-3px);
}
.info-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad-soft);
  color: var(--secondary);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex: 0 0 auto;
}
.info-card h4 {
  font-family: var(--font-head);
  margin: 0 0 4px;
}
.info-card p {
  margin: 0;
  color: var(--muted);
}
.map-embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--line);
  height: 360px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- Reveal animation base ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
}
.reveal-in {
  opacity: 1 !important;
  transform: none !important;
}
.no-anim [data-reveal] {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .bento {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-visual {
    height: 460px;
  }
}
@media (max-width: 991px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual {
    height: 400px;
    max-width: 460px;
    margin: 0 auto;
  }
  .smart-search {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .smart-search .btn {
    grid-column: 1/-1;
    width: 100%;
  }
  /* Mobile: drop the pinned 100vh horizontal scroller, use a swipeable carousel */
  .journey .pin-wrap {
    display: none !important;
  }
  /* Heading floats absolutely on desktop; in flow on mobile so it sits above the cards */
  .journey-head {
    position: static;
    padding: 40px 20px 18px;
  }
  .journey-stack {
    display: flex !important;
    gap: 16px;
    overflow-x: auto;
    /* Explicit overflow-y:hidden — without it, overflow-x:auto makes the
       browser compute overflow-y to auto, turning this into a vertical scroll
       container that traps the page's vertical scroll (esp. with Lenis). */
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 20px 24px;
    scrollbar-width: none;
    scroll-padding: 20px;
  }
  .journey-stack::-webkit-scrollbar {
    display: none;
  }
  .journey-stack .jn-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    margin-bottom: 0;
    min-height: 440px;
  }
  .mood-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mood-results {
    grid-template-columns: repeat(2, 1fr);
  }
  .builder,
  .calc {
    grid-template-columns: 1fr;
  }
  .cards-3,
  .cards-4,
  .cards-2,
  .support-cards,
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-card.feature {
    grid-column: span 2;
    grid-row: auto;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .booking-card {
    position: static;
  }
  .about-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .partners {
    grid-template-columns: repeat(3, 1fr);
  }
  .list-view .tour-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mood-results,
  .bento,
  .cards-3,
  .cards-4,
  .cards-2,
  .stats-strip,
  .support-cards,
  .blog-grid,
  .partners,
  .incl-list,
  .highlight-grid {
    grid-template-columns: 1fr;
  }
  .bento-wide,
  .bento-tall {
    grid-column: auto;
    grid-row: auto;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .smart-search {
    grid-template-columns: 1fr;
  }
  .footer-grid,
  .detail-gallery {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .builder-form {
    grid-template-columns: 1fr;
  }
  .blog-card.feature {
    grid-column: auto;
  }
  /* Suggested Package: stack label over value so long text never collides */
  .summary-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .summary-row .v {
    text-align: left;
  }
  .summary {
    padding: 22px;
  }
  .summary-total {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    text-align: center;
  }
  .summary-total .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   AI TRIP GENERATOR
   ============================================================ */
.ai-gen {
  position: relative;
  overflow: hidden;
  background: #f4f8ff;
}
.ai-gen .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: 0;
}
.ai-gen .b1 {
  width: 460px;
  height: 460px;
  background: rgba(14, 165, 233, 0.4);
  top: -120px;
  left: -80px;
}
.ai-gen .b2 {
  width: 420px;
  height: 420px;
  background: rgba(37, 99, 235, 0.32);
  bottom: -140px;
  right: -60px;
}
.ai-gen .b3 {
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.32);
  top: 40%;
  left: 55%;
}
.ai-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.ai-form {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 28px;
}
.ai-form .field {
  margin-bottom: 16px;
}
.ai-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 8px 12px;
}
.counter button {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--sh-sm);
  color: var(--secondary);
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.counter button:hover {
  background: var(--grad);
  color: #fff;
}
.counter .val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
}
.range-wrap .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.range-wrap .top .val {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
}
.range-wrap input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    #0ea5e9 var(--range-fill, 24%),
    #e2e8f0 var(--range-fill, 24%)
  );
  outline: none;
}
.range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad);
  cursor: pointer;
  box-shadow: var(--sh-glow);
  border: 3px solid #fff;
}
.ai-styles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ai-style {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r-sm);
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.ai-style i {
  font-size: 1.15rem;
  color: var(--secondary);
  display: block;
  margin-bottom: 6px;
  transition: 0.25s;
}
.ai-style span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
}
.ai-style:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-sm);
}
.ai-style.on {
  background: var(--grad);
  border-color: transparent;
  box-shadow: var(--sh-glow);
}
.ai-style.on i,
.ai-style.on span {
  color: #fff;
}
.ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ai-chips button {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--muted);
  transition: 0.22s;
}
.ai-chips button.on {
  background: rgba(14, 165, 233, 0.12);
  color: var(--primary);
  border-color: rgba(14, 165, 233, 0.4);
}
.ai-generate {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 8px;
  height: 58px;
  border-radius: var(--r-pill);
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: var(--sh-glow);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ai-generate:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 55px rgba(14, 165, 233, 0.5);
}
.ai-generate.loading {
  pointer-events: none;
}
.ai-generate .spin {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}
.ai-generate.loading .spin {
  display: inline-block;
}
.ai-generate.loading .label {
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.ai-progress {
  height: 6px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
  margin-top: 16px;
  display: none;
}
.ai-progress.show {
  display: block;
}
.ai-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
  border-radius: 6px;
}
.ai-loadmsg {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--secondary);
  margin-top: 12px;
  min-height: 24px;
  display: none;
}
.ai-loadmsg.show {
  display: block;
}

/* Right visual */
.ai-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, #0b1220, #123);
  container-type: inline-size;
  container-name: aivisual;
}
.ai-illustration {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(14, 165, 233, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(37, 99, 235, 0.35),
      transparent 55%
    ),
    linear-gradient(160deg, #0b1220, #0e1a33);
}
.ai-illustration .float-ic {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-brd);
  display: grid;
  place-items: center;
  color: var(--secondary);
  font-size: 1.3rem;
  box-shadow: var(--sh-md);
}
.ai-illustration .laptop {
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 60%;
  border-radius: 14px;
  box-shadow: var(--sh-lg);
}
.ai-illustration .a-plane {
  position: absolute;
  top: 16%;
  left: -15%;
  font-size: 1.8rem;
  color: #fff;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
  z-index: 4;
}
.ai-illustration .a-cloud {
  position: absolute;
  opacity: 0.75;
}
.ai-mini-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-brd);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--sh-lg);
  color: var(--ink);
}
.ai-mini-card .t {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
}
.ai-mini-card .s {
  font-size: 0.72rem;
  color: var(--muted);
}
/* Default AI Trip Preview panel (shown before Generate) */
.ai-preview {
  position: relative;
  z-index: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #0b1220, #0e1a33);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #e2e8f0;
}
/* Hero */
.ai-preview .apv-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
}
.ai-preview .apv-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ai-preview .apv-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(11, 18, 32, 0.85),
    rgba(11, 18, 32, 0.35) 55%,
    rgba(11, 18, 32, 0.7)
  );
}
.ai-preview .apv-hero-top,
.ai-preview .apv-hero-btm {
  position: relative;
  z-index: 2;
}
.ai-preview .apv-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.ai-preview .apv-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #7dd3fc;
  background: rgba(14, 165, 233, 0.16);
  border: 1px solid rgba(125, 211, 252, 0.3);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.ai-preview .apv-ring {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(closest-side, rgba(11, 18, 32, 0.9) 78%, transparent 79%),
    conic-gradient(#10b981 96%, rgba(255, 255, 255, 0.16) 0);
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.35);
}
.ai-preview .apv-ring b {
  font-family: var(--font-head);
  font-size: 1.05rem;
  line-height: 1;
  color: #fff;
}
.ai-preview .apv-ring small {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.03em;
  color: #cbd5e1;
  margin-top: 2px;
}
.ai-preview .apv-hero-btm h3 {
  font-family: var(--font-head);
  color: #fff;
  margin: 0 0 4px;
  font-size: 1.4rem;
}
.ai-preview .apv-stars {
  color: #fbbf24;
  font-size: 0.82rem;
  letter-spacing: 2px;
}
.ai-preview .apv-perfect {
  display: block;
  margin-top: 4px;
  color: #34d399;
  font-weight: 600;
  font-size: 0.86rem;
}
/* Stats */
.ai-preview .apv-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.ai-preview .apv-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 8px 9px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ai-preview .apv-stat .ic {
  color: #7dd3fc;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.ai-preview .apv-stat small {
  font-size: 0.66rem;
  color: #94a3b8;
}
.ai-preview .apv-stat b {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.1;
}
.ai-preview .apv-stat b.g {
  color: #34d399;
}
.ai-preview .apv-stat .s {
  font-size: 0.68rem;
  color: #cbd5e1;
}
.ai-preview .apv-stat .s2 {
  font-size: 0.64rem;
  color: #64748b;
}
/* Middle — two equal columns (col-6 / col-6) so the panel stays compact */
.ai-preview .apv-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ai-preview .apv-creating,
.ai-preview .apv-itin {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 11px 12px;
}
.ai-preview .apv-creating {
  position: relative;
  overflow: hidden;
}
.ai-preview .apv-mtitle {
  font-size: 0.82rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 9px;
}
.ai-preview .apv-mtitle i {
  color: #7dd3fc;
}
.ai-preview .apv-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ai-preview .apv-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #cbd5e1;
}
.ai-preview .apv-steps li.done i {
  color: #34d399;
}
.ai-preview .apv-steps li.live {
  color: #7dd3fc;
  font-weight: 500;
}
.ai-preview .apv-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(125, 211, 252, 0.4);
  border-top-color: #38bdf8;
  animation: apvSpin 0.9s linear infinite;
  flex: 0 0 auto;
}
@keyframes apvSpin {
  to {
    transform: rotate(360deg);
  }
}
.ai-preview .apv-globe {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  color: rgba(56, 189, 248, 0.5);
  font-size: 3.4rem;
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.4));
}
.ai-preview .apv-orbit {
  position: absolute;
  inset: 0;
  animation: apvOrbit 6s linear infinite;
}
.ai-preview .apv-orbit i {
  position: absolute;
  top: -4px;
  left: 50%;
  font-size: 0.9rem;
  color: #e2e8f0;
}
@keyframes apvOrbit {
  to {
    transform: rotate(360deg);
  }
}
/* Itinerary */
.ai-preview .apv-ihead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  color: #fff;
}
.ai-preview .apv-days {
  font-size: 0.66rem;
  color: #7dd3fc;
  background: rgba(14, 165, 233, 0.16);
  padding: 3px 8px;
  border-radius: 999px;
}
.ai-preview .apv-ilist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ai-preview .apv-ilist li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-preview .apv-ilist img {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  object-fit: cover;
  flex: 0 0 auto;
}
.ai-preview .apv-ilist .d {
  font-size: 0.66rem;
  color: #94a3b8;
  min-width: 34px;
}
.ai-preview .apv-ilist .t {
  font-size: 0.76rem;
  color: #e2e8f0;
}
/* Footer — info stacks on the left, Trip Highlights pinned top-right */
.ai-preview .apv-foot {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 10px 12px;
}
.ai-preview .apv-highlights {
  position: absolute;
  top: 10px;
  right: 12px;
  text-align: right;
}
.ai-preview .apv-highlights .apv-thumbs {
  justify-content: flex-end;
}
.ai-preview .apv-fcol small {
  display: block;
  font-size: 0.66rem;
  color: #94a3b8;
  margin-bottom: 3px;
}
.ai-preview .apv-fcol > b {
  font-family: var(--font-head);
  color: #fff;
  font-size: 0.95rem;
  display: block;
}
.ai-preview .apv-fcol span {
  font-size: 0.68rem;
  color: #cbd5e1;
}
.ai-preview .apv-tip small i {
  color: #fbbf24;
}
.ai-preview .apv-thumbs {
  display: flex;
  align-items: center;
}
.ai-preview .apv-thumbs img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0e1a33;
  margin-left: -8px;
}
.ai-preview .apv-thumbs img:first-child {
  margin-left: 0;
}
.ai-preview .apv-more {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.64rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad, linear-gradient(135deg, #6366f1, #8b5cf6));
  border: 2px solid #0e1a33;
  margin-left: -8px;
}

/* Narrow column (small desktop 2-col grid, tablet & phone): stack for readability.
   Uses the .ai-visual container width, not the viewport, so it works in every layout. */
@container aivisual (max-width: 600px) {
  .ai-preview .apv-foot {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ai-preview .apv-creating .apv-globe {
    right: 10px;
    bottom: 10px;
    width: 64px;
    height: 64px;
    font-size: 2.4rem;
  }
}
@container aivisual (max-width: 480px) {
  .ai-preview .apv-stats {
    grid-template-columns: 1fr 1fr;
  }
  .ai-preview .apv-hero-btm h3 {
    font-size: 1.25rem;
  }
  /* Only stack the two middle cards on genuinely narrow (phone) widths */
  .ai-preview .apv-mid {
    grid-template-columns: 1fr;
  }
}
@container aivisual (max-width: 340px) {
  .ai-preview .apv-stats {
    grid-template-columns: 1fr;
  }
}
/* Fallback for browsers without container-query support */
@supports not (container-type: inline-size) {
  @media (max-width: 1200px) and (min-width: 641px) {
    .ai-preview .apv-foot {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 640px) {
    .ai-preview .apv-stats {
      grid-template-columns: 1fr 1fr;
    }
    .ai-preview .apv-mid,
    .ai-preview .apv-foot {
      grid-template-columns: 1fr;
    }
  }
}

.ai-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}
.ai-particles.show {
  opacity: 1;
}
.ai-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 10px #38bdf8;
}

/* Result card (replaces visual) */
.ai-result {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
}
.ai-result.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.ai-result .r-media {
  position: relative;
  height: 170px;
  flex: 0 0 auto;
}
.ai-result .r-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-result .r-media .r-badge {
  position: absolute;
  top: 14px;
  left: 14px;
}
.ai-result .r-media .r-title {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
}
.ai-result .r-media .r-title h3 {
  color: #fff;
  margin: 0;
  font-size: 1.4rem;
}
.ai-result .r-media .r-title small {
  opacity: 0.9;
}
.ai-result .r-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(15, 23, 42, 0.75));
}
.ai-result .r-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.r-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.r-grid .rg {
  background: var(--bg);
  border-radius: 12px;
  padding: 10px;
}
.r-grid .rg small {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.r-grid .rg strong {
  font-family: var(--font-head);
  font-size: 0.92rem;
}
.r-block {
  margin-bottom: 16px;
}
.r-block h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--secondary);
  margin-bottom: 8px;
}
.r-line {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.r-line:last-child {
  border: 0;
}
.r-line .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grad-soft);
  color: var(--secondary);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.r-line .k {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
}
.r-line .s {
  font-size: 0.78rem;
  color: var(--muted);
}
.r-timeline .rt {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.r-timeline .rt .day {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  flex: 0 0 46px;
  font-size: 0.8rem;
}
.r-timeline .rt p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.r-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.r-actions {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  flex: 0 0 auto;
  background: #fff;
}
.r-actions .btn {
  flex: 1;
}

/* ============================================================
   PACK YOUR SUITCASE
   ============================================================ */
.pack-sec {
  position: relative;
  overflow: hidden;
  background: #0b1220;
  color: #fff;
}
.pack-sec .grad-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.22),
    transparent 65%
  );
  top: 0;
  left: 30%;
  filter: blur(30px);
  z-index: 0;
  transition: opacity 1s;
}
.pack-sec .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #7dd3fc;
}
.pack-sec .section-head h2 {
  color: #fff;
}
.pack-sec .section-head .lead {
  color: #94a3b8;
}
.pack-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  transition:
    grid-template-columns 0.7s var(--ease),
    gap 0.7s var(--ease);
}
/* once everything is packed, the essentials column is empty — collapse it so
   the suitcase / success card animates to the centre of the section */
.pack-grid.is-done {
  grid-template-columns: 0fr minmax(0, 600px);
  gap: 0;
  justify-content: center;
}
.pack-grid.is-done .essentials-grid {
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.pack-grid.is-done .suitcase-stage {
  width: 100%;
}

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pack-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-md);
  padding: 16px 8px;
  text-align: center;
  color: var(--ink);
  cursor: grab;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s;
  position: relative;
  user-select: none;
}
.pack-item:hover {
  transform: translateY(-6px) rotate(-2deg) scale(1.04);
  box-shadow: var(--sh-glow);
}
.pack-item i {
  font-size: 1.5rem;
  color: var(--secondary);
  display: block;
  margin-bottom: 8px;
}
.pack-item span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.76rem;
  display: block;
}
.pack-item.dragging {
  cursor: grabbing;
  z-index: 200;
  box-shadow: var(--sh-lg);
}
.pack-item.packed {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.3);
}
.pack-item.tap-hint::after {
  content: "Tap";
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 0.6rem;
  background: var(--grad);
  color: #fff;
  padding: 2px 6px;
  border-radius: 8px;
}

/* Suitcase stage */
.suitcase-stage {
  position: relative;
  height: 520px;
  display: grid;
  place-items: center;
}
.suitcase-path {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.suitcase-path path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2;
  stroke-dasharray: 7 7;
}
.pack-plane {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.6rem;
  color: #fff;
  z-index: 6;
  opacity: 0;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
}
.pack-cloud {
  position: absolute;
  opacity: 0.5;
  z-index: 2;
}

.suitcase {
  position: relative;
  max-width: 450px;
  width: 100%;
  height: 330px;
  z-index: 3;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
}
.suitcase .body {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 270px;
  border-radius: 22px;
  background: linear-gradient(160deg, #38bdf8, #0ea5e9 60%, #2563eb);
  box-shadow:
    inset 0 -8px 20px rgba(0, 0, 0, 0.2),
    inset 0 6px 14px rgba(255, 255, 255, 0.25);
}
.suitcase .body::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
}
.suitcase .lid {
  position: absolute;
  top: 0;
  width: 100%;
  height: 78px;
  border-radius: 22px 22px 6px 6px;
  /* premium blue gradient (matches the template palette) + faint glass wash */
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%),
    linear-gradient(165deg, #3b82f6 0%, #2563eb 54%, #1d4ed8 100%);
  transform-origin: bottom center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.5),        /* crisp lit top edge */
    inset 0 -15px 22px rgba(3, 7, 40, 0.34),         /* inner shadow for depth */
    0 11px 16px rgba(3, 7, 40, 0.32);                /* shadow where lid meets body */
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 4;
}
/* soft glossy highlight along the top edge (subtle, not too glossy) */
.suitcase .lid::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 12px;
  right: 12px;
  height: 22px;
  border-radius: 16px 16px 40px 40px / 14px 14px 34px 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.05) 72%, transparent);
  pointer-events: none;
}
.suitcase .handle {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 30px;
  border: 7px solid #d7e3f4;                          /* soft brushed-metal */
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: transparent;
  box-shadow:
    inset 0 3px 3px rgba(255, 255, 255, 0.75),
    inset 0 -2px 3px rgba(3, 7, 40, 0.18),
    0 4px 8px rgba(3, 7, 40, 0.38);
  z-index: 3;
}
/* metallic hinges at the lid / body seam (decorative, non-animated) */
.suitcase .lid-hinge {
  position: absolute;
  top: 60px;
  width: 15px;
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(180deg, #f1f5f9 0%, #cbd5e1 45%, #94a3b8 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.85),
    inset 0 -2px 3px rgba(3, 7, 40, 0.25),
    0 2px 4px rgba(3, 7, 40, 0.45);
  z-index: 5;
}
.suitcase .lid-hinge.left { left: 13%; }
.suitcase .lid-hinge.right { right: 13%; }
.suitcase .lid-hinge::before,
.suitcase .lid-hinge::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(3, 7, 40, 0.4);
}
.suitcase .lid-hinge::before { top: 4px; }
.suitcase .lid-hinge::after { bottom: 4px; }
.suitcase .lock {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(#fde68a, #f59e0b);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: grid;
  place-items: center;
  color: #7c2d12;
  font-size: 0.7rem;
}
.suitcase .sticker {
  position: absolute;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.6rem;
  padding: 3px 6px;
  transform: rotate(-8deg);
  z-index: 5;
  color: #fff;
}
.suitcase .st1 {
  top: 96px;
  left: 24px;
  background: #ef4444;
  transform: rotate(-12deg);
}
.suitcase .st2 {
  top: 120px;
  right: 22px;
  background: #10b981;
  transform: rotate(9deg);
}
.suitcase .fill {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10px;
  height: 0;
  border-radius: 10px;
  background: linear-gradient(#fbbf24, #f59e0b);
  z-index: 3;
  transition: height 0.5s var(--ease);
  opacity: 0.9;
}
.suitcase.glow {
  animation: sglow 1.2s var(--ease);
}
@keyframes sglow {
  0%,
  100% {
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(14, 165, 233, 0.9));
  }
}
.suitcase.bounce {
  animation: sbounce 0.5s var(--ease);
}
@keyframes sbounce {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-14px);
  }
  70% {
    transform: translateY(4px);
  }
}

/* Circular progress */
.pack-ring {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  z-index: 5;
}
.pack-ring svg {
  transform: rotate(-90deg);
}
.pack-ring .track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 9;
}
.pack-ring .bar {
  fill: none;
  stroke: url(#packGrad);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 326;
  stroke-dashoffset: 326;
  transition: stroke-dashoffset 0.6s var(--ease);
}
.pack-ring .pct {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
}

/* Notifications */
.pack-notes {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
  pointer-events: none;
}
.pack-note {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: var(--sh-lg);
  color: var(--ink);
  display: flex;
  gap: 12px;
  align-items: center;
  transform: translateX(120%);
  opacity: 0;
}
.pack-note .ic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.pack-note strong {
  font-family: var(--font-head);
  font-size: 0.85rem;
  display: block;
}
.pack-note small {
  color: var(--muted);
  font-size: 0.78rem;
}

/* Passport + stamp + boarding pass */
.pack-passport {
  position: absolute;
  z-index: 7;
  width: 150px;
  height: 200px;
  border-radius: 12px;
  background: linear-gradient(160deg, #1e3a8a, #1e40af);
  box-shadow: var(--sh-lg);
  left: 50%;
  top: 50%;
  transform: translate(-50%, 60px) scale(0.6);
  opacity: 0;
  display: grid;
  place-items: center;
  color: #fbbf24;
  border: 2px solid rgba(251, 191, 36, 0.4);
}
.pack-passport .p-inner {
  text-align: center;
}
.pack-passport i {
  font-size: 2rem;
}
.pack-passport small {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.6rem;
  margin-top: 8px;
  color: #fde68a;
}
.pack-stamp {
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-18deg) scale(2);
  opacity: 0;
  color: #ef4444;
  border: 4px solid #ef4444;
  border-radius: 10px;
  padding: 6px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.boarding-pass {
  position: absolute;
  z-index: 6;
  width: 230px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--sh-lg);
  left: 50%;
  top: 50%;
  transform: translate(-50%, 20px);
  opacity: 0;
  overflow: hidden;
  color: var(--ink);
}
.boarding-pass .bp-top {
  background: var(--grad);
  color: #fff;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 700;
}
.boarding-pass .bp-body {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.boarding-pass .bp-body .code {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
}

/* Confetti */
.confetti {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  overflow: hidden;
}
.confetti span {
  position: absolute;
  width: 9px;
  height: 14px;
  top: -20px;
  opacity: 0;
}

/* Success card */
.pack-success {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: min(360px, 86%);
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-brd);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 28px;
  text-align: center;
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
}
.pack-success.show {
  opacity: 1;
  visibility: visible;
}
.pack-success .badge-ok {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: var(--sh-glow);
}
.pack-success h3 {
  font-family: var(--font-head);
  margin: 0 0 4px;
}
.pack-success .ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
}
.pack-success .ps-grid div {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 10px;
}
.pack-success .ps-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  text-transform: uppercase;
}
.pack-success .ps-grid strong {
  font-family: var(--font-head);
}

/* Final adventure overlay */
.adventure-final {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: linear-gradient(160deg, #0b1220, #0e1a33);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.adventure-final.show {
  opacity: 1;
  visibility: visible;
}
.adventure-final .af-plane {
  position: absolute;
  font-size: 2.4rem;
  color: #fff;
  z-index: 3;
  top: 30%;
  left: -12%;
}
.adventure-final .af-cloud {
  position: absolute;
  opacity: 0.5;
}
.adventure-final svg.af-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.adventure-final svg.af-route path {
  fill: none;
  stroke: rgba(125, 211, 252, 0.7);
  stroke-width: 2.5;
  stroke-dasharray: 9 9;
}
.adventure-final .af-inner {
  position: relative;
  z-index: 4;
  padding: 24px;
}
.adventure-final h2 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 22px;
}
.adventure-final .af-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 5;
  color: #fff;
  font-size: 1.6rem;
  opacity: 0.7;
}

/* Responsive — new sections */
@media (max-width: 991px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }
  .ai-visual {
    min-height: 440px;
    order: -1;
  }
  .pack-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .essentials-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .pack-notes {
    width: 260px;
    right: 14px;
  }
}
@media (max-width: 640px) {
  .ai-form .field-row,
  .ai-styles {
    grid-template-columns: 1fr 1fr;
  }
  .r-grid {
    grid-template-columns: 1fr 1fr;
  }
  .essentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .suitcase {
    width: 240px;
    height: 200px;
  }
  .suitcase .body {
    height: 150px;
  }
  .pack-notes {
    top: 80px;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* =========================================================
   PREMIUM POLISH LAYER — flagship UI/UX pass
   Global hover depth, gradient-glow rings, button shine,
   glass refinement. Appended last to refine components.
   ========================================================= */

/* ---- consistent, deeper card interactions ---- */
.pd-card,
.mood-card,
.feature-card,
.exp-card,
.blog-card,
.testi-card,
.ai-mini-card,
.tour-card,
.jn-card {
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    border-color 0.35s;
}
/* While a filter tween is running GSAP writes `transform` every frame; the
   CSS transition above would re-interpolate each write and cause rubber-banding. */
.is-filtering {
  transition: none !important;
}
.mood-card:hover,
.feature-card:hover,
.blog-card:hover,
.exp-card:hover,
.pd-card:hover,
.testi-card:hover,
.ai-mini-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.13),
    0 0 0 1.5px rgba(14, 165, 233, 0.25),
    0 22px 50px rgba(37, 99, 235, 0.16);
}
/* tour cards use VanillaTilt for transform — only deepen shadow + glow */
.tour-card:hover {
  box-shadow:
    0 34px 66px rgba(15, 23, 42, 0.16),
    0 0 0 1.5px rgba(14, 165, 233, 0.28),
    0 24px 55px rgba(37, 99, 235, 0.18);
}
.tour-card .tour-media {
  overflow: hidden;
}
.tour-card .tour-media img {
  transition: transform 0.7s var(--ease);
}
.tour-card:hover .tour-media img {
  transform: scale(1.08);
}
/* timeline cards keep their slide, gain depth */
.tl-card:hover {
  box-shadow:
    0 24px 50px rgba(15, 23, 42, 0.12),
    0 0 0 1.5px rgba(14, 165, 233, 0.2);
}

/* ---- premium button: light-sweep shine + JS ripple ---- */
.btn {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::after {
  left: 140%;
}
.btn .btn-ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  animation: btnRipple 0.6s ease-out forwards;
}
@keyframes btnRipple {
  to {
    transform: translate(-50%, -50%) scale(12);
    opacity: 0;
  }
}

/* ---- glass refinement (subtle inner highlight) ---- */
.testi-card,
.ai-mini-card {
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ---- airier, consistent section headings ---- */
.section-head.text-center {
  margin-bottom: 46px;
}
.section-head.text-center .lead {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- animated star-rating (testimonials / cards) ---- */
.stars-anim i {
  animation: starPop 0.5s var(--ease) backwards;
}
.stars-anim i:nth-child(1) {
  animation-delay: 0.05s;
}
.stars-anim i:nth-child(2) {
  animation-delay: 0.12s;
}
.stars-anim i:nth-child(3) {
  animation-delay: 0.19s;
}
.stars-anim i:nth-child(4) {
  animation-delay: 0.26s;
}
.stars-anim i:nth-child(5) {
  animation-delay: 0.33s;
}
@keyframes starPop {
  from {
    opacity: 0;
    transform: scale(0) rotate(-30deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary::after,
  .stars-anim i {
    animation: none;
    transition: none;
  }
}

/* ---- Journey: labeled timeline + scroll hint ---- */
.journey-progress {
  bottom: 84px;
  gap: 18px;
  align-items: flex-start;
}
.journey-progress .jn-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.journey-progress em {
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.45);
  transition:
    color 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.journey-progress .jn-step:has(.dot.active) em {
  color: #fff;
  transform: translateY(-1px);
}
.journey-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  transition: opacity 0.45s var(--ease);
}
.journey-scroll span:last-child {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.jn-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  position: relative;
}
.jn-wheel {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 8px;
  border-radius: 3px;
  background: #fff;
  transform: translateX(-50%);
  animation: jnWheel 1.6s ease-in-out infinite;
}
@keyframes jnWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, -4px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .jn-wheel {
    animation: none;
  }
}

/* =========================================================
   TRAVEL JOURNAL (blog) — bento redesign
   ========================================================= */
.blog-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 22px;
}
.blog-card.feature {
  grid-row: 1 / span 2;
  grid-column: 1;
}

/* feature = full-bleed image with overlay content */
.bc-feature {
  position: relative;
  border: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
}
.bc-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.bc-feature:hover img {
  transform: scale(1.06);
}
.bc-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 15, 35, 0.94) 4%,
    rgba(6, 15, 35, 0.55) 40%,
    rgba(6, 15, 35, 0.04) 74%
  );
}
.bc-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 30px;
  color: #fff;
}
.bc-overlay h3 {
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.25;
  margin: 12px 0 10px;
}
.bc-overlay p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 18px;
  max-width: 92%;
}
.bc-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 16px;
}
.bc-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bc-author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.bc-author small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}
.bc-author strong {
  color: #fff;
}
.bc-foot .bc-meta {
  display: flex;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}
.bc-read {
  margin-left: auto;
  padding: 11px 20px;
  font-size: 0.9rem;
}

/* badges + save */
.bc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}
.bc-save {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: 0.3s var(--ease);
}
.bc-save:hover,
.bc-save.on {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.08);
}
.bc-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  color: #fff;
}

/* small cards */
.bc-sm {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bc-sm .bc-media {
  position: relative;
  height: 152px;
  overflow: hidden;
}
.bc-sm .bc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.bc-sm:hover .bc-media img {
  transform: scale(1.08);
}
.bc-sm .bc-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.bc-sm .bc-save {
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  font-size: 0.8rem;
}
.bc-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bc-body .bc-meta {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 0.77rem;
  margin-bottom: 8px;
}
.bc-body h3 {
  font-size: 1.02rem;
  line-height: 1.35;
  margin: 0 0 12px;
}
.bc-more {
  margin-top: auto;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--secondary);
}
.bc-more i {
  transition: transform 0.3s var(--ease);
}
.bc-sm:hover .bc-more i {
  transform: translateX(4px);
}

/* ---------- Back to top ----------
   Sits beside the chat widget on desktop and above it on mobile. */
.to-top {
  position: fixed;
  right: 104px;
  bottom: 30px;
  z-index: 9400;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 16px 34px rgba(37, 99, 235, 0.34),
    0 5px 14px rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.92);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s var(--ease),
    box-shadow 0.25s ease;
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.to-top:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 22px 44px rgba(37, 99, 235, 0.42),
    0 7px 18px rgba(15, 23, 42, 0.2);
}
.to-top i {
  font-size: 1rem;
}
@media (max-width: 640px) {
  .to-top {
    right: 21px;
    bottom: 92px;
    width: 46px;
    height: 46px;
  }
}

/* category accents */
.c-guide .bc-cat {
  background: #ec4899;
}
.c-guide .bc-more {
  color: #db2777;
}
.c-tips .bc-cat {
  background: #06b6d4;
}
.c-tips .bc-more {
  color: #0891b2;
}
.c-budget .bc-cat {
  background: #f59e0b;
}
.c-budget .bc-more {
  color: #d97706;
}
.c-adventure .bc-cat {
  background: #7c3aed;
}
.c-adventure .bc-more {
  color: #7c3aed;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-card.feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 340px;
  }
}
@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .bc-overlay {
    padding: 22px;
  }
  .bc-overlay h3 {
    font-size: 1.25rem;
  }
  .bc-read {
    margin-left: 0;
  }
}

/* ============================================================
   Cursor accent — a precise dot + a soft trailing ring next to
   the NATIVE pointer (default cursor stays visible). Desktop
   mice only.
   ============================================================ */
.scursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  border: 1.5px solid rgba(14, 165, 233, 0.55);
  background: rgba(14, 165, 233, 0.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 12px rgba(14, 165, 233, 0.25);
  pointer-events: none;
  z-index: 100000;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    width 0.22s var(--ease),
    height 0.22s var(--ease),
    margin 0.22s var(--ease),
    background 0.22s ease,
    border-color 0.22s ease;
  will-change: transform;
}
.scursor.is-on { opacity: 1; }
.scursor.is-hover {
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 0 20px rgba(37, 99, 235, 0.35);
}
.scursor.is-down {
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  background: rgba(37, 99, 235, 0.16);
}

/* precise centre dot — sits near the pointer tip */
.scursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7dd3fc, #0ea5e9 60%, #2563eb);
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.7);
  pointer-events: none;
  z-index: 100001;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.12s ease, width 0.2s var(--ease), height 0.2s var(--ease), margin 0.2s var(--ease);
  will-change: transform;
}
.scursor-dot.is-on { opacity: 1; }
.scursor-dot.is-hover {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
}
.scursor-dot.is-down {
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
}
@media (hover: none), (pointer: coarse) {
  .scursor, .scursor-dot { display: none; }
}

/* ============================================================
   HERO v3 — image banner (blue theme)
   ============================================================ */
.hero-v3 {
  position: relative;
  display: block;
  min-height: 0;
  padding: 120px 0 64px;
  background: var(--bg);
  overflow: hidden;
}
.hero-v3 .hv3-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom:0;
  /* height: 660px; */
  z-index: 0;
}
.hero-v3 .hv3-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-v3 .hv3-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      96deg,
      var(--bg) 4%,
      rgba(248, 250, 252, 0.82) 24%,
      rgba(248, 250, 252, 0.2) 46%,
      transparent 60%
    ),
    linear-gradient(
      to bottom,
      transparent 52%,
      rgba(248, 250, 252, 0.6) 82%,
      var(--bg) 100%
    );
}

/* top: copy + floating cards */
.hero-v3 .hv3-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  min-height: 320px;
}
.hero-v3 .hv3-copy .eyebrow {
  margin-bottom: 4px;
}
.gt-main{
  position: relative;
}
.hero-v3 .hv3-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6.2vw, 7.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
}
.hero-v3 .hv3-copy .lead {
  max-width: 44ch;
  color: var(--ink);
  opacity: 0.9;
}
.hero-v3 .hv3-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  margin-top: 28px;
}
.hero-v3 .hv3-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-v3 .hv3-stat .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--sh-sm);
  font-size: 1.05rem;
}
.hero-v3 .hv3-stat b {
  font-family: var(--font-head);
  font-size: 1.45rem;
  line-height: 1;
  display: block;
}
.hero-v3 .hv3-stat small {
  color: var(--muted);
  font-size: 0.82rem;
}

/* decorations: dotted grid + hot-air balloon */
.hero-v3 .hv3-dots {
  position: absolute;
  top: 92px;
  right: 5%;
  width: 104px;
  height: 76px;
  z-index: 1;
  background-image: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.4) 2px,
    transparent 2.4px
  );
  background-size: 19px 18px;
  opacity: 0.8;
  pointer-events: none;
}
.hero-v3 .hv3-balloon {
  position: absolute;
  top: 196px;
  right: 3%;
  width: 84px;
  z-index: 1;
  filter: drop-shadow(0 14px 22px rgba(15, 23, 42, 0.25));
  animation: hbFloat 6.5s ease-in-out infinite;
  pointer-events: none;
}
.hero-v3 .hv3-balloon svg {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes hbFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

/* AI + weather cards */
.hero-v3 .hv3-cards {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  padding-right: 96px;
}
.hero-v3 .hv3-ai {
  width: min(380px, 100%);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
}
.hero-v3 .hv3-ai-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero-v3 .hv3-ai-head i {
  color: #6366f1;
}
.hero-v3 .hv3-ai-body {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hero-v3 .hv3-ai-sub {
  color: var(--muted);
  font-size: 0.82rem;
}
.hero-v3 .hv3-ai-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 3px 0 8px;
}
.hero-v3 .hv3-ai-text p {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0 0 14px;
  line-height: 1.45;
}
.hero-v3 .hv3-ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.12);
  color: var(--secondary);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  transition:
    background 0.2s,
    color 0.2s;
}
.hero-v3 .hv3-ai-btn:hover {
  background: var(--grad);
  color: #fff;
}
.hero-v3 .hv3-ai-body img {
  width: 96px;
  height: 116px;
  object-fit: cover;
  border-radius: 14px;
  flex: 0 0 auto;
}
.hero-v3 .hv3-weather {
  width: 214px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  padding: 16px 20px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 14px;
  margin-right: -180px;
}
.hero-v3 .hv3-weather .wx {
  font-size: 2.2rem;
  color: #f59e0b;
}
.hero-v3 .hv3-wx-main {
  text-align: right;
}
.hero-v3 .hv3-weather .temp {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
.hero-v3 .hv3-weather .cond {
  color: var(--muted);
  font-size: 0.85rem;
}
.hero-v3 .hv3-wx-loc {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.84rem;
  margin-top: 8px;
}

/* bottom row: search (left) + destination slider (right) */
.hero-v3 .hv3-bottom {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 24px;
}

/* destination slider — centered, active card pops up */
.hero-v3 .hv3-dest {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 30px 0;
}
.hero-v3 .hv3-swiper {
  overflow: visible;
  /* keep the popped/active card free vertically, but clip side-neighbours
     at the column edges so they never spill onto the search box (30px gap) */
  /* clip-path: inset(-90px 0 -90px 0); */
}
.hero-v3 .hv3-swiper .swiper-slide {
  max-width: 305px;
  width: 100%;
  height: auto;
  transition:
    transform 0.45s var(--ease),
    opacity 0.45s ease;
  transform: scale(0.9);
  opacity: 0.72;
}
.hero-v3 .hv3-swiper .swiper-slide-active {
  transform: scale(1.06);
  opacity: 1;
  z-index: 3;
}
.hero-v3 .hv3-swiper .swiper-slide-active .hv3-card {
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.28);
}
.hero-v3 .hv3-dest-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--secondary);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--sh-md);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.hero-v3 .hv3-dest-nav:hover {
  background: var(--grad);
  color: #fff;
}
.hero-v3 .hv3-dest-nav.next {
  right: -20px;
}
.hero-v3 .hv3-dest-nav.prev {
  left: -20px;
}
.hero-v3 .hv3-dest-nav.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.hero-v3 .hv3-card {
  display: block;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  /* box-shadow: var(--sh-lg); */
  height: 100%;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.hero-v3 .hv3-card:hover {
  transform: translateY(-6px);
  /* box-shadow: var(--sh-lg); */
}
.hero-v3 .hv3-card-media {
  position: relative;
  height: 158px;
}
.hero-v3 .hv3-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-v3 .hv3-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 11px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-v3 .hv3-badge.trending {
  background: var(--primary);
}
.hero-v3 .hv3-badge.popular {
  background: #6366f1;
}
.hero-v3 .hv3-badge.new {
  background: var(--success);
}
.hero-v3 .hv3-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--sh-sm);
}
.hero-v3 .hv3-card-body {
  padding: 14px 16px 16px;
}
.hero-v3 .hv3-rate {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
  font-weight: 700;
  font-size: 0.76rem;
  padding: 3px 9px;
  border-radius: 8px;
}
.hero-v3 .hv3-rate small {
  color: var(--muted);
  font-weight: 500;
}
.hero-v3 .hv3-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin: 9px 0 9px;
}
.hero-v3 .hv3-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-v3 .hv3-card-foot .loc {
  color: var(--muted);
  font-size: 0.82rem;
}
.hero-v3 .hv3-card-foot .price {
  color: var(--muted);
  font-size: 0.82rem;
}
.hero-v3 .hv3-card-foot .price b {
  color: var(--secondary);
  font-size: 1rem;
}

/* search bar (left) */
.hero-v3 .hv3-search {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--sh-lg);
    padding: 18px;
    width: 100%;
    margin-top: 10px;
    max-width:1130px;
}
.hero-v3 .hv3-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.hero-v3 .hv3-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-v3 .hv3-tabs button:hover {
  color: var(--ink);
  border-color: var(--primary);
}
.hero-v3 .hv3-tabs button.on {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-sm);
}
.hero-v3 .hv3-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  align-items: end;
}
.hero-v3 .hv3-field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}
.hero-v3 .hv3-field .in {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  background: var(--bg);
}
.hero-v3 .hv3-field .in i {
  color: var(--primary);
  font-size: 0.9rem;
}
.hero-v3 .hv3-field input,
.hero-v3 .hv3-field select {
  border: 0;
  background: transparent;
  outline: none;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  font-size: 0.9rem;
}
.hero-v3 .hv3-search-btn {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grad);
  color: #fff;
  border-radius: 12px;
  padding: 0 24px;
  min-height: 48px;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.28);
}
/* Full-width hero search: lay the 4 fields + button out as one booking bar */
@media (min-width: 992px) {
  .hero-v3 .hv3-fields {
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  }
  .hero-v3 .hv3-search-btn {
    grid-column: auto;
    align-self: end;
    padding: 0 34px;
  }
}
.hero-v3 .hv3-trust {
  display: flex;
  gap: 12px 28px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.hero-v3 .hv3-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}
.hero-v3 .hv3-trust i {
  color: var(--success);
}

/* feature strip */
.hero-v3 .hv3-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--sh-md);
  padding: 22px 12px;
  position: relative;
  z-index: 2;
}
.hero-v3 .hv3-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}
.hero-v3 .hv3-feat:not(:last-child) {
  border-right: 1px solid var(--line);
}
.hero-v3 .hv3-feat .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex: 0 0 auto;
}
.hero-v3 .hv3-feat b {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
}
.hero-v3 .hv3-feat small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

/* ---- responsive ---- */
@media (max-width: 1100px) {
  .hero-v3 .hv3-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 6px;
  }
  .hero-v3 .hv3-feat:nth-child(3) {
    border-right: 0;
  }
}
@media (max-width: 1200px) {
  .hero-v3 .hv3-dots,
  .hero-v3 .hv3-balloon {
    display: none;
  }
  .hero-v3 .hv3-cards {
    padding-right: 0;
  }
  /* below 1200 the container is near full-width, so the -180px peek would
     shove the weather card mostly off-screen — keep it fully visible */
  .hero-v3 .hv3-weather {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  /* .hero-v3 .hv3-bg {
    height: 560px;
  } */
  /* stronger, top-weighted veil so the copy stays readable over the photo
     when it spans full-width on tablet/mobile */
  .hero-v3 .hv3-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(248, 250, 252, 0.72) 0%,
        rgba(248, 250, 252, 0.42) 26%,
        rgba(248, 250, 252, 0.12) 50%,
        var(--bg) 94%
      );
  }
  .hero-v3 .hv3-copy h1,
  .hero-v3 .hv3-copy .lead,
  .hero-v3 .hv3-stat {
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.6);
  }
  .hero-v3 .hv3-dots {
    display: none;
  }
  .hero-v3 .hv3-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-v3 .hv3-cards {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    padding-right: 0;
  }
  .hero-v3 .hv3-ai {
    width: min(360px, 100%);
  }
  .hero-v3 .hv3-bottom {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .hero-v3 .hv3-dest-nav.next {
    right: 4px;
  }
  .hero-v3 .hv3-dest-nav.prev {
    left: 4px;
  }
}
@media (max-width: 767px) {
  .hero-v3 {
    padding-top: 104px;
  }
  /* .hero-v3 .hv3-bg {
    height: 480px;
  } */
  .hero-v3 .hv3-features {
    grid-template-columns: 1fr 1fr;
    gap: 18px 6px;
  }
  .hero-v3 .hv3-feat {
    border-right: 0 !important;
  }
}
@media (max-width: 600px) {
  /* phones: hold a soft veil through the headline band for crisp legibility,
     then reveal the photo lower down where the cards sit on solid bg */
  .hero-v3 .hv3-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(248, 250, 252, 0.92) 0%,
        rgba(248, 250, 252, 0.78) 32%,
        rgba(248, 250, 252, 0.36) 50%,
        rgba(248, 250, 252, 0.1) 64%,
        var(--bg) 92%
      );
  }
  .hero-v3 .hv3-copy h1 {
    font-size: clamp(2.4rem, 11.5vw, 3.4rem);
  }
}
@media (max-width: 480px) {
  .hero-v3 .hv3-cards {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-v3 .hv3-weather {
    width: 100%;
  }
  .hero-v3 .hv3-fields {
    grid-template-columns: 1fr;
  }
  .hero-v3 .hv3-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Feature strip — standalone (moved below the newsletter)
   ============================================================ */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--sh-md);
  padding: 22px 12px;
  position: relative;
  z-index: 2;
}
.feature-strip .hv3-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}
.feature-strip .hv3-feat:not(:last-child) {
  border-right: 1px solid var(--line);
}
.feature-strip .hv3-feat .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex: 0 0 auto;
}
.feature-strip .hv3-feat b {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
}
.feature-strip .hv3-feat small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}
@media (max-width: 1100px) {
  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 6px;
  }
  .feature-strip .hv3-feat:nth-child(3) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .feature-strip {
    grid-template-columns: 1fr 1fr;
    gap: 18px 6px;
  }
  .feature-strip .hv3-feat {
    border-right: 0 !important;
  }
}
@media (max-width: 480px) {
  .feature-strip {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   Travel AI Assistant — floating chat widget
   ============================================================ */
.tvchat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9500;
  font-family: var(--font-body, inherit);
}

/* ---- floating action button ---- */
.tvchat-fab {
  position: relative;
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: var(--grad);
  color: #fff;
  box-shadow:
    0 14px 30px rgba(37, 99, 235, 0.42),
    0 4px 10px rgba(15, 23, 42, 0.18);
  display: grid;
  place-items: center;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.tvchat-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 20px 40px rgba(37, 99, 235, 0.5),
    0 6px 14px rgba(15, 23, 42, 0.2);
}
.tvchat-fab-ic,
.tvchat-fab-close {
  position: absolute;
  font-size: 1.5rem;
  transition:
    opacity 0.3s var(--ease),
    transform 0.35s var(--ease);
}
.tvchat-fab-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
  font-size: 1.55rem;
}
.tvchat.is-open .tvchat-fab-ic {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}
.tvchat.is-open .tvchat-fab-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}
.tvchat.is-open .tvchat-fab {
  background: #1e293b;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.32);
}
/* pulsing ring */
.tvchat-fab-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, 0.65);
  animation: tvPulse 2.6s ease-out infinite;
  pointer-events: none;
}
.tvchat.is-open .tvchat-fab-ring { display: none; }
@keyframes tvPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
/* unread badge */
.tvchat-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}
/* attention nudge */
.tvchat-fab.nudge { animation: tvNudge 1s ease-in-out 3; }
@keyframes tvNudge {
  0%, 100% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-6px) rotate(-8deg); }
  75% { transform: translateY(-6px) rotate(8deg); }
}

/* ---- chat panel ---- */
.tvchat-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.94);
  transform-origin: bottom right;
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease),
    transform 0.35s var(--ease);
}
.tvchat.is-open .tvchat-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* header */
.tvchat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  background: var(--grad);
  color: #fff;
  position: relative;
}
.tvchat-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120px 80px at 88% -20%, rgba(255, 255, 255, 0.28), transparent 70%);
  pointer-events: none;
}
.tvchat-ava {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  flex: 0 0 auto;
}
.tvchat-head-info { flex: 1 1 auto; line-height: 1.25; }
.tvchat-head-info b { font-size: 0.98rem; display: block; }
.tvchat-status {
  font-size: 0.76rem;
  opacity: 0.92;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tvchat-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: tvOnline 2s ease-out infinite;
}
@keyframes tvOnline {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.tvchat-min {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.2s;
}
.tvchat-min:hover { background: rgba(255, 255, 255, 0.3); }

/* body / messages */
.tvchat-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 18px 16px 6px;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(14, 165, 233, 0.06), transparent 60%),
    var(--bg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.tvchat-body::-webkit-scrollbar { width: 7px; }
.tvchat-body::-webkit-scrollbar-thumb {
  background: rgba(100, 116, 139, 0.35);
  border-radius: 999px;
}

.tvchat-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 92%;
  animation: tvIn 0.35s var(--ease) both;
}
@keyframes tvIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.tvchat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.tvchat-mava {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}
.tvchat-bubble {
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}
.tvchat-msg.user .tvchat-bubble {
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 16px;
  border-bottom-right-radius: 5px;
}
.tvchat-bubble p { margin: 0 0 8px; }
.tvchat-bubble p:last-child { margin-bottom: 0; }
.tvchat-hint { color: var(--muted); font-size: 0.8rem; }
.tvchat-msg.user .tvchat-bubble .tvchat-hint { color: rgba(255, 255, 255, 0.85); }

/* typing indicator */
.tvchat-typing {
  display: inline-flex;
  gap: 4px;
  padding: 13px 14px;
}
.tvchat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.55;
  animation: tvBlink 1.3s infinite ease-in-out;
}
.tvchat-typing span:nth-child(2) { animation-delay: 0.18s; }
.tvchat-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes tvBlink {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-4px); opacity: 1; }
}

/* rich cards */
.tvchat-card {
  margin: 4px 0 2px;
  padding: 12px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.tvchat-list { margin: 4px 0 10px; padding-left: 2px; list-style: none; }
.tvchat-list li { padding: 3px 0; font-size: 0.86rem; }

/* budget card */
.tvb-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 3px;
}
.tvb-val { font-weight: 700; }
.tvb-bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.16);
  overflow: hidden;
  margin-bottom: 9px;
}
.tvb-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--grad);
  transition: width 0.9s var(--ease);
}
.tvb-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: 0.86rem;
}
.tvb-total b {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--secondary);
}

/* weather card */
.tvw-months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
  margin-bottom: 9px;
}
.tvw-m {
  text-align: center;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 6px 0;
  border-radius: 6px;
  color: var(--muted);
  background: rgba(100, 116, 139, 0.12);
}
.tvw-m.on {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.28);
}
.tvw-legend {
  display: flex;
  gap: 14px;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.tvw-legend .dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(100, 116, 139, 0.3);
  margin-right: 4px;
  vertical-align: middle;
}
.tvw-legend .dot.on { background: var(--secondary); }
.tvw-note {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink);
}
.tvw-note i { color: #f59e0b; margin-right: 4px; }

/* destination picks */
.tvchat-picks { display: grid; gap: 7px; margin: 6px 0 2px; }
.tvchat-pick {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s, border-color 0.2s;
}
.tvchat-pick:hover { transform: translateX(3px); border-color: rgba(14, 165, 233, 0.5); }
.tvp-flag { font-size: 1.25rem; }
.tvp-txt { display: flex; flex-direction: column; line-height: 1.2; }
.tvp-txt b { font-size: 0.86rem; }
.tvp-txt small { color: var(--muted); font-size: 0.74rem; }

/* inline CTA */
.tvchat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

/* quick-action chips */
.tvchat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 10px 14px 4px;
  background: #fff;
}
.tvchat-chip {
  flex: 0 1 auto;
  border: 1px solid rgba(14, 165, 233, 0.35);
  background: rgba(14, 165, 233, 0.08);
  color: var(--secondary);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.tvchat-chip i { margin-right: 5px; }
.tvchat-chip:hover { background: var(--grad); color: #fff; transform: translateY(-1px); }

/* input row */
.tvchat-input {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.tvchat-input input {
  flex: 1 1 auto;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tvchat-input input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}
.tvchat-input button {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: none;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.32);
  transition: transform 0.2s;
}
.tvchat-input button:hover { transform: scale(1.08); }

/* mobile */
@media (max-width: 480px) {
  .tvchat { right: 16px; bottom: 16px; }
  .tvchat-panel {
    width: calc(100vw - 24px);
    height: 70vh;
    bottom: 74px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tvchat-fab-ring, .tvchat-fab.nudge, .tvchat-status i { animation: none; }
}


/* ============================================================
   Travel AI Assistant — enhancements (badges, prompts, demos,
   empty-state globe, ripple). Reuses existing tokens/design.
   ============================================================ */

/* "AI is typing" label + dots */
.tvchat-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 11px 14px;
}
.tvchat-typing em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--muted);
  margin-right: 2px;
}

/* ---- empty-state intro block ---- */
.tvchat-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 2px 2px 4px;
  animation: tvIn 0.4s var(--ease) both;
}
.tvchat-intro.leaving {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* capability badges */
.tvchat-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tvchat-cap {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(14, 165, 233, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
  cursor: default;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.tvchat-cap:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.16);
}

/* empty-state dotted globe + orbiting plane */
.tvchat-globe {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 2px auto;
  opacity: 0.92;
}
.tvchat-globe-svg { width: 100%; height: 100%; display: block; animation: tvGlobeSpin 26s linear infinite; }
.tvchat-globe-orbit {
  position: absolute;
  inset: -3px;
  animation: tvGlobeOrbit 7s linear infinite;
}
.tvchat-globe-plane {
  position: absolute;
  top: -5px;
  left: 50%;
  font-size: 14px;
  transform: translateX(-50%) rotate(48deg);
  filter: drop-shadow(0 2px 3px rgba(37, 99, 235, 0.35));
}
@keyframes tvGlobeOrbit { to { transform: rotate(360deg); } }
@keyframes tvGlobeSpin { to { transform: rotate(360deg); } }

/* popular prompts */
.tvchat-pp-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.tvchat-pp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tvchat-pp-chip {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s var(--ease), border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.tvchat-pp-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.55);
  background: rgba(14, 165, 233, 0.06);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

/* ---- quick-action chips: add glow + smoother hover (size unchanged) ---- */
.tvchat-chip {
  position: relative;
  overflow: hidden;
}
.tvchat-chip:hover {
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

/* ---- ripple ---- */
.tvchat-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.4);
  transform: scale(0);
  opacity: 0.7;
  pointer-events: none;
  animation: tvRipple 0.6s ease-out forwards;
}
.tvchat-chip .tvchat-ripple,
.tvchat-input button .tvchat-ripple { background: rgba(255, 255, 255, 0.55); }
@keyframes tvRipple {
  to { transform: scale(2.3); opacity: 0; }
}

/* ---- new response cards ---- */
.tvb-cap {
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.tvb-month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 9px;
  border-top: 1px dashed var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}
.tvb-month b { color: var(--secondary); font-family: var(--font-head); }

/* itinerary */
.tvchat-itin { padding: 6px 12px; }
.tvi-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.83rem;
}
.tvi-row:last-child { border-bottom: none; }
.tvi-day {
  flex: 0 0 auto;
  font-weight: 700;
  color: #fff;
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: 7px;
  background: var(--grad);
  margin-top: 1px;
}
.tvi-txt { color: var(--ink); line-height: 1.4; }

/* hotels */
.tvchat-hotels { display: grid; gap: 7px; margin: 4px 0 2px; }
.tvchat-hotel {
  padding: 9px 11px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: transform 0.2s, border-color 0.2s;
}
.tvchat-hotel:hover { transform: translateX(3px); border-color: rgba(14, 165, 233, 0.5); }
.tvh-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.tvh-top b { font-size: 0.85rem; }
.tvh-rate {
  flex: 0 0 auto;
  font-size: 0.74rem;
  font-weight: 700;
  color: #b45309;
  background: rgba(245, 158, 11, 0.14);
  padding: 2px 8px;
  border-radius: 999px;
}
.tvh-rate i { color: #f59e0b; }
.tvh-bot { display: flex; justify-content: space-between; align-items: center; margin-top: 3px; }
.tvh-bot small { color: var(--muted); font-size: 0.76rem; }
.tvh-price { font-weight: 700; font-size: 0.8rem; color: var(--secondary); }

/* visa */
.tvchat-visa .tvv-status {
  font-size: 0.82rem;
  line-height: 1.45;
  padding-bottom: 9px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.tvv-status i { color: var(--success, #10b981); margin-right: 5px; }
.tvv-status small { color: var(--muted); }
.tvv-doc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  padding: 3px 0;
  color: var(--ink);
}
.tvv-doc i { color: var(--primary); font-size: 0.72rem; }

/* packing list */
.tvchat-pack { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
.tvpk-t { font-size: 0.78rem; font-weight: 700; margin-bottom: 4px; }
.tvpk-i {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--ink);
  padding: 2px 0;
  cursor: pointer;
}
.tvpk-i input {
  width: 14px;
  height: 14px;
  accent-color: var(--primary);
  flex: 0 0 auto;
}
.tvpk-i input:checked + span { color: var(--muted); text-decoration: line-through; }

/* CTA as a button (matches the existing link CTA) */
button.tvchat-cta {
  border: none;
  cursor: pointer;
  font-family: inherit;
}


/* ============================================================
   Journey in Motion — LEFT copy enrichment (ADDITIVE ONLY)
   Adds AI badge, rating, quick facts, CTA info, faint bg word,
   glass accent circles & floating travel decor. Nothing existing
   is modified — no impact on GSAP / scroll / plane / SVG / hover.
   ============================================================ */
.journey .jn-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.journey .jn-copy > * { position: relative; z-index: 1; }
.journey .jn-copy > .jn-decor { z-index: 0; }

/* --- faint oversized background word --- */
.jn-bgword {
  position: absolute;
  left: -4px;
  top: 44%;
  transform: translateY(-50%);
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: #fff;
  opacity: 0.045;
  white-space: nowrap;
  user-select: none;
}

/* --- decorative layer (glass circles + floating travel elements) --- */
.jn-decor {
  position: absolute;
  inset: -4% -6%;
  pointer-events: none;
  overflow: hidden;
}
.jn-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(56, 189, 248, 0.55), rgba(37, 99, 235, 0.30) 55%, transparent 72%);
  filter: blur(34px);
}
.jn-circle.cc1 { width: 240px; height: 240px; top: -30px; left: -70px; opacity: 0.5; }
.jn-circle.cc2 { width: 170px; height: 170px; bottom: -20px; left: 44%; opacity: 0.36; }

.jn-deco {
  position: absolute;
  color: #bae6fd;
  opacity: 0.12;
  animation: jnDecoFloat 8s ease-in-out infinite;
}
.jn-deco.dmap {
  width: 170px; height: 104px; top: 3%; right: 3%;
  background-image: radial-gradient(rgba(186, 230, 253, 0.9) 1.2px, transparent 1.5px);
  background-size: 11px 11px;
  opacity: 0.1;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 55%, transparent 74%);
  mask-image: radial-gradient(circle at 50% 50%, #000 55%, transparent 74%);
  animation-duration: 13s;
}
.jn-deco.dpin   { top: 15%; left: 1%; font-size: 1.4rem; animation-delay: 0.4s; }
.jn-deco.dpass  { bottom: 7%; right: 11%; font-size: 2.2rem; opacity: 0.09; animation-delay: 1s; animation-duration: 9.5s; }
.jn-deco.dboard { bottom: 20%; right: 1%; font-size: 1.8rem; opacity: 0.08; animation-delay: 1.6s; }
.jn-deco.dplane { top: 7%; left: 47%; font-size: 1.15rem; opacity: 0.14; animation-delay: 0.8s; }
.jn-deco.dstamp { bottom: 3%; left: 7%; font-size: 1.8rem; opacity: 0.09; animation-delay: 2s; animation-duration: 10s; }
.jn-deco.dspark { color: #fff; animation: jnTwinkle 3.4s ease-in-out infinite; }
.jn-deco.dspark::before { content: "\2726"; font-size: 12px; }
.jn-deco.ds1 { top: 28%; right: 22%; }
.jn-deco.ds2 { bottom: 30%; left: 30%; animation-delay: 1.2s; }

@keyframes jnDecoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes jnTwinkle { 0%, 100% { opacity: 0; transform: scale(0.5); } 50% { opacity: 0.55; transform: scale(1); } }

/* --- AI recommendation glass badge --- */
.jn-ai {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 26px rgba(14, 165, 233, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.jn-ai .jn-ai-ic {
  width: 38px; height: 38px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--grad);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}
.jn-ai-txt { display: flex; flex-direction: column; line-height: 1.3; }
.jn-ai-txt strong { font-family: var(--font-head); font-size: 0.9rem; color: #fff; }
.jn-ai-txt span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.78); }
.jn-ai-txt b { color: #7dd3fc; }

/* --- rating card --- */
.jn-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  width: fit-content;
  margin: 16px 0 0;
  padding: 10px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.85);
}
.jn-rating span { display: inline-flex; align-items: center; gap: 7px; }
.jn-rating b { color: #fff; font-family: var(--font-head); }
.jn-rating .fa-star { color: #fbbf24; }
.jn-rating .fa-users { color: #7dd3fc; }
.jn-rating .fa-heart { color: #fb7185; }

/* --- quick-fact pills --- */
.jn-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
.jn-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}
.jn-pill i { color: #7dd3fc; font-size: 0.82rem; }

/* --- CTA quick-info row (below existing button) --- */
.jn-cta-info { display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 16px 0 0; }
.jn-cta-info span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.72); }
.jn-cta-info i { color: #7dd3fc; }

/* keep everything within a 100vh panel on shorter desktops */
@media (min-width: 992px) and (max-height: 820px) {
  .journey .jn-copy .jn-index { font-size: 3.4rem; }
  .journey .jn-meta { margin: 14px 0 18px; }
  .jn-ai, .jn-rating, .jn-facts, .jn-cta-info { margin-top: 12px; }
}
@media (min-width: 992px) and (max-height: 720px) {
  .jn-rating, .jn-cta-info { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .jn-deco { animation: none; }
}

/* ===========================
   PACK ITEM CARDS
=========================== */

.essentials-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.pack-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 140px;
    padding: 15px 15px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    cursor: pointer;
    transition: .45s cubic-bezier(.22,.61,.36,1);
}
/* top glow */
.pack-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top,
    rgba(14,165,233,.22),
    transparent 70%);
    opacity:0;
    transition:.45s;
}

/* bottom border glow */
.pack-item::after{
    content:"";
    position:absolute;
    left:15%;
    right:15%;
    bottom:0;
    height:3px;

    border-radius:30px;

    background:linear-gradient(90deg,#06b6d4,#3b82f6);

    transform:scaleX(0);
    transition:.4s;
}

.pack-item i{
    width:68px;
    height:68px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    font-size:28px;

    color:#38bdf8;

    background:
    linear-gradient(180deg,
    rgba(255,255,255,.15),
    rgba(255,255,255,.05));

    box-shadow:
    inset 0 1px rgba(255,255,255,.35),
    0 10px 25px rgba(0,0,0,.18);

    transition:.4s;
}

.pack-item span{
    font-size:15px;
    font-weight:600;
    color:#f8fafc;
    letter-spacing:.2px;
    transition:.35s;
}

/* Hover */

.pack-item:hover{

    transform:
    translateY(-8px)
    scale(1.04);

    border-color:rgba(14,165,233,.55);

    background:
    linear-gradient(145deg,
    rgba(14,165,233,.18),
    rgba(59,130,246,.12));

    box-shadow:
    0 25px 45px rgba(14,165,233,.18),
    0 10px 25px rgba(0,0,0,.25);
}

.pack-item:hover::before{
    opacity:1;
}

.pack-item:hover::after{
    transform:scaleX(1);
}

.pack-item:hover i{

    color:#fff;

    background:
    linear-gradient(135deg,
    #06b6d4,
    #2563eb);

    transform:
    translateY(-3px)
    rotate(-6deg)
    scale(1.08);

    box-shadow:
    0 18px 30px rgba(37,99,235,.35);
}

.pack-item:hover span{
    color:#fff;
}

/* Active */

.pack-item.active{

    background:
    linear-gradient(135deg,
    #0ea5e9,
    #2563eb);

    border-color:transparent;

    box-shadow:
    0 25px 50px rgba(37,99,235,.35);
}

.pack-item.active i{

    background:#fff;
    color:#2563eb;
}

.pack-item.active span{
    color:#fff;
}
/* ============================================================
   Pack Your Suitcase — first-time drag hint (auto-plays once,
   stops on first interaction). Pointer cue + ghost item + label.
   ============================================================ */
.pack-grid[data-pack] { position: relative; }
.pack-item { position: relative; }

.pack-hint-hand {
  position: absolute; top: 0; left: 0; z-index: 40; pointer-events: none;
  font-size: 1.5rem; color: #fff; margin: -6px 0 0 -4px;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .45));
  will-change: transform, opacity;
}
.pack-hint-ghost {
  position: absolute; top: 0; left: 0; z-index: 39; pointer-events: none;
  width: 54px; height: 54px; margin: -27px 0 0 -27px; border-radius: 16px;
  display: grid; place-items: center; color: #fff; font-size: 1.15rem;
  background: linear-gradient(150deg, #3b82f6, #2563eb);
  box-shadow: 0 12px 26px rgba(37, 99, 235, .5), inset 0 1px 0 rgba(255, 255, 255, .35);
  will-change: transform, opacity;
}
.pack-item.is-hint::after {
  content: ''; position: absolute; inset: -3px; border-radius: inherit;
  border: 2px solid rgba(59, 130, 246, .9); pointer-events: none;
  animation: pkHintPulse 1.6s ease-out infinite;
}
@keyframes pkHintPulse {
  0%   { box-shadow: 0 0 0 0 rgba(59, 130, 246, .45); opacity: 1; }
  70%  { box-shadow: 0 0 0 12px rgba(59, 130, 246, 0); opacity: .85; }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); opacity: 1; }
}
.pack-item.hint-grab { transform: translateY(-2px) scale(.96); transition: transform .2s ease; }

.pack-hint-tag {
  position: absolute; left: 50%; top: -12px; transform: translate(-50%, -100%);
  white-space: nowrap; padding: 5px 11px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .01em; color: #fff;
  background: linear-gradient(150deg, #3b82f6, #2563eb);
  box-shadow: 0 8px 18px rgba(37, 99, 235, .45);
  pointer-events: none; z-index: 41;
}
.pack-hint-tag::after {
  content: ''; position: absolute; left: 50%; bottom: -4px;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px; background: #2563eb; border-radius: 2px;
}

.suitcase.hint-drop::after {
  content: ''; position: absolute; inset: -6px; border-radius: 22px; pointer-events: none;
  border: 2px solid rgba(59, 130, 246, .85); z-index: 20;
  animation: pkDropPulse .7s ease-out 1;
}
@keyframes pkDropPulse {
  0%   { transform: scale(.9); opacity: .9; }
  100% { transform: scale(1.14); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .pack-item.is-hint::after { animation: none; }
}

/* ---- Interactive World Explorer: bottom tap hint ---- */
.expl-hint {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 26px auto 0; text-align: center;
  font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  color: #cbd5e1;
}
.expl-hint-ic {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  color: #fff; font-size: .82rem;
  background: linear-gradient(150deg, #38bdf8, #2563eb);
  box-shadow: 0 6px 16px rgba(37, 99, 235, .5);
  animation: explHintTap 1.8s ease-in-out infinite;
}
@keyframes explHintTap {
  0%, 100% { transform: translateY(0) scale(1); }
  15%      { transform: translateY(-4px) scale(1.08); }
  30%      { transform: translateY(0) scale(.94); }
  45%      { transform: translateY(0) scale(1); }
}
@media (max-width: 600px) {
  .expl-hint { font-size: .85rem; padding: 0 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .expl-hint-ic { animation: none; }
}
