/* DreamsHoliday — Veena World–inspired UI */

:root {
  --vw-yellow: #ffd801;
  --vw-yellow-dark: #c0a92a;
  --vw-navy: #002271;
  --vw-navy-deep: #0e1e2c;
  --vw-black: #212221;
  --vw-blue: #0a66c2;
  --vw-blue-50: #f1f4fb;
  --vw-blue-100: #d4dbeb;
  --vw-muted: #636464;
  --vw-line: #dfe3e8;
  --vw-white: #ffffff;
  --vw-bg: #f7f8fb;
  --font: "Mulish", "Segoe UI", sans-serif;
  --container: 1200px;
  --header-h: 72px;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(14, 30, 44, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--vw-black);
  background: var(--vw-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 720px); margin-inline: auto; }

/* Top bar */
.topbar {
  background: var(--vw-navy-deep);
  color: rgba(255,255,255,.88);
  font-size: .82rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem 0;
  flex-wrap: wrap;
  font-weight: 600;
}
.topbar-left, .topbar-right { display: flex; flex-wrap: wrap; gap: .85rem 1.25rem; align-items: center; }
.topbar-item { color: rgba(255,255,255,.88); }
.topbar-item:hover { color: var(--vw-yellow); }
.topbar-ico { margin-right: .25rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--vw-white);
  border-bottom: 1px solid #e8eef6;
  box-shadow: 0 1px 0 rgba(0,34,113,.04);
}
.site-header .container.header-inner,
.header-inner { position: relative; }
.header-inner {
  --header-h: 88px;
  height: var(--header-h);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0;
}
.brand {
  display: flex;
  align-items: center;
  align-self: stretch;
  height: 100%;
  min-width: 0;
  text-decoration: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.brand-logo {
  display: block;
  height: auto;
  max-height: calc(100% - 12px);
  width: auto;
  max-width: min(360px, 62vw);
  object-fit: contain;
  object-position: left center;
  background: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 6px 0 !important;
  margin: 0 !important;
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  box-sizing: border-box;
}
.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  filter: none !important;
  opacity: 1 !important;
  transform: none !important;
  box-shadow: none !important;
  background: none !important;
}
.brand-tagline { display: none; }
.brand-logo-wrap {
  display: contents;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.header-actions { display: flex; align-items: center; gap: 1.1rem; flex: 1; justify-content: flex-end; }
.header-cta-group { display: flex; align-items: center; gap: .75rem; }
.header-support {
  display: flex; align-items: center; gap: .85rem;
  padding-right: .35rem;
}
.header-support-item {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--vw-navy); font-weight: 700; font-size: .82rem; white-space: nowrap;
}
.header-support-item svg { flex-shrink: 0; color: var(--vw-navy); }
.btn-signin {
  font-weight: 800; font-size: .82rem; color: var(--vw-navy);
  padding: .4rem .65rem; border-radius: 8px; border: 1px solid var(--vw-line);
}
.btn-signin:hover { border-color: var(--vw-navy); background: var(--vw-blue-50); }
.btn-enquire {
  display: inline-flex; align-items: center; gap: .4rem;
  min-height: 42px; padding: 0 1.05rem; border-radius: 10px;
  font-weight: 800; font-size: .88rem;
}
.nav { display: flex; align-items: center; gap: .05rem; margin-right: auto; margin-left: 1rem; }
.nav-link {
  padding: .65rem .7rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--vw-navy);
  border-radius: 0;
  position: relative;
  white-space: nowrap;
}
.nav-link:hover { color: var(--vw-blue); }
.nav-link.is-active { color: #e6b800; }
.nav-link.is-active::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .15rem;
  height: 3px; background: var(--vw-yellow); border-radius: 2px;
}

.admin-preview-bar {
  background: #fff8d6; border-bottom: 1px solid #f0e2a0; padding: .65rem 0;
  position: sticky; top: 78px; z-index: 55;
}
.admin-preview-inner {
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; align-items: center;
  font-size: .9rem;
}
.admin-preview-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-left: auto; }
.admin-preview-actions a { font-weight: 800; color: var(--vw-navy); }
.admin-edit-chip {
  position: absolute; top: .55rem; right: .55rem; z-index: 3;
  background: var(--vw-yellow); color: var(--vw-navy);
  font-size: .72rem; font-weight: 800; padding: .25rem .5rem; border-radius: 6px;
}
.loved-card, .offer-card, .dest-card, .pkg-card { position: relative; }

/* Dynamic hero — real HTML/CSS, admin-driven (design is reference only) */

.hero-live {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: .55rem 0 0;
  isolation: isolate;
  min-height: clamp(620px, 92vh, 860px);
}
.hero-live-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 58% 40%;
}
.hero-live-wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg,
      rgba(255,255,255,.86) 0%,
      rgba(255,255,255,.78) 20%,
      rgba(248,251,255,.38) 42%,
      rgba(255,255,255,.08) 58%,
      transparent 74%);
}
.hero-live-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: .5rem 1rem;
  align-items: center;
  min-height: clamp(460px, 64vh, 640px);
}
.hero-live-copy {
  position: relative;
  max-width: 480px;
  padding: .5rem 0 1.5rem;
  align-self: center;
  z-index: 2;
}
.hero-edit-chip { position: absolute; top: 0; right: 0; z-index: 3; }

.hero-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.05rem;
  overflow: visible;
}
.hero-intro-glow {
  position: absolute;
  left: -12%;
  top: 8%;
  width: 70%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,216,1,.28) 0%, rgba(11,92,204,.1) 42%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.hero-anim {
  position: relative;
  z-index: 1;
  animation: heroRise .7s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: var(--d, 0s);
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  color: #c9a000;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(255,255,255,.35);
}
.hero-kicker-plane {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd801, #f0c400);
  color: #002271;
  font-size: .95rem;
  box-shadow: 0 8px 18px rgba(200,150,0,.35);
  animation: planeBob 3.2s ease-in-out infinite;
}

.hero-live-title {
  margin: 0;
  line-height: .84;
  letter-spacing: -.07em;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6.2vw, 4.5rem);
  font-weight: 800;
}
.hero-title-main {
  display: block;
  color: #00153f;
  text-shadow: 0 12px 34px rgba(0,21,63,.14);
}
.hero-title-accent {
  display: inline-block;
  background: linear-gradient(110deg, #002271 0%, #0a4fbf 40%, #2f89ff 78%, #ffd801 140%);
  background-size: 160% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  animation: titleSheen 5s ease-in-out infinite;
}
@keyframes titleSheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-title-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 6%;
  bottom: .04em;
  height: .26em;
  background: linear-gradient(90deg, #ffd801 0%, rgba(255,216,1,.2) 100%);
  border-radius: 3px;
  z-index: -1;
  transform: skewX(-12deg);
}

.hero-live-sub {
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: .35em;
  max-width: none;
  color: #31455f;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  padding-left: .85rem;
  border-left: 3px solid #ffd801;
  white-space: nowrap;
}
.hero-live-sub span {
  display: inline;
}

.hero-trust-rail {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: .15rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 52px;
  padding: .55rem .7rem;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.75);
  box-shadow:
    0 12px 28px rgba(8,24,48,.1),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(8,24,48,.14);
}
.hero-trust-ico {
  width: 34px; height: 34px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #001a5c, #0b5ccc);
  color: #ffd801;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0,34,113,.25);
}
.hero-trust-ico svg { width: 15px; height: 15px; }
.hero-trust-item > span:last-child {
  font-size: .76rem;
  font-weight: 800;
  color: #142a4a;
  line-height: 1.2;
}

