/* Travel Dimension — Travel website */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-tint: #eef4f3;
  --ink: #0d1b2a;
  --ink-soft: #2c3e50;
  --ink-muted: #5a6b7b;
  --line: #e6eaee;
  --brand: #0d8b76;       /* deep teal — travel/ocean */
  --brand-deep: #086354;
  --accent: #ff7849;      /* sunset orange */
  --accent-deep: #e85d2e;
  --gold: #f4c95d;
  --wa: #25d366;
  --wa-deep: #128c7e;
  --shadow-sm: 0 1px 2px rgba(13,27,42,.06), 0 2px 8px rgba(13,27,42,.04);
  --shadow-md: 0 6px 20px rgba(13,27,42,.08), 0 2px 6px rgba(13,27,42,.04);
  --shadow-lg: 0 24px 60px rgba(13,27,42,.18), 0 8px 20px rgba(13,27,42,.08);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
svg { display: block; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────────── */
.shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) { .shell { padding: 0 18px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand);
  background: var(--bg-tint);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.eyebrow svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.1; font-weight: 700; }
h1 { font-size: clamp(34px, 6vw, 64px); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(22px, 2.6vw, 28px); }

p { color: var(--ink-soft); }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
  min-height: 44px;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-deep); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(255,255,255,.95); color: var(--ink); }
.btn-ghost:hover { background: #fff; box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-sm { padding: 9px 14px; font-size: 13px; min-height: 40px; }
.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

/* ── Top bar ────────────────────────────── */
.top-strip {
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  padding: 8px 0;
}
.top-strip .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-strip .left { display: flex; gap: 18px; align-items: center; opacity: .9; }
.top-strip .right { display: flex; gap: 18px; align-items: center; opacity: .9; }
.top-strip a { display: inline-flex; align-items: center; min-height: 32px; }
.top-strip a:hover { color: var(--gold); }
.top-strip .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #6ce4c5;
  box-shadow: 0 0 0 0 rgba(108,228,197,.7);
  animation: pulse 1.8s infinite;
  display: inline-block;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(108,228,197,.7); }
  70% { box-shadow: 0 0 0 7px rgba(108,228,197,0); }
  100% { box-shadow: 0 0 0 0 rgba(108,228,197,0); }
}
@media (max-width: 720px) {
  .top-strip .left .hide-sm { display: none; }
  .top-strip .right { display: none; }
  .top-strip .shell { justify-content: center; }
  .top-strip { font-size: 11.5px; }
}

/* ── Nav ────────────────────────────────── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.nav-wrap.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name small { font-size: 10px; font-weight: 600; color: var(--ink-muted); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--brand); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.menu-btn {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.menu-btn svg { width: 20px; height: 20px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-cta .btn:not(.btn-wa) { display: none; }
}
@media (max-width: 480px) {
  .brand-name small { display: none; }
  .nav-cta .btn-wa span.label-full { display: none; }
  .nav-cta .btn-wa.btn-sm {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
  }
  .nav-cta .btn-wa.btn-sm svg {
    width: 20px;
    height: 20px;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 100;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,0,.2,1);
  display: flex;
  flex-direction: column;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 22px;
  gap: 4px;
}
.mobile-menu .links a {
  font-size: 22px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .links a span { color: var(--ink-muted); font-size: 18px; }
.mobile-menu .foot {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Hero ──────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.05);
}
.hero-slide.active { opacity: 1; animation: kenburns 9s ease forwards; }
@keyframes kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1.14); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,27,42,.35) 0%, rgba(13,27,42,.15) 35%, rgba(13,27,42,.55) 100%),
    linear-gradient(90deg, rgba(13,27,42,.55) 0%, rgba(13,27,42,0) 60%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.hero h1 { color: #fff; max-width: 820px; }
.hero h1 .accent-word { color: var(--gold); font-style: italic; }
.hero p.lead {
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 1.6vw, 19px);
  max-width: 580px;
  margin-top: 18px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Search panel */