.hero-partners {
  width: 100%;
  margin: .2rem 0 0;
  padding: .9rem 0 0;
  display: grid;
  gap: .65rem;
  border-top: 1px solid rgba(0,34,113,.1);
}
.hero-partners-head {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.hero-partners-label {
  margin: 0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5d6f86;
  white-space: nowrap;
}
.hero-partners-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,34,113,.22), transparent);
}
.hero-partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .65rem;
}
.hero-partners-logos img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: .35rem .55rem;
  border: 1px solid rgba(0,34,113,.08);
  box-shadow: 0 10px 20px rgba(8,24,48,.1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-partners-logos img:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 26px rgba(8,24,48,.16);
}
.hero-partners-logos img.assoc-logo-wide {
  height: 56px;
  max-width: 220px;
  padding: .25rem .45rem;
}
.hero-partners-logos img.assoc-logo-square {
  height: 64px;
  width: auto;
  max-width: 72px;
  padding: .25rem;
}
.hero-partners-logos img.assoc-logo-round {
  height: 64px;
  width: 64px;
  max-width: 64px;
  padding: .2rem;
  border-radius: 50%;
  object-fit: contain;
}

.hero-live-visual {
  position: relative;
  min-height: 520px;
  height: clamp(500px, 68vh, 640px);
  display: grid;
  place-items: end center;
  padding: 0;
  margin-bottom: 0;
  overflow: visible;
  z-index: 1;
}
.hero-portal {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  overflow: visible;
  z-index: 3;
  --hero-ring: 32%;
}
.hero-portal--cutout {
  width: min(100%, 560px);
  aspect-ratio: auto;
  display: grid;
  place-items: end center;
  margin: 0 auto;
  transform: none;
  --hero-ring: 32%;
}
.hero-portal--cutout::before { content: none; }
.hero-portal-cutout {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  display: block;
  position: relative;
  z-index: 3;
  /* PNG is 1000x1000 with ~227px empty bottom — collapse so the girl sits on the search top, not inside it */
  margin-bottom: -22.7%;
  filter: drop-shadow(0 18px 36px rgba(0, 30, 60, .28));
  pointer-events: none;
  user-select: none;
}
.hero-portal-halo,
.hero-portal-frame,
.hero-girl-out { display: none !important; }
.hero-flight-path {
  position: absolute; left: 50%; top: 18%;
  width: 42%; height: auto; z-index: 4;
  opacity: .85; pointer-events: none;
  transform: translateX(8%);
}
.hero-flight-plane {
  position: absolute; right: 4%; top: 10%; z-index: 5;
  font-size: 1.15rem; color: #1a2a44;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.2));
  animation: planeBob 3.5s ease-in-out infinite;
}

/* Glass cards — clustered on the portal ring (match attached) */
.hero-float-card {
  position: absolute; z-index: 6;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: .45rem;
  align-items: center;
  width: 198px;
  padding: .4rem .45rem .4rem .4rem;
  border-radius: 14px;
  background: rgba(14, 24, 40, .62);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(8,20,40,.26);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-float-card:hover {
  box-shadow: 0 16px 34px rgba(8,20,40,.32);
  z-index: 8;
}
.hero-float-card img {
  width: 44px; height: 44px; border-radius: 10px; object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,.22);
}
.hero-float-copy { min-width: 0; }
.hero-float-card strong {
  display: block; font-size: .76rem; line-height: 1.2; font-weight: 800;
}
.hero-float-card span {
  display: block; font-size: .62rem; opacity: .9; margin-top: .1rem;
}
.hero-float-card em {
  font-style: normal; color: var(--vw-yellow); font-weight: 800;
}
.hero-float-card .hero-float-go {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--vw-navy);
  font-weight: 800;
  font-size: .85rem;
  line-height: 1;
  opacity: 1;
  flex-shrink: 0;
  align-self: center;
}
.hero-float-card .hero-float-go svg {
  width: 12px; height: 12px; display: block;
}
/* Pin cards on the ring — Bali (tl) shifted further right onto the circle */
.hero-float-card.pos-tl {
  left: 34%;
  right: auto;
  top: 12%;
  bottom: auto;
  transform: translate(-100%, 0);
  z-index: 6;
}
.hero-float-card.pos-tr {
  left: 74%;
  right: auto;
  top: 16%;
  bottom: auto;
  transform: translate(0, 0);
  z-index: 6;
}
.hero-float-card.pos-bl {
  left: 23%;
  right: auto;
  bottom: 28%;
  top: auto;
  transform: translate(-100%, 0);
  z-index: 7;
}
.hero-float-card.pos-br {
  left: 79%;
  right: auto;
  bottom: 24%;
  top: auto;
  transform: translate(0, 0);
  z-index: 7;
}
.hero-float-card.pos-tl:hover,
.hero-float-card.pos-bl:hover {
  transform: translate(-100%, -3px);
}
.hero-float-card.pos-tr:hover,
.hero-float-card.pos-br:hover {
  transform: translate(0, -3px);
}

.hero-live .search-panel-design {
  position: relative; z-index: 8;
  margin-top: 0;
  margin-bottom: 1.15rem;
}

.search-coming-soon {
  margin: .65rem 0 0;
  text-align: center;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #002271;
  font-size: .85rem;
}

.btn-search-design:disabled {
  opacity: .55;
  cursor: not-allowed;
  filter: none;
  pointer-events: none;
}

@keyframes planeBob {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(7px) rotate(-6deg); }
}

.hero-match,
.hero-design,
.hero-concept,
.search-panel { display: none !important; }

.search-panel-design {
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: 18px;
  padding: .9rem 1.1rem 1.05rem;
  box-shadow: 0 18px 40px rgba(14,30,44,.14);
  border: 1px solid rgba(0,34,113,.06);
}
.search-tabs-design {
  display: flex; flex-wrap: wrap; gap: .15rem 1.15rem;
  margin-bottom: .9rem; padding: 0 .15rem .75rem;
  border-bottom: 1px solid #eef1f6;
}
.search-tabs-design button {
  display: inline-flex; align-items: center; gap: .4rem;
  border: 0; background: transparent; color: var(--vw-navy);
  font-weight: 800; font-size: .9rem; padding: .35rem 0 .55rem;
  cursor: pointer; position: relative;
}
.search-tabs-design button svg { color: var(--vw-navy); }
.search-tabs-design button.is-active { color: #e6b800; }
.search-tabs-design button.is-active svg { color: #e6b800; }
.search-tabs-design button.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 3px; background: var(--vw-yellow); border-radius: 2px;
}
.search-form-design {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr auto;
  gap: .75rem;
  align-items: end;
}
.search-field { display: grid; gap: .35rem; }
.search-field span {
  font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--vw-navy);
}
.search-field input,
.search-field select {
  width: 100%; min-height: 48px; border: 1px solid #d9e0ea; border-radius: 10px;
  padding: 0 .85rem; font-weight: 600; color: var(--vw-black); background: #fff;
}
.search-field input::placeholder { color: #9aa3b2; font-weight: 600; }
.btn-search-design {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: 48px; padding: 0 1.25rem; border: 0; border-radius: 10px;
  background: var(--vw-yellow); color: var(--vw-navy);
  font-weight: 800; font-size: .95rem; cursor: pointer; white-space: nowrap;
}
.btn-search-design:hover { filter: brightness(.97); }

.narrow-admin { width: min(100% - 2rem, 920px); margin-inline: auto; }
.admin-fieldset {
  border: 1px solid var(--vw-line); border-radius: 14px; background: #fff;
  padding: 1rem 1.1rem 1.15rem; margin: 0 0 1rem;
}
.admin-fieldset legend {
  padding: 0 .4rem; font-weight: 800; color: var(--vw-navy); font-size: .95rem;
}
.admin-card-block {
  border-top: 1px dashed var(--vw-line); padding-top: .85rem; margin-top: .85rem;
}
.admin-card-block:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.admin-card-block h3 { margin: 0 0 .55rem; font-size: .92rem; color: var(--vw-navy); }
.admin-thumb {
  margin-top: .55rem; width: 100%; max-width: 220px; height: 90px;
  object-fit: cover; border-radius: 10px; border: 1px solid var(--vw-line);
}
.admin-thumb-round { border-radius: 50%; width: 90px; height: 90px; }

/* Destination horizontal carousel — no vertical scroll */
.dest-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .5rem;
  align-items: center;
}
.dest-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .35rem .15rem .35rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
}
.dest-track::-webkit-scrollbar { display: none; height: 0; } /* Chrome/Safari */
.dest-card {
  flex: 0 0 260px;
  width: 260px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--vw-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(14,30,44,.05);
  transition: transform .2s, box-shadow .2s;
}
.dest-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.dest-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; }
.dest-card-badge,
.dest-card-loc {
  position: absolute; left: .7rem; top: .7rem;
  background: rgba(255,255,255,.95); color: var(--vw-navy);
  font-size: .72rem; font-weight: 800; padding: .28rem .58rem; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(14,30,44,.12);
}
.dest-card-body { padding: .9rem 1rem 1.05rem; }
.dest-card-body h3 { margin: 0; color: var(--vw-navy); font-size: 1.05rem; font-weight: 800; }
.dest-card-body p {
  margin: .35rem 0 .65rem; color: var(--vw-muted); font-size: .86rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dest-card-price { font-size: .86rem; color: var(--vw-navy); font-weight: 700; }
.dest-card-price strong { color: var(--vw-blue); font-size: 1.05rem; }
.carousel-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--vw-line);
  background: #fff; color: var(--vw-navy); font-size: 1.4rem; cursor: pointer;
  box-shadow: var(--shadow);
}
.carousel-btn:hover { background: var(--vw-blue-50); }
.section-title-vw .accent { color: var(--vw-blue); }

/* Travel Your Way */
.section-travel-way { background: #fff; }
.travel-way-layout {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start;
}
.travel-way-stats {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 1.25rem;
}
.travel-way-stat { min-width: 110px; }
.travel-way-stat strong {
  display: block; font-size: 1.7rem; color: var(--vw-navy); font-weight: 800; line-height: 1;
}
.travel-way-stat span {
  display: block; margin-top: .25rem; font-size: .78rem; font-weight: 700; color: var(--vw-muted);
}
.travel-way-cards { display: grid; grid-template-columns: 1fr; gap: .85rem; }
.travel-way-card {
  background: #f6f8fc; border: 1px solid rgba(0,34,113,.06);
  border-radius: 16px; padding: 1.1rem 1.15rem;
}
.travel-way-card h3 { margin: 0 0 .35rem; color: var(--vw-navy); font-size: 1.05rem; }
.travel-way-card p { margin: 0; color: var(--vw-muted); font-size: .9rem; }
.travel-way-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.travel-way-tags span {
  font-size: .72rem; font-weight: 700; color: var(--vw-navy);
  background: #fff; border-radius: 999px; padding: .28rem .55rem;
  border: 1px solid rgba(0,34,113,.08);
}

/* Explorer activities */
.section-explorer { background: #fff; }
.explorer-track {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: .85rem;
}
.explorer-card {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  text-decoration: none; color: var(--vw-navy); text-align: center;
  background: #f3f5f9; border-radius: 18px; padding: 1.15rem .85rem 1.05rem;
  border: 1px solid rgba(0,34,113,.05);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.explorer-card:hover {
  transform: translateY(-3px);
  background: #eef2f8;
  box-shadow: 0 12px 28px rgba(14,30,44,.08);
}
.explorer-card-media {
  width: 72px; height: 72px; border-radius: 18px; overflow: hidden;
  display: block; box-shadow: 0 8px 18px rgba(14,30,44,.12);
}
.explorer-card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.explorer-card-title {
  font-weight: 800; font-size: .86rem; line-height: 1.3;
}

/* About / Who we are */
.section-who { background: #fff; }
.who-layout {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center;
}
.who-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: .85rem; margin-top: 1.25rem;
}
.who-phone {
  font-size: 1.2rem; font-weight: 800; color: var(--vw-navy); text-decoration: none;
}
.who-points { display: grid; gap: .75rem; }
.who-points > div {
  background: #f6f8fc; border-radius: 14px; padding: 1rem 1.1rem;
  border: 1px solid rgba(0,34,113,.06);
}
.who-points strong { display: block; color: var(--vw-navy); margin-bottom: .2rem; }
.who-points span { color: var(--vw-muted); font-size: .88rem; }

/* Newsletter */
.section-newsletter { background: #fff; padding-top: 1.2rem; padding-bottom: 2.6rem; }
.newsletter-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem 1.5rem;
  background: linear-gradient(105deg, #1b5fd0 0%, #0a3d9c 55%, #002271 100%);
  border-radius: 18px; padding: 1.15rem 1.35rem;
  color: #fff;
}
.newsletter-copy {
  display: flex; align-items: center; gap: .85rem; min-width: 220px; flex: 1;
}
.newsletter-ico {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.14); font-size: 1.15rem;
}
.newsletter-copy strong { display: block; font-size: 1.05rem; font-weight: 800; }
.newsletter-copy span { display: block; margin-top: .15rem; font-size: .84rem; color: rgba(255,255,255,.78); font-weight: 600; }
.newsletter-form {
  display: flex; flex-wrap: wrap; gap: .55rem; align-items: center;
  background: #fff; border-radius: 14px; padding: .35rem .35rem .35rem .7rem;
}
.newsletter-form input {
  min-width: 200px; flex: 1; border: 0; outline: none;
  padding: .55rem .35rem; font: inherit; font-weight: 600; color: var(--vw-navy); background: transparent;
}
.newsletter-ok {
  flex-basis: 100%; margin: 0; color: #c8f7d4; font-weight: 700; font-size: .9rem;
}

/* Ready CTA */
.section-ready {
  background: linear-gradient(120deg, #001a5c 0%, #0a3d9c 55%, #0b5ccc 100%);
  padding: 3.2rem 0;
}
.ready-panel { text-align: center; color: #fff; }
.ready-panel .section-title-vw { margin-bottom: .55rem; }
.ready-panel p {
  margin: 0 auto 1.25rem; max-width: 42ch; color: rgba(255,255,255,.82); font-weight: 600;
}

.special-kicker {
  margin: 0 0 .35rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--vw-blue);
}

/* Upcoming & Past packages (deals band) */
.section-deals { background: #fff; padding-top: 1.2rem; }
.deals-panel {
  background: linear-gradient(145deg, #001a5c 0%, #002271 42%, #0a3d9c 100%);
  border-radius: 24px; padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: 0 22px 50px rgba(0,34,113,.22);
}
.deals-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1rem 1.5rem; margin-bottom: 1.1rem;
}
.deals-kicker {
  margin: 0 0 .35rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--vw-yellow);
}
.deals-sub {
  margin: .4rem 0 0; color: rgba(255,255,255,.72); max-width: 42ch; font-weight: 600;
}
.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.55); color: #fff; background: transparent;
  border-radius: 999px; padding: .62rem 1.05rem; font-weight: 800; text-decoration: none;
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.deals-tabs {
  display: none;
}
.deals-carousel {
  display: grid; grid-template-columns: auto 1fr auto; gap: .65rem; align-items: center;
}
.deals-track {
  display: flex; gap: .9rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .15rem .1rem .55rem; scrollbar-width: thin;
}
.deals-track::-webkit-scrollbar { height: 6px; }
.deals-track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.35); border-radius: 999px;
}
.deals-empty {
  margin: 0; color: rgba(255,255,255,.8); font-weight: 700;
}
.deal-card {
  position: relative; display: flex; flex-direction: column;
  flex: 0 0 260px; width: 260px; scroll-snap-align: start;
  background: #fff; border-radius: 18px; overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
  transition: transform .2s ease, box-shadow .2s ease;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.2); }