.search-panel {
  margin-top: 36px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 4px;
  max-width: 880px;
  color: var(--ink);
}
.search-field {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: text;
  transition: background .15s;
}
.search-field:hover { background: var(--bg-soft); }
.search-field .field-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.search-field input, .search-field select {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  width: 100%;
  padding: 0;
  min-height: 32px;
  line-height: 1.4;
  appearance: none;
}
.search-field input[list],
.search-field input[type="date"],
.search-field select { cursor: pointer; }
.search-field input[type="date"] { color-scheme: light; }
.search-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: .72;
}
.search-submit {
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-sm);
  padding: 14px 22px;
  font-weight: 700;
  font-size: 15px;
  transition: background .15s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.search-submit svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.search-submit:hover { background: var(--accent-deep); transform: translateY(-1px); }
@media (max-width: 760px) {
  .search-panel { grid-template-columns: 1fr 1fr; }
  .search-submit { grid-column: span 2; padding: 14px; }
}
@media (max-width: 420px) {
  .search-panel { grid-template-columns: 1fr; }
  .search-submit { grid-column: 1; }
}

.hero-trust {
  display: flex;
  gap: 26px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.hero-trust .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Hero pagination */
.hero-pager {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero-pager .pip {
  width: 44px; height: 44px;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.hero-pager .pip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: rgba(255,255,255,.35);
  border-radius: 2px;
}
.hero-pager .pip.active::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 1.5px);
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  animation: fillPip 6s linear forwards;
}
@keyframes fillPip { from { transform: translateX(-100%); } to { transform: translateX(0); } }

@media (max-width: 720px) {
  .hero-pager { right: 18px; bottom: 18px; }
  .hero-pager .pip { width: 44px; }
}

/* ── Logo strip ─────────────────────────── */
.partner-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  background: var(--bg-soft);
}
.partner-strip .row {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.partner-strip .label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); }
.partner-strip .logos { display: flex; gap: 32px; flex-wrap: wrap; opacity: .65; }
.partner-strip .logos span { font-weight: 700; font-size: 14px; letter-spacing: 0.04em; color: var(--ink-muted); }

/* ── Section ───────────────────────────── */
section { scroll-margin-top: 80px; }
.section { padding: 80px 0; }
@media (max-width: 720px) { .section { padding: 56px 0; } }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head .meta { max-width: 560px; }
.section-head .meta h2 { margin-top: 12px; }
.section-head .meta p { margin-top: 12px; font-size: 16px; }
.section-head .right { display: flex; gap: 8px; }

/* ── Tabs ─────────────────────────────── */
.tabs {
  display: inline-flex;
  background: var(--bg-soft);
  border-radius: var(--r-pill);
  padding: 5px;
  gap: 2px;
  margin-bottom: 28px;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  padding: 9px 18px;
  min-height: 40px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-muted);
  white-space: nowrap;
  transition: all .2s;
}
.tab:hover { color: var(--ink); }
.tab.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ── Destination card ───────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1080px) { .dest-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 420px) { .dest-grid { grid-template-columns: 1fr; } }