.deal-ribbon {
  position: absolute; left: 0; top: .85rem; z-index: 2;
  background: #e11d48; color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: .28rem .7rem .28rem .55rem;
  border-radius: 0 999px 999px 0;
  box-shadow: 0 6px 14px rgba(225,29,72,.35);
}
.deal-ribbon-past { background: #64748b; box-shadow: 0 6px 14px rgba(100,116,139,.35); }
.deal-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.deal-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.deal-date-pill {
  position: absolute; right: .7rem; top: .7rem; z-index: 2;
  display: grid; justify-items: center; min-width: 54px;
  background: rgba(255,255,255,.97);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 10px 22px rgba(14,30,44,.2);
  line-height: 1; text-align: center;
}
.deal-date-pill .deal-date-label {
  width: 100%;
  background: var(--vw-navy); color: #fff;
  font-size: .58rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: .32rem .4rem;
}
.deal-date-pill.is-past .deal-date-label { background: #64748b; }
.deal-date-pill .deal-date-day {
  font-size: 1.2rem; font-weight: 800; color: var(--vw-navy);
  padding: .4rem .45rem .1rem; font-variant-numeric: tabular-nums;
}
.deal-date-pill .deal-date-mon {
  font-size: .68rem; font-weight: 800; color: #e6b800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 0 .45rem .15rem;
}
.deal-date-pill .deal-date-year {
  font-size: .62rem; font-weight: 700; color: var(--vw-muted);
  padding: 0 .45rem .45rem;
}
.deal-body { padding: .95rem 1rem 1.05rem; }
.deal-body h3 { margin: 0; font-size: .98rem; color: var(--vw-navy); line-height: 1.3; }
.deal-body p { margin: .35rem 0 0; color: var(--vw-muted); font-size: .8rem; font-weight: 600; }
.deal-foot {
  margin-top: .8rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.deal-foot strong { color: var(--vw-blue); font-size: 1.02rem; }
.deal-foot span { font-size: .8rem; font-weight: 800; color: var(--vw-navy); }
.deals-nav {
  background: rgba(255,255,255,.95);
}

.section-why {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,216,1,.16), transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(27,111,224,.1), transparent 40%),
    #f7f9fc;
}
.why-layout {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 1.75rem 2rem; align-items: center;
}
.why-intro .section-sub-vw { max-width: 38ch; margin-bottom: 1.1rem; }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem;
}
.why-grid-five {
  grid-template-columns: repeat(3, 1fr);
}
.why-card {
  background: #fff;
  border: 1px solid rgba(0,34,113,.06);
  border-radius: 16px; padding: 1.05rem 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(14,30,44,.06);
  text-align: center;
}
.why-card-ico {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 14px;
  background: rgba(255,216,1,.35); color: var(--vw-navy);
  margin-bottom: .7rem;
}
.why-card-ico svg { width: 20px; height: 20px; }
.why-card h3 { margin: 0; font-size: .95rem; color: var(--vw-navy); }
.why-card p { margin: .35rem 0 0; color: var(--vw-muted); font-size: .82rem; line-height: 1.45; }

/* Happy travellers */
.section-happy { background: #fff; }
.happy-layout {
  display: grid; grid-template-columns: 1.35fr .65fr; gap: 1.25rem; align-items: stretch;
}
.happy-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem;
}
.happy-card {
  background: #f6f8fc; border-radius: 18px; padding: 1.05rem 1rem 1.1rem;
  border: 1px solid rgba(0,34,113,.05);
}
.happy-card-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: .7rem;
}
.happy-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--vw-navy); color: #fff; font-weight: 800;
}
.happy-quote {
  font-size: 2.4rem; line-height: 1; color: rgba(0,34,113,.18); font-weight: 800;
}
.happy-card p {
  margin: 0; color: var(--vw-navy); font-size: .88rem; line-height: 1.5; font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.happy-foot { margin-top: .85rem; }
.happy-foot strong { display: block; color: var(--vw-navy); font-size: .9rem; }
.happy-foot span { color: var(--vw-muted); font-size: .78rem; font-weight: 700; }
.happy-cta {
  background: linear-gradient(160deg, #e8f0ff 0%, #dce8ff 100%);
  border-radius: 22px; padding: 1.5rem 1.35rem;
  display: flex; flex-direction: column; justify-content: center;
  border: 1px solid rgba(0,34,113,.06);
}
.happy-cta h3 {
  margin: 0 0 .55rem; color: var(--vw-navy); font-size: 1.35rem; font-weight: 800; line-height: 1.25;
}
.happy-cta p {
  margin: 0 0 1.15rem; color: var(--vw-muted); font-weight: 600; line-height: 1.5;
}

.section-services { background: #0b1f4a; color: #fff; }
.section-services .section-title-vw { color: #fff; }
.section-services .section-title-vw .accent { color: var(--vw-yellow); }
.section-services .section-sub-vw { color: rgba(255,255,255,.72); }
.section-services .special-kicker { color: var(--vw-yellow); }
.services-grid {
  margin-top: 1.4rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem;
}
.service-card {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none; color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.service-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); color: #fff; }
.service-card-ico {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--vw-yellow); color: var(--vw-navy);
  font-size: .9rem; font-weight: 800; margin-bottom: .35rem;
  letter-spacing: .02em;
}
.service-card h3 { margin: 0; font-size: 1.02rem; }
.service-card p { margin: 0; color: rgba(255,255,255,.7); font-size: .86rem; line-height: 1.45; }
.service-card-link {
  margin-top: .55rem; font-size: .82rem; font-weight: 800; color: var(--vw-yellow);
}

/* legacy hooks kept empty to avoid breakage */
.section-offers, .offers-layout, .offers-promo, .offers-cards, .offer-card,
.why-panel, .why-row, .services-row, .service-item { }

.footer-assoc {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 1rem 0 1.15rem;
}
.footer-assoc-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .85rem 1.25rem;
}
.footer-assoc-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.42); white-space: nowrap;
}
.footer-assoc-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end;
  gap: .55rem .7rem; flex: 1;
}
.footer-assoc-logos img {
  display: block;
  height: 48px; width: auto; max-width: 160px; object-fit: contain;
  background: #fff; border-radius: 8px; padding: .35rem .55rem;
  box-shadow: 0 1px 0 rgba(0,0,0,.15);
}
.footer-assoc-logos img.assoc-logo-wide {
  height: 52px; max-width: 210px; padding: .25rem .5rem;
}
.footer-assoc-logos img.assoc-logo-square {
  height: 58px; width: auto; max-width: 68px; padding: .25rem;
}
.footer-assoc-logos img.assoc-logo-round {
  height: 58px; width: 58px; max-width: 58px;
  padding: .2rem; border-radius: 50%; object-fit: contain;
}
.footer-brand-logo {
  height: 72px;
  width: auto;
  max-width: min(300px, 100%);
  object-fit: contain;
  background: #fff !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: .55rem .75rem !important;
  margin: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  outline: 0 !important;
  box-sizing: border-box;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .55rem;
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}
.footer-logo-row img {
  background: #fff !important;
  border-radius: 10px !important;
  padding: .55rem .75rem !important;
  box-shadow: none !important;
  filter: none !important;
}

.admin-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--vw-line); border-radius: 14px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.admin-table th, .admin-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--vw-line); text-align: left; vertical-align: top; }
.admin-table th { background: var(--vw-blue-50); color: var(--vw-navy); font-weight: 800; }
.admin-actions { display: flex; gap: .65rem; flex-wrap: wrap; align-items: center; }
.admin-actions form { display: inline; margin: 0; }
.admin-actions button { background: none; border: 0; padding: 0; cursor: pointer; font: inherit; }
.link-danger { color: #b42318; font-weight: 700; }
.muted { color: var(--vw-muted); font-size: .8rem; }

/* Keep old dest-scroll unused styles harmless */
.dest-scroll {
  display: flex; gap: 1.25rem; overflow-x: auto; overflow-y: hidden;
  padding-bottom: .5rem; scroll-snap-type: x mandatory;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 0; background: transparent; cursor: pointer; position: relative;
}
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--vw-navy); border-radius: 2px;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.page-wrap.nav-open .nav-toggle span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.page-wrap.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.page-wrap.nav-open .nav-toggle span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: 44px; padding: 0 1.2rem; border-radius: 999px;
  border: 1px solid transparent; font-weight: 800; font-size: .92rem; cursor: pointer;
  transition: transform .15s, filter .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 38px; padding: 0 1rem; font-size: .85rem; }