.dest-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dest-link {
  display: block;
  height: 100%;
}
.dest-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.dest-card.large .dest-photo { aspect-ratio: 4 / 4.6; }
.dest-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.6) 100%);
}
.dest-photo .badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  z-index: 2;
}
.dest-photo .badge.hot { background: var(--accent); color: #fff; }
.dest-card .heart {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  z-index: 2;
  transition: transform .15s;
}
.dest-card .heart:hover { transform: scale(1.1); }
.dest-card .heart svg { width: 18px; height: 18px; color: var(--ink-soft); }
.dest-card .heart.on svg { color: var(--accent); fill: var(--accent); }

.dest-photo .info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  z-index: 2;
  color: #fff;
}
.dest-photo .country {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: .85;
  display: flex; align-items: center; gap: 6px;
}
.dest-photo .country svg {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}
.dest-photo .city {
  font-size: 22px;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.dest-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
}
.dest-meta .price small { color: var(--ink-muted); font-size: 12px; font-weight: 500; display: block; }
.dest-meta .price strong { font-size: 18px; font-weight: 800; color: var(--ink); }
.dest-meta .price strong span { font-size: 13px; font-weight: 600; color: var(--ink-muted); }
.dest-meta .price .strike {
  display: block;
  margin-top: 1px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: line-through;
}
.dest-meta .rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.dest-meta .rating svg { width: 14px; height: 14px; color: var(--gold); fill: var(--gold); }
.dest-days {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 2;
  background: rgba(13,27,42,.7);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

/* ── Services ───────────────────────────── */
/* Package pages */
.package-page {
  background: #fff;
}
.package-hero {
  position: relative;
  min-height: 68vh;
  padding: 150px 0 72px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.package-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,.24) 0%, rgba(13,27,42,.62) 55%, rgba(13,27,42,.9) 100%);
}
.package-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.back-link,
.package-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}
.back-link {
  color: rgba(255,255,255,.88);
  margin-bottom: 24px;
}
.back-link svg {
  width: 18px;
  transform: rotate(180deg);
}
.package-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.package-kicker svg { width: 15px; height: 15px; }
.package-hero h1 {
  margin-top: 14px;
  max-width: 12ch;
}
.package-hero p {
  margin-top: 18px;
  max-width: 720px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.65;
}
.package-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.package-summary {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.package-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.package-summary-grid > div {
  min-height: 110px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.package-summary-grid span,
.package-summary-grid small {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.package-summary-grid strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}
.package-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}
.package-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.package-panel {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  background: #fff;
}
.package-panel h2 {
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 34px);
}
.highlight-grid,
.package-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.highlight-item,
.package-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  color: var(--ink-soft);
  font-weight: 600;
}
.highlight-item svg,
.package-list-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--brand);
}
.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.itinerary-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.itinerary-item.with-image {
  grid-template-columns: 112px minmax(140px, 190px) minmax(0, 1fr);
  align-items: start;
}
.itinerary-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--r-sm) - 4px);
  background: var(--bg-soft);
}
.day-pill {
  align-self: start;
  justify-self: start;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: var(--bg-tint);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.itinerary-item h3 { font-size: 20px; }
.itinerary-item p {
  margin-top: 8px;
  line-height: 1.65;
}
.package-sidebar {
  position: sticky;
  top: 102px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote-box,
.notes-box {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  background: var(--bg-soft);
}
.quote-box h3,
.notes-box h3 {
  margin-top: 12px;
  font-size: 24px;
}
.quote-box p {
  margin: 12px 0 18px;
  line-height: 1.6;
}
.quote-box .btn {
  width: 100%;
  margin-top: 10px;
}
.notes-box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
  list-style: disc;
  padding-left: 18px;
  color: var(--ink-soft);
}
.related-section {
  background: var(--bg-soft);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  transition: transform .2s, box-shadow .2s;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.related-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-sm);
  background-size: cover;
  background-position: center;
}
.related-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}
.related-card h3 {
  margin-top: 4px;
  font-size: 19px;
}
.related-card p {
  margin-top: 6px;
  font-size: 13px;
}
.empty-package {
  max-width: 760px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.empty-package h1 {
  margin-top: 16px;
  max-width: 12ch;
}
.empty-package p {
  margin-top: 14px;
  max-width: 58ch;
  font-size: 18px;
}
@media (max-width: 980px) {
  .package-layout { grid-template-columns: 1fr; }
  .package-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .package-hero {
    min-height: 620px;
    padding: 130px 0 46px;
  }
  .package-hero p { font-size: 16px; }
  .package-summary-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-grid,
  .package-list-grid { grid-template-columns: 1fr; }
  .itinerary-item,
  .itinerary-item.with-image { grid-template-columns: 1fr; }
  .itinerary-image { aspect-ratio: 16 / 9; }
}
@media (max-width: 520px) {
  .package-summary-grid { grid-template-columns: 1fr; }
  .package-panel,
  .quote-box,
  .notes-box { padding: 20px; }
  .related-card { grid-template-columns: 1fr; }
  .package-hero-actions .btn { width: 100%; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .2s;
}
.svc-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-tint);
  color: var(--brand);
  display: grid; place-items: center;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-card.featured { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%); color: #fff; border-color: transparent; }
.svc-card.featured .svc-icon { background: rgba(255,255,255,.18); color: #fff; }
.svc-card.featured p { color: rgba(255,255,255,.85); }
.svc-card.featured .more { color: var(--gold); }
.svc-card h3 { font-size: 18px; font-weight: 700; }
.svc-card p { font-size: 14px; line-height: 1.55; }
.svc-card .more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  transition: gap .15s;
}
.svc-card .more svg,
.cta-card .arrow svg {
  width: 24px;
  height: 14px;
  flex: 0 0 24px;
}
.svc-card:hover .more { gap: 10px; }

/* ── Founder ───────────────────────────── */
.founder-section {
  background: var(--bg-soft);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .founder-grid { grid-template-columns: 1fr; gap: 32px; } }

.founder-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.founder-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.founder-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.founder-badge .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.founder-badge .lab { font-size: 12px; font-weight: 600; color: var(--ink-soft); line-height: 1.3; }

.founder-stamp {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.founder-stamp .dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; }

.founder-body h2 { margin-bottom: 8px; }
.founder-body .role { color: var(--brand); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.founder-body .quote {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 18px;
  padding: 18px 20px;
  background: #fff;
  border-left: 3px solid var(--accent);
  border-radius: var(--r-sm);
}
.founder-body .bio { margin-top: 18px; font-size: 15px; line-height: 1.7; }
.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.founder-stats .cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
}
.founder-stats .cell .n { font-size: 28px; font-weight: 800; color: var(--ink); }
.founder-stats .cell .l { font-size: 12px; font-weight: 600; color: var(--ink-muted); margin-top: 2px; }

/* ── Steps ──────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  position: relative;
}
.step .n {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--brand);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}
.step h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; line-height: 1.55; }

/* ── Testimonials ─────────────────────── */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .tst-grid { grid-template-columns: 1fr; } }

.tst-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .2s;
}
.tst-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tst-card .stars { color: var(--gold); display: inline-flex; gap: 2px; }
.tst-card .stars svg { width: 16px; height: 16px; fill: currentColor; }
.tst-card .quote { font-size: 16px; line-height: 1.55; color: var(--ink); }
.tst-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.tst-card .av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 16px;
  background-size: cover;
  background-position: center;
}
.tst-card .nm { font-weight: 700; font-size: 14.5px; }
.tst-card .tr { font-size: 12.5px; color: var(--ink-muted); margin-top: 2px; }

/* ── Instagram pulse ───────────────────── */
.social-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.social-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) 1.8fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 960px) {
  .social-layout { grid-template-columns: 1fr; }
}
.ig-profile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ig-profile-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ig-profile-top .brand-mark {
  width: 52px;
  height: 52px;
}
.ig-handle {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.ig-category {
  color: var(--ink-muted);
  font-size: 13px;
  margin-top: 2px;
}
.ig-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ig-stat {
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  padding: 14px;
}
.ig-stat strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}
.ig-stat span {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ig-highlights {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.ig-highlights span {
  color: var(--ink-muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ig-highlights div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ig-highlights b {
  background: var(--bg-tint);
  color: var(--brand-deep);
  border-radius: var(--r-pill);
  padding: 7px 11px;
  font-size: 12px;
  line-height: 1;
}
.ig-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 760px) {
  .ig-feed-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .ig-feed-grid { grid-template-columns: 1fr; }
}
.ig-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.ig-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.ig-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-tint);
  overflow: hidden;
}
.ig-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ig-thumb::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(180deg, rgba(13,27,42,0) 0%, rgba(13,27,42,.62) 100%);
}
.ig-thumb span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  background: rgba(13,27,42,.58);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ig-copy {
  padding: 16px;
}
.ig-copy h3 {
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: 0;
}
.ig-copy p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* ── Stats band ──────────────────────── */
.stats-band {
  background: var(--ink);
  color: #fff;
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
.stats-grid .cell .n {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
}
.stats-grid .cell .l {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.stats-grid .cell .d {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}

/* ── CTA cards ───────────────────────── */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 880px) { .cta-grid { grid-template-columns: 1fr; } }

.cta-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 40px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.cta-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cta-wa { background: linear-gradient(135deg, #128c7e 0%, #25d366 100%); }
.cta-email { background: linear-gradient(135deg, #0d1b2a 0%, #0d8b76 58%, #4e8ea0 100%); }
.cta-card .top { display: flex; justify-content: space-between; align-items: start; gap: 16px; }
.cta-card .ico {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
}
.cta-card .ico svg { width: 26px; height: 26px; }
.cta-card .pip {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 6px;
  line-height: 1.25;
  max-width: min(100%, 280px);
  overflow-wrap: anywhere;
  text-align: right;
}
.cta-card h3 { font-size: clamp(24px, 3vw, 32px); margin-top: 28px; max-width: 16ch; line-height: 1.15; }
.cta-card p { color: rgba(255,255,255,.85); font-size: 14.5px; line-height: 1.55; margin-top: 10px; max-width: 38ch; }
.cta-card .arrow {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}
.cta-card .arrow svg { transition: transform .25s; }
.cta-card:hover .arrow svg { transform: translateX(6px); }
@media (max-width: 520px) {
  .cta-card { padding: 28px; min-height: 300px; }
  .cta-card .pip { max-width: 192px; font-size: 10.5px; }
}

/* ── Newsletter ──────────────────────── */
.nl {
  background: var(--bg-tint);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 880px) { .nl { grid-template-columns: 1fr; padding: 28px; } }
.nl h3 { font-size: clamp(22px, 2.6vw, 30px); }
.nl p { font-size: 14px; margin-top: 8px; }
.nl-form {
  display: flex;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 5px;
  box-shadow: var(--shadow-sm);
  gap: 4px;
}
.nl-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 15px;
  background: transparent;
  min-width: 0;
}
.nl-form button {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  white-space: nowrap;
  transition: background .15s;
}
.nl-form button:hover { background: var(--brand-deep); }
.form-status {
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}
@media (max-width: 520px) {
  .nl-form {
    border-radius: var(--r-md);
    flex-direction: column;
    padding: 8px;
  }
  .nl-form button { width: 100%; }
}

/* ── Footer ──────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  padding: 60px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: span 2; }
}
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } .foot-brand { grid-column: span 1; } }
.foot-brand .brand { color: #fff; font-size: 22px; }
.foot-brand .brand small { color: rgba(255,255,255,.55); }
.foot-brand p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 38ch; }
.foot-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.foot-socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: background .15s, transform .15s;
}
.foot-socials a:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.foot-socials svg { width: 18px; height: 18px; }
.foot-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.foot-col ul { display: flex; flex-direction: column; gap: 2px; }
.foot-col a { font-size: 14px; color: rgba(255,255,255,.7); display: inline-flex; align-items: center; min-height: 32px; }
.foot-col a:hover { color: #fff; }

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Floating WhatsApp ─────────────────── */
.float-wa {
  position: fixed;
  right: 18px; bottom: 18px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid; place-items: center;
  z-index: 60;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.06); }
.float-wa::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: ringPulse 2s infinite;
}
@keyframes ringPulse {
  0% { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.float-wa svg { width: 28px; height: 28px; }

/* ── Reveal ─────────────────────────── */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

::selection { background: var(--brand); color: #fff; }