.btn-block { width: 100%; }
.btn-yellow { background: var(--vw-yellow); color: var(--vw-navy); }
.btn-yellow:hover { filter: brightness(.96); }
.btn-navy {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--vw-navy); color: #fff; border: 0; border-radius: 999px;
  padding: .72rem 1.2rem; font-weight: 800; text-decoration: none;
}
.btn-navy:hover { background: #001a5c; color: #fff; }
.btn-outline {
  background: #fff; border-color: var(--vw-line); color: var(--vw-navy);
}
.btn-outline:hover { border-color: var(--vw-navy); }
.btn-primary { background: var(--vw-yellow); color: var(--vw-navy); }
.btn-secondary { background: #fff; border-color: var(--vw-line); color: var(--vw-navy); }

.link-yellow { color: var(--vw-navy); font-weight: 800; border-bottom: 2px solid var(--vw-yellow); }
.link-yellow:hover { color: var(--vw-blue); }

/* Hero */
.vw-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 2.5rem 0 3rem;
}
.vw-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.02);
}
.vw-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,30,44,.88) 0%, rgba(14,30,44,.62) 48%, rgba(14,30,44,.35) 100%);
}
.vw-hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
}
.vw-hero-eyebrow {
  display: inline-block;
  background: var(--vw-yellow);
  color: var(--vw-navy);
  font-weight: 800;
  font-size: .8rem;
  padding: .35rem .7rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.vw-hero-title {
  margin: .85rem 0 0;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.02em;
  max-width: 14ch;
}
.vw-hero-sub {
  margin: .85rem 0 1.25rem;
  color: rgba(255,255,255,.88);
  max-width: 36ch;
  font-size: 1.05rem;
}
.vw-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.vw-cat-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  background: rgba(255,255,255,.96);
  color: var(--vw-black);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.vw-cat-card:hover { transform: translateY(-3px); }
.vw-cat-img { background-size: cover; background-position: center; min-height: 96px; }
.vw-cat-body { padding: .7rem .8rem; }
.vw-cat-body h3 { margin: 0; font-size: .95rem; color: var(--vw-navy); font-weight: 800; }
.vw-cat-meta {
  display: flex; gap: .55rem; flex-wrap: wrap;
  margin-top: .3rem; font-size: .72rem; color: var(--vw-muted); font-weight: 700;
}
.vw-cat-cta { display: inline-block; margin-top: .4rem; font-size: .78rem; font-weight: 800; color: var(--vw-blue); }

/* Sections */
.section { padding: 3rem 0; }
.section-white { background: #fff; }
.section-muted { background: var(--vw-blue-50); }
.section-head-vw {
  display: flex; justify-content: space-between; align-items: end;
  gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.section-head-vw.center { flex-direction: column; align-items: center; text-align: center; }
.section-title-vw {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  color: var(--vw-navy);
  font-weight: 800;
  letter-spacing: -.02em;
}
.section-title-vw.on-dark { color: #fff; }
.section-sub-vw { margin: .4rem 0 0; color: var(--vw-muted); max-width: 46ch; }

/* Destination circles */
.dest-scroll {
  display: flex; gap: 1.25rem; overflow-x: auto;
  padding-bottom: .5rem; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.dest-scroll::-webkit-scrollbar { height: 6px; }
.dest-scroll::-webkit-scrollbar-thumb { background: #c9d0dc; border-radius: 99px; }
.dest-circle {
  flex: 0 0 auto; width: 118px; text-align: center; scroll-snap-align: start;
}
.dest-circle-img {
  width: 110px; height: 110px; margin: 0 auto;
  border-radius: 50%; overflow: hidden;
  border: 3px solid var(--vw-yellow);
  box-shadow: 0 4px 14px rgba(0,34,113,.12);
}
.dest-circle-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.dest-circle:hover .dest-circle-img img { transform: scale(1.08); }
.dest-circle-name {
  display: block; margin-top: .55rem;
  font-size: .86rem; font-weight: 800; color: var(--vw-navy);
}

/* Live tours */
.section-live {
  background: linear-gradient(120deg, #0e1e2c 0%, #002271 55%, #214869 100%);
  color: #fff;
}
.live-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.live-copy p { color: rgba(255,255,255,.8); max-width: 40ch; }
.live-reviews { position: relative; min-height: 220px; }
.live-card {
  display: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 1.25rem;
}
.live-card.is-active { display: block; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.live-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--vw-yellow); color: var(--vw-navy);
  display: grid; place-items: center; font-weight: 800; margin-bottom: .75rem;
}
.live-quote { margin: 0; font-size: .98rem; line-height: 1.55; color: rgba(255,255,255,.92); }
.live-author { margin-top: .85rem; font-weight: 800; }
.live-tour { font-size: .82rem; color: var(--vw-yellow); font-weight: 700; }
.live-dots { display: flex; gap: .4rem; margin-top: .9rem; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.35);
}
.live-dot.is-active { background: var(--vw-yellow); }

/* Promo */
.section-promo { background: #fff; padding-top: 1rem; }
.promo-banner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #001a5c, #003399);
  color: #fff;
  box-shadow: var(--shadow);
}
.promo-copy { padding: 2rem; }
.promo-kicker {
  display: inline-block; background: var(--vw-yellow); color: var(--vw-navy);
  font-size: .75rem; font-weight: 800; padding: .3rem .55rem; border-radius: 4px;
  text-transform: uppercase;
}
.promo-copy h2 { margin: .8rem 0 .5rem; font-size: 1.7rem; font-weight: 800; }
.promo-copy p { color: rgba(255,255,255,.8); margin: 0 0 1.1rem; max-width: 36ch; }
.promo-list { background: rgba(255,255,255,.06); }
.promo-item {
  display: grid; grid-template-columns: 90px 1fr auto; gap: .75rem; align-items: center;
  padding: .95rem 1.1rem; border-bottom: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.promo-item:last-child { border-bottom: 0; }
.promo-item:hover { background: rgba(255,255,255,.06); }
.promo-days { font-size: .78rem; font-weight: 800; color: var(--vw-yellow); }
.promo-name { font-weight: 700; font-size: .92rem; }
.promo-price { font-size: .8rem; color: rgba(255,255,255,.75); text-align: right; }
.promo-price strong { display: block; color: #fff; font-size: .95rem; }

/* Most loved */
.loved-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.loved-grid-six {
  grid-template-columns: repeat(6, 1fr);
}
.loved-card {
  background: #fff; border: 1px solid var(--vw-line); border-radius: 14px;
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.loved-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.loved-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.loved-img img { width: 100%; height: 100%; object-fit: cover; }
.loved-price {
  position: absolute; left: .7rem; bottom: .7rem;
  background: var(--vw-yellow); color: var(--vw-navy);
  font-weight: 800; font-size: .8rem; padding: .3rem .55rem; border-radius: 6px;
}
.loved-rating {
  position: absolute; left: .55rem; top: .55rem;
  background: var(--vw-yellow); color: var(--vw-navy);
  font-weight: 800; font-size: .72rem; padding: .22rem .45rem; border-radius: 999px;
}
.loved-body { padding: .85rem .9rem 1rem; }
.loved-body h3 { margin: 0; font-size: .92rem; color: var(--vw-navy); font-weight: 800; line-height: 1.3; }
.loved-meta { margin-top: .35rem; font-size: .74rem; color: var(--vw-muted); font-weight: 700; }
.loved-price-inline {
  margin-top: .45rem; color: var(--vw-blue); font-weight: 800; font-size: .92rem;
}

/* Trust */
.section-trust {
  background: var(--vw-navy-deep);
  color: #fff;
  text-align: center;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 1.75rem;
}
.trust-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1.25rem .75rem;
}
.trust-value { font-size: 2rem; font-weight: 800; color: var(--vw-yellow); letter-spacing: -.02em; }
.trust-label { margin-top: .25rem; color: rgba(255,255,255,.75); font-weight: 600; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review-card {
  background: #fff; border: 1px solid var(--vw-line); border-radius: 14px;
  padding: 1.15rem; box-shadow: 0 2px 8px rgba(14,30,44,.03);
}
.review-stars { color: #f5b400; letter-spacing: 1px; font-size: .95rem; }
.review-badge {
  display: inline-block; margin-top: .45rem;
  background: var(--vw-blue-50); color: var(--vw-navy);
  font-size: .72rem; font-weight: 800; padding: .2rem .5rem; border-radius: 999px;
}
.review-card h3 { margin: .55rem 0; font-size: 1.05rem; color: var(--vw-navy); }
.review-card p { margin: 0; color: var(--vw-muted); font-size: .92rem; }
.review-foot {
  margin-top: 1rem; display: flex; justify-content: space-between; gap: .5rem;
  font-size: .85rem; border-top: 1px solid var(--vw-line); padding-top: .75rem;
}
.review-foot span { color: var(--vw-muted); }

/* Includes */
.include-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.include-card {
  background: #fff; border-radius: 14px; padding: 1.25rem;
  border: 1px solid var(--vw-line);
}
.include-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--vw-yellow); color: var(--vw-navy);
  display: grid; place-items: center; font-weight: 800; margin-bottom: .75rem;
}
.include-card h3 { margin: 0; color: var(--vw-navy); font-size: 1.05rem; }
.include-card p { margin: .45rem 0 0; color: var(--vw-muted); font-size: .92rem; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; align-items: start; }
.faq-item {
  border: 1px solid var(--vw-line); border-radius: 10px; background: #fff;
  padding: 0; margin-bottom: .65rem; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1rem 1.1rem;
  font-weight: 800; color: var(--vw-navy); position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  font-size: 1.2rem; color: var(--vw-muted);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0; padding: 0 1.1rem 1rem; color: var(--vw-muted); }

.section-callback { padding-top: 0; }
.callback-box {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: var(--vw-navy); color: #fff; border-radius: 14px; padding: 1.5rem 1.75rem;
}
.callback-box h2 { margin: 0; font-size: 1.35rem; }
.callback-box p { margin: .35rem 0 0; color: rgba(255,255,255,.8); }

/* Inner pages */
.page-hero { position: relative; }
.page-hero-simple { padding: 2rem 0 1rem; background: #fff; border-bottom: 1px solid var(--vw-line); }
.page-hero-photo {
  min-height: 280px; display: flex; align-items: flex-end; color: #fff; overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,30,44,.35), rgba(14,30,44,.82));
}
.page-hero-content { position: relative; z-index: 1; padding: 3rem 0 2.25rem; }
.page-title {
  margin: .4rem 0 0; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--vw-navy); font-weight: 800; letter-spacing: -.02em;
}
.page-title-on-dark { color: #fff; }
.page-sub { margin: .55rem 0 0; color: var(--vw-muted); max-width: 48ch; }
.page-sub-on-dark { color: rgba(255,255,255,.85); }
.crumbs { display: flex; gap: .4rem; flex-wrap: wrap; font-size: .84rem; color: var(--vw-muted); font-weight: 600; }
.crumbs a:hover { color: var(--vw-blue); }
.crumbs-on-dark { color: rgba(255,255,255,.7); }
.crumbs-on-dark a:hover { color: var(--vw-yellow); }

.chip-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.chip {
  min-height: 34px; padding: 0 .85rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12);
  color: #fff; font-size: .82rem; font-weight: 700; display: inline-flex; align-items: center;
}
.chip.is-active, .chip:hover { background: var(--vw-yellow); color: var(--vw-navy); border-color: var(--vw-yellow); }
.chip-row:not(.chip-row-on-dark) .chip {
  background: #fff; color: var(--vw-navy); border-color: var(--vw-line);
}
.chip-row:not(.chip-row-on-dark) .chip.is-active {
  background: var(--vw-navy); color: #fff; border-color: var(--vw-navy);
}

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pkg-card {
  background: #fff; border: 1px solid var(--vw-line); border-radius: 14px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.pkg-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pkg-card-media { aspect-ratio: 16/11; overflow: hidden; background: #e8ecf3; }
.pkg-card-media img { width: 100%; height: 100%; object-fit: cover; }
.pkg-card-body { padding: 1rem; display: grid; gap: .4rem; }
.pkg-meta { display: flex; gap: .7rem; font-size: .78rem; color: var(--vw-muted); font-weight: 700; }
.pkg-title { margin: 0; font-size: 1.05rem; color: var(--vw-navy); font-weight: 800; }
.pkg-desc {
  margin: 0; color: var(--vw-muted); font-size: .9rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pkg-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: .7rem; border-top: 1px solid var(--vw-line); margin-top: .2rem;
}
.pkg-price {
  background: var(--vw-yellow); color: var(--vw-navy);
  font-weight: 800; font-size: .85rem; padding: .25rem .55rem; border-radius: 6px;
}
.pkg-cta { color: var(--vw-blue); font-weight: 800; font-size: .85rem; }

.dest-list { display: grid; gap: .85rem; }
.dest-row {
  display: grid; grid-template-columns: 240px 1fr; gap: 1.1rem; align-items: center;
  background: #fff; border: 1px solid var(--vw-line); border-radius: 14px; padding: .75rem;
}
.dest-row:hover { box-shadow: var(--shadow); }
.dest-row-media { aspect-ratio: 16/11; border-radius: 10px; overflow: hidden; }
.dest-row-media img { width: 100%; height: 100%; object-fit: cover; }
.dest-row-title { margin: 0; color: var(--vw-navy); font-size: 1.25rem; font-weight: 800; }
.dest-row-text { margin: .4rem 0 .8rem; color: var(--vw-muted); }
.text-link { color: var(--vw-blue); font-weight: 800; }

.detail-hero {
  position: relative; min-height: 380px; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; background: var(--vw-navy-deep);
}
.detail-hero-media { position: absolute; inset: 0; }
.detail-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,30,44,.25), rgba(14,30,44,.85));
}
.detail-hero-content { position: relative; z-index: 1; padding: 3.5rem 0 2.5rem; max-width: 760px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .85rem; font-weight: 700; }
.detail-price {
  background: var(--vw-yellow); color: var(--vw-navy);
  padding: .2rem .55rem; border-radius: 6px;
}
.detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; }
.section-title-sm { font-size: 1.25rem; margin: 0 0 1rem; color: var(--vw-navy); font-weight: 800; }
.highlight-list { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.5rem; }
.highlight-list li {
  background: var(--vw-blue-50); color: var(--vw-navy);
  font-size: .82rem; font-weight: 700; padding: .35rem .7rem; border-radius: 999px;
}
.timeline { border-left: 3px solid var(--vw-yellow); margin-left: .35rem; }
.timeline-item {
  display: grid; grid-template-columns: 88px 1fr; gap: .85rem;
  padding: 0 0 1.25rem 1.1rem; position: relative;
}
.timeline-item::before {
  content: ""; position: absolute; left: -7px; top: .35rem;
  width: 11px; height: 11px; border-radius: 50%; background: var(--vw-navy);
  border: 2px solid var(--vw-yellow);
}
.timeline-day { font-size: .75rem; font-weight: 800; color: var(--vw-navy); text-transform: uppercase; }
.timeline-title { margin: 0; font-size: 1.02rem; color: var(--vw-navy); }
.timeline-text { margin: .3rem 0 0; color: var(--vw-muted); }
.aside-card {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: #fff; border: 1px solid var(--vw-line); border-radius: 14px;
  padding: 1.2rem; box-shadow: var(--shadow); display: grid; gap: .7rem;
}
.aside-card-label { font-size: .75rem; font-weight: 800; color: var(--vw-muted); text-transform: uppercase; }
.aside-card-price { font-size: 1.7rem; font-weight: 800; color: var(--vw-navy); }
.aside-card-note { font-size: .82rem; color: var(--vw-muted); }

.blog-list { background: #fff; border: 1px solid var(--vw-line); border-radius: 14px; overflow: hidden; }
.blog-row {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 1rem; align-items: start;
  padding: 1.2rem 1.25rem; border-bottom: 1px solid var(--vw-line);
}
.blog-row:last-child { border-bottom: 0; }
.blog-row:hover { background: var(--vw-blue-50); }
.blog-date { font-size: .82rem; color: var(--vw-muted); font-weight: 700; padding-top: .25rem; }
.blog-title { margin: 0; color: var(--vw-navy); font-size: 1.15rem; font-weight: 800; }
.blog-excerpt { margin: .35rem 0 0; color: var(--vw-muted); }

.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; }
.contact-form {
  display: grid; gap: .9rem; background: #fff; border: 1px solid var(--vw-line);
  border-radius: 14px; padding: 1.35rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field { display: grid; gap: .35rem; }
.label { font-size: .84rem; font-weight: 800; color: var(--vw-navy); }
.input, .textarea {
  width: 100%; border: 1px solid var(--vw-line); border-radius: 10px;
  padding: .8rem .9rem; background: #fff; color: var(--vw-black);
}
.input:focus, .textarea:focus {
  outline: none; border-color: var(--vw-navy);
  box-shadow: 0 0 0 3px rgba(0,34,113,.12);
}
.textarea { min-height: 140px; resize: vertical; }
.contact-aside { display: grid; gap: 1.1rem; }
.aside-title { margin: 0 0 .4rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; color: var(--vw-muted); }
.aside-line { display: block; font-weight: 800; color: var(--vw-navy); margin-bottom: .25rem; }
.aside-line:hover { color: var(--vw-blue); }
.aside-text { margin: 0; color: var(--vw-muted); }
.notice { padding: .9rem 1rem; border-radius: 10px; margin-bottom: .75rem; }
.notice-success { background: #e8f8ef; color: #0f7a45; }
.notice-error { background: #fdecec; color: #b42318; }
.empty-state {
  text-align: center; padding: 2.5rem 1rem; background: #fff;
  border: 1px dashed var(--vw-line); border-radius: 14px;
}
.empty-state h3 { margin: 0 0 .4rem; color: var(--vw-navy); }
.empty-state p { margin: 0 0 1rem; color: var(--vw-muted); }
.prose { color: var(--vw-muted); font-size: 1.05rem; line-height: 1.75; }
.prose-cta { margin-top: 1.5rem; }
.img-placeholder { min-height: 160px; background: linear-gradient(135deg, #d4dbeb, #e8ecf3); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }

/* Footer */
.site-footer { background: #0b1520; color: rgba(255,255,255,.78); margin-top: 1rem; }
.footer-cta-band {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.5rem; align-items: center;
  padding: 1.75rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-cta-title { font-size: 1.35rem; font-weight: 800; color: #fff; }
.footer-cta-sub { margin: .35rem 0 0; color: rgba(255,255,255,.65); }
.footer-cta-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.footer-cta-steps .step {
  background: rgba(255,255,255,.06); border-radius: 10px; padding: .75rem;
  font-size: .85rem; font-weight: 700; display: flex; gap: .55rem; align-items: start;
}
.footer-cta-steps span {
  width: 22px; height: 22px; border-radius: 50%; background: var(--vw-yellow); color: var(--vw-navy);
  display: grid; place-items: center; font-size: .75rem; flex-shrink: 0;
}
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 1.5rem;
  padding: 2rem 0 1.5rem;
}
.footer-logo { font-size: 1.3rem; font-weight: 800; color: var(--vw-yellow); margin-bottom: .4rem; }
.footer-phones { margin: .85rem 0; font-size: .9rem; display: grid; gap: .25rem; }
.footer-heading {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.45); font-weight: 800; margin-bottom: .7rem;
}
.footer-link { display: block; padding: .22rem 0; color: rgba(255,255,255,.78); }
.footer-link:hover { color: var(--vw-yellow); }
.footer-text { margin: 0 0 .6rem; font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-social { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: .75rem; }
.footer-social a:hover { color: var(--vw-yellow); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1rem 0 1.4rem; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem; color: rgba(255,255,255,.45);
}

.wa-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: #fff;
  box-shadow: 0 10px 24px rgba(37,211,102,.35);
}
.wa-fab:hover { transform: translateY(-2px); }

@media (max-width: 1100px) {
  .header-support { display: none; }
  .brand-tagline { display: none; }
  .header-inner { --header-h: 72px; }
  .brand-logo { max-width: min(240px, 58vw); padding: 5px 0 !important; max-height: calc(100% - 10px); }
  .nav { margin-left: .35rem; gap: 0; }
  .nav-link { padding: .6rem .5rem; font-size: .82rem; }
  .hero-live-grid { min-height: 0; }
  .hero-live { min-height: 0; }
  .hero-live-grid { min-height: 400px; }
  .hero-live-visual { height: 460px; min-height: 440px; margin-bottom: 0; overflow: hidden; max-width: 100%; }
  .hero-portal--cutout { width: min(100%, 500px); max-width: 100%; }
  .hero-float-card { width: 160px; }
  .hero-float-card.pos-tl { left: 4%; top: 11%; transform: none; }
  .hero-float-card.pos-tr { left: auto; right: 4%; top: 15%; transform: none; }
  .hero-float-card.pos-bl { left: 4%; bottom: 26%; transform: none; }
  .hero-float-card.pos-br { left: auto; right: 4%; bottom: 22%; transform: none; }
  .hero-float-card.pos-tl:hover,
  .hero-float-card.pos-bl:hover,
  .hero-float-card.pos-tr:hover,
  .hero-float-card.pos-br:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 980px) {
  html, body { overflow-x: clip; }
  .vw-hero-grid, .live-layout, .promo-banner, .faq-layout,
  .detail-layout, .contact-layout, .footer-cta-band, .footer-main,
  .why-layout, .special-grid, .services-grid, .search-form, .search-form-design,
  .hero-live-grid, .travel-way-layout, .who-layout, .newsletter-panel,
  .happy-layout {
    grid-template-columns: 1fr;
  }
  .loved-grid, .loved-grid-six, .include-grid, .review-grid, .pkg-grid, .trust-grid,
  .special-grid, .services-grid, .why-grid, .why-grid-five, .explorer-track,
  .happy-track {
    grid-template-columns: 1fr 1fr;
  }
  .footer-cta-steps { grid-template-columns: 1fr; }
  .dest-row { grid-template-columns: 180px 1fr; }
  .aside-card { position: static; }
  .dest-carousel { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .hero-live { padding: .75rem 0 .7rem; overflow-x: clip; }
  .hero-live-grid { min-height: 0; gap: 1rem; max-width: 100%; }
  .hero-live-copy { max-width: none; padding-bottom: .5rem; }
  .hero-intro { max-width: none; }
  .hero-live-visual {
    height: 400px;
    min-height: 380px;
    margin-bottom: 0;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
  }
  .hero-portal--cutout {
    width: min(92%, 400px);
    max-width: 100%;
    overflow: visible;
  }
  .hero-float-card { width: min(148px, 42vw); max-width: 148px; }
  /* Keep all 4 cards inside the portal box — no hanging off left/right */
  .hero-float-card.pos-tl {
    left: 2%;
    top: 10%;
    transform: none;
  }
  .hero-float-card.pos-tr {
    left: auto;
    right: 2%;
    top: 12%;
    transform: none;
  }
  .hero-float-card.pos-bl {
    left: 2%;
    bottom: 24%;
    transform: none;
  }
  .hero-float-card.pos-br {
    left: auto;
    right: 2%;
    bottom: 22%;
    transform: none;
  }
  .hero-float-card.pos-tl:hover,
  .hero-float-card.pos-bl:hover,
  .hero-float-card.pos-tr:hover,
  .hero-float-card.pos-br:hover {
    transform: translateY(-3px);
  }
  .hero-live .search-panel-design { margin-top: 0; margin-bottom: .85rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero-live-sub {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
    white-space: normal;
  }
  .footer-assoc-inner { justify-content: center; text-align: center; }
  .footer-assoc-logos { justify-content: center; }
  .footer-assoc-logos img { height: 40px; max-width: 140px; }
  .footer-assoc-logos img.assoc-logo-wide { height: 44px; max-width: 170px; }
  .footer-assoc-logos img.assoc-logo-square,
  .footer-assoc-logos img.assoc-logo-round { height: 48px; width: auto; max-width: 56px; }
  .hero-partners-logos img { height: 44px; max-width: 140px; }
  .hero-partners-logos img.assoc-logo-wide { height: 48px; max-width: 180px; }
  .hero-partners-logos img.assoc-logo-square { height: 56px; max-width: 64px; }
  .topbar { display: none; }
  .nav-toggle { display: block; }
  .header-actions {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .5rem;
    padding: .85rem 1rem 1rem; background: #fff; border-bottom: 1px solid var(--vw-line);
    box-shadow: var(--shadow);
  }
  .page-wrap.nav-open .header-actions { display: flex; }
  .nav { flex-direction: column; align-items: stretch; margin: 0; }
  .header-cta-group { flex-wrap: wrap; }
  .header-support { display: flex; flex-direction: column; align-items: flex-start; padding: 0; }
  .vw-cat-grid, .loved-grid, .loved-grid-six, .include-grid, .review-grid,
  .pkg-grid, .trust-grid, .form-row, .special-grid, .services-grid, .why-grid,
  .why-grid-five, .explorer-track, .happy-track { grid-template-columns: 1fr; }
  .deals-carousel { grid-template-columns: 1fr; }
  .deals-nav { display: none; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { min-width: 0; width: 100%; }
  .dest-row, .blog-row { grid-template-columns: 1fr; }
  .blog-row .text-link { display: none; }
  .promo-item { grid-template-columns: 1fr; }
  .search-tabs-design { gap: .35rem .85rem; }
  .dest-card { flex-basis: 220px; width: 220px; }
  .hero-live-visual { height: 360px; min-height: 340px; }
  .hero-float-card { width: min(136px, 40vw); max-width: 136px; padding: .32rem; }
  .hero-float-card img { width: 34px; height: 34px; }
  .hero-float-card strong { font-size: .66rem; }
  .hero-float-card span { font-size: .54rem; }
  .hero-float-card .hero-float-go { width: 20px; height: 20px; }
  .hero-float-card .hero-float-go svg { width: 10px; height: 10px; }
  .hero-portal--cutout { width: min(94%, 340px); }
  .hero-float-card.pos-tl { left: 1%; top: 8%; }
  .hero-float-card.pos-tr { right: 1%; top: 10%; }
  .hero-float-card.pos-bl { left: 1%; bottom: 20%; }
  .hero-float-card.pos-br { right: 1%; bottom: 18%; }
  .hero-flight-path,
  .hero-flight-plane { display: none; }
  .hero-trust-rail { gap: .45rem; }
  .hero-trust-item > span:last-child { font-size: .68rem; }
}
