:root {
  --ink: #062b63;
  --ink-2: #0b3b78;
  --teal: #0a67a8;
  --jade: #20a9ef;
  --accent: #21a8f2;
  --gold: var(--accent);
  --rose: #6d8795;
  --ice: #e9f7ff;
  --ivory: #f8fcff;
  --paper: #f0f8fc;
  --line: rgba(6, 43, 99, 0.14);
  --white: #ffffff;
  --muted: #647783;
  --shadow: 0 24px 80px rgba(6, 43, 99, 0.2);
  --radius: 8px;
  --radius-sm: 6px;
  --shell: min(1180px, calc(100vw - 40px));
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.modal-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 10px max(18px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(6, 43, 99, 0.1);
  background: rgba(248, 252, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 14px 42px rgba(6, 43, 99, 0.12);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(248, 252, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 14px 42px rgba(6, 43, 99, 0.12);
  backdrop-filter: blur(18px);
  border-color: rgba(6, 43, 99, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  max-width: 360px;
}

.brand-logo-frame {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 5px;
  border: 2px solid rgba(33, 168, 242, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(6, 43, 99, 0.16), 0 0 0 5px rgba(33, 168, 242, 0.18);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header .brand {
  max-width: none;
  justify-self: start;
}

.site-header .brand-logo-frame {
  width: 62px;
  height: 62px;
  padding: 4px;
}

.site-header .header-actions {
  justify-self: end;
}

.brand-text {
  display: grid;
  gap: 3px;
  min-width: 0;
  max-width: 270px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
}

.site-header.is-scrolled .brand-mark,
.site-header.solid .brand-mark,
.admin-brand .brand-mark {
  border-color: rgba(6, 43, 99, 0.18);
  background: var(--ink);
  color: var(--gold);
}

.site-header.is-scrolled .brand-logo-frame,
.site-header.solid .brand-logo-frame,
.admin-brand .brand-logo-frame {
  border-color: rgba(33, 168, 242, 0.92);
  background: var(--white);
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: currentColor;
  opacity: 0.82;
  font-size: 0.73rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
  max-width: 100%;
  min-width: 0;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(233, 247, 255, 0.78);
  backdrop-filter: blur(16px);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-header.is-scrolled .main-nav,
.site-header.solid .main-nav {
  border-color: rgba(6, 43, 99, 0.1);
  background: rgba(233, 247, 255, 0.78);
}

.main-nav a {
  padding: 8px 9px;
  border-radius: 999px;
  opacity: 0.9;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--teal);
  background: var(--white);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.solid .main-nav a:hover {
  color: var(--teal);
  background: var(--ice);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(6, 43, 99, 0.18);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.icon-link svg,
.float-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: #041f47;
  border-color: var(--gold);
}

.btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.btn-whatsapp {
  background: #25d366;
  color: #062417;
  border-color: #25d366;
}

.btn-ghost {
  border-color: var(--gold);
  color: #041f47;
  background: var(--gold);
}

.btn-ghost.dark,
.site-header.is-scrolled .btn-ghost,
.site-header.solid .btn-ghost {
  color: #041f47;
  border-color: var(--gold);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6, 43, 99, 0.18);
  border-radius: 50%;
  background: var(--white);
  color: currentColor;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 132px max(22px, calc((100vw - 1180px) / 2)) 52px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  transform: scale(1.02);
}

.hero-video:not([src]) {
  display: none;
}

.hero-poster {
  animation: cinematicPan 18s ease-in-out infinite alternate;
}

.hero-video.has-video + .hero-poster {
  opacity: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 22, 62, 0.84), rgba(6, 43, 99, 0.48) 46%, rgba(13, 118, 194, 0.18)),
    linear-gradient(0deg, rgba(3, 22, 62, 0.8), rgba(33, 168, 242, 0.08) 54%);
}

.hero-sheen {
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(3, 22, 62, 0.9), transparent);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: 7rem;
  max-width: 840px;
}

h2 {
  font-size: 3.55rem;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.17rem;
  color: rgba(255, 255, 255, 0.84);
}

.destination-showcase {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.destination-showcase span {
  opacity: 0.74;
}

.destination-showcase strong {
  color: var(--gold);
}

.search-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  width: min(720px, 100%);
  margin-top: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.search-bar input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: var(--white);
  background: transparent;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-panel {
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 52px;
  width: min(340px, calc(100vw - 44px));
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 18px;
  background: rgba(6, 43, 99, 0.42);
}

.hero-panel span {
  color: var(--gold);
}

.luxury-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.luxury-strip div {
  min-height: 118px;
  padding: 26px clamp(20px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.luxury-strip span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
}

.luxury-strip strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.22;
}

.section {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.text-link {
  color: var(--teal);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.destination-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.destination-card:nth-child(n + 2) {
  min-height: 201px;
}

.destination-card:first-child {
  grid-row: span 2;
}

.destination-card img,
.package-card img,
.gallery-tile img,
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.destination-card:hover img,
.package-card:hover img,
.blog-card:hover img {
  transform: scale(1.05);
}

.destination-card::after,
.package-card .media::after,
.blog-card .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 22, 62, 0.8), rgba(33, 168, 242, 0.06) 65%);
}

.destination-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.destination-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
}

.destination-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
}

.packages-section {
  background: var(--ink);
  color: var(--white);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ivory);
  color: var(--ink);
  min-width: 0;
}

.package-card .media {
  position: relative;
  overflow: hidden;
}

.badge-row {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  background: rgba(6, 43, 99, 0.68);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.package-card-content {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.price-line strong {
  font-size: 1.32rem;
  color: var(--teal);
}

.tools-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 18px;
}

.tool-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.5);
  min-width: 0;
}

.planner-tool {
  grid-row: span 2;
}

.tool-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.tool-title span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-weight: 900;
}

.tool-controls {
  display: grid;
  gap: 10px;
}

.tool-controls.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  outline-color: var(--gold);
}

textarea {
  resize: vertical;
}

.tool-output,
.compare-box,
.best-time-list {
  margin-top: 16px;
  color: var(--muted);
}

.tool-output strong,
.compare-box strong {
  color: var(--ink);
}

.estimate {
  display: block;
  margin-top: 16px;
  color: var(--teal);
  font-size: 1.55rem;
}

.compare-table {
  display: grid;
  gap: 8px;
}

.compare-table div {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.best-time-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.story-band {
  background: var(--ice);
}

.story-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
}

.testimonial-track {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.testimonial-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.testimonial-card p {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-tile {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.gallery-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tile span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(6, 43, 99, 0.64);
  font-weight: 800;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.blog-card .media {
  position: relative;
  overflow: hidden;
}

.blog-card-content {
  padding: 22px;
}

.consultation-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 64px max(22px, calc((100vw - 1180px) / 2));
  background: var(--teal);
  color: var(--white);
}

.inline-lead {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.package-hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: 132px max(22px, calc((100vw - 1180px) / 2)) 62px;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.package-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 22, 62, 0.78), rgba(6, 43, 99, 0.28)),
    linear-gradient(0deg, rgba(3, 22, 62, 0.8), transparent 62%);
}

.package-hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
}

.package-hero h1 {
  font-size: 6rem;
}

.package-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.detail-card + .detail-card {
  margin-top: 18px;
}

.detail-card h2,
.detail-card h3 {
  font-family: var(--font-display);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.detail-list li {
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--ice);
}

.itinerary-list {
  display: grid;
  gap: 14px;
}

.itinerary-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.day-chip {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-weight: 900;
}

.side-panel {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.quote-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote-card .price {
  display: block;
  margin: 8px 0 18px;
  color: var(--gold);
  font-size: 2rem;
  font-family: var(--font-display);
}

.package-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.package-gallery img,
.package-gallery video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.faq-item strong {
  display: block;
  margin-bottom: 6px;
}

.site-footer {
  padding: 72px 0 28px;
  background:
    linear-gradient(180deg, #062b63 0%, #03163e 100%);
  color: var(--white);
}

.footer-shell,
.footer-bottom {
  width: var(--shell);
  margin: 0 auto;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(160px, 0.7fr));
  gap: 34px;
  align-items: start;
}

.footer-brand .brand {
  color: var(--white);
}

.site-footer .brand-logo-frame {
  width: 54px;
  height: 54px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 20px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #25d366;
  color: #062417;
  font-weight: 900;
}

.footer-column {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.footer-column h3 {
  margin: 0 0 4px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-column a,
.footer-contact address {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  overflow-wrap: anywhere;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 45;
  display: grid;
  gap: 10px;
}

.float-btn {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(6, 43, 99, 0.22);
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(6, 43, 99, 0.28);
}

.float-btn svg {
  width: 24px;
  height: 24px;
}

.float-btn.whatsapp {
  background: #25d366;
  color: #062417;
}

.float-btn.call {
  background: var(--gold);
  color: #041f47;
}

.sticky-consult {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 45;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: min(480px, calc(100vw - 36px));
  justify-content: space-between;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(3, 22, 62, 0.92);
  color: var(--white);
  box-shadow: 0 18px 60px rgba(6, 43, 99, 0.34);
}

.sticky-consult span {
  color: rgba(255, 255, 255, 0.72);
}

.sticky-consult strong {
  color: var(--gold);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(3, 22, 62, 0.68);
}

.modal.is-open {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.lead-form {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  z-index: 120;
  transform: translateX(-50%) translateY(20px);
  max-width: min(480px, calc(100vw - 36px));
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.empty-state {
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

/* Admin */
.admin-body {
  background: #e9f7ff;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px;
  background: var(--ink);
  color: var(--white);
  overflow: auto;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav button {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  text-align: left;
}

.admin-nav button.is-active,
.admin-nav button:hover {
  background: var(--gold);
  color: #041f47;
}

.admin-main {
  min-width: 0;
  padding: 22px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
}

.admin-token {
  display: flex;
  gap: 10px;
  align-items: center;
  width: min(430px, 100%);
}

.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: block;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: start;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 20px;
}

.admin-card h2,
.admin-card h3 {
  font-family: var(--font-display);
  margin: 0 0 14px;
}

.admin-form {
  display: grid;
  gap: 12px;
}

.admin-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.admin-form label span {
  color: var(--ink);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--ice);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mini-btn {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.mini-btn.danger {
  color: #a2372d;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  color: var(--teal);
}

.leads-empty,
.leads-error {
  padding: 34px 20px;
  text-align: center;
  color: var(--muted);
}

.leads-error {
  color: #a2372d;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: var(--ice);
  color: var(--ink);
}

.status-pill[data-status="New"] { background: rgba(33, 168, 242, 0.15); color: #0c66a8; }
.status-pill[data-status="Contacted"] { background: rgba(245, 166, 35, 0.18); color: #8a5a05; }
.status-pill[data-status="Quoted"] { background: rgba(155, 89, 235, 0.16); color: #5b2d97; }
.status-pill[data-status="Converted"] { background: rgba(34, 187, 110, 0.18); color: #147a44; }
.status-pill[data-status="Lost"] { background: rgba(162, 55, 45, 0.15); color: #a2372d; }

.status-select {
  min-height: 36px;
  border-radius: 999px;
  padding: 0 14px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.status-select[data-status="New"] { border-color: rgba(33, 168, 242, 0.5); color: #0c66a8; }
.status-select[data-status="Contacted"] { border-color: rgba(245, 166, 35, 0.55); color: #8a5a05; }
.status-select[data-status="Quoted"] { border-color: rgba(155, 89, 235, 0.5); color: #5b2d97; }
.status-select[data-status="Converted"] { border-color: rgba(34, 187, 110, 0.5); color: #147a44; }
.status-select[data-status="Lost"] { border-color: rgba(162, 55, 45, 0.45); color: #a2372d; }

.leads-table td small {
  color: var(--muted);
}

@media (max-width: 700px) {
  .leads-table thead {
    display: none;
  }

  .leads-table,
  .leads-table tbody,
  .leads-table tr,
  .leads-table td {
    display: block;
    width: 100%;
  }

  .leads-table tr {
    padding: 14px;
    margin: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .leads-table td {
    border-bottom: 0;
    padding: 7px 0;
  }

  .leads-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-bottom: 3px;
  }
}

.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 38px;
}

.upload-preview span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--ice);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

@keyframes cinematicPan {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.09) translate3d(-1.6%, -1.2%, 0);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 78px;
  }

  .brand {
    max-width: clamp(220px, calc(100vw - 330px), 360px);
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: none;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(248, 252, 255, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    border-color: rgba(6, 43, 99, 0.1);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a:hover {
    color: var(--teal);
    background: var(--ice);
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 5.6rem;
  }

  h2 {
    font-size: 3rem;
  }

  .package-hero h1 {
    font-size: 4.8rem;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(248, 252, 255, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    border-color: rgba(6, 43, 99, 0.1);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: block;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.solid .menu-toggle,
  .menu-toggle.dark {
    color: var(--ink);
    border-color: rgba(6, 43, 99, 0.18);
  }

  .hero-panel {
    position: static;
    margin-top: 34px;
  }

  .package-grid,
  .tools-grid,
  .story-layout,
  .package-summary,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100vw - 28px, 1180px);
  }

  .site-header {
    min-height: 72px;
    padding: 12px 14px;
    gap: 12px;
  }

  .main-nav {
    top: 72px;
    left: 14px;
    right: 14px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 86px);
  }

  .brand-text {
    max-width: calc(100vw - 150px);
  }

  .brand-logo-frame {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    display: none;
  }

  .header-actions .btn,
  .header-actions .icon-link {
    display: none;
  }

  .hero,
  .package-hero {
    padding: 116px 14px 42px;
  }

  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .package-hero h1 {
    font-size: 3.6rem;
  }

  .search-bar,
  .inline-lead,
  .form-row,
  .tool-controls.compact,
  .consultation-band {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .search-bar {
    padding: 10px;
  }

  .search-bar input {
    min-height: 44px;
  }

  .luxury-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .destination-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .destination-card,
  .destination-card:nth-child(n + 2) {
    min-height: 330px;
  }

  .destination-card:first-child {
    grid-row: auto;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card .media {
    height: 220px;
  }

  .package-gallery,
  .detail-list,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .itinerary-item {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  .admin-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 56px 0 24px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 3.35rem;
  }

  h2,
  .package-hero h1 {
    font-size: 2.2rem;
  }

  .brand-logo-frame {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero-actions,
  .destination-showcase {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .hero-actions a,
  .hero-actions button {
    width: 100%;
  }

  .modal-card {
    padding: 24px 16px;
  }

  .floating-actions {
    right: 12px;
    bottom: 84px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .sticky-consult {
    min-width: calc(100vw - 24px);
    bottom: 12px;
    gap: 10px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Luxury travel redesign */
:root {
  --royal-blue: #0057ff;
  --sky-blue: #00c2ff;
  --luxury-gold: #f5b942;
  --midnight: #06122e;
  --cloud: #f7f9ff;
  --soft-line: rgba(4, 37, 108, 0.1);
  --font-display: "Playfair Display", Georgia, serif;
}

body[data-page="home"] {
  background: var(--cloud);
  color: #11213d;
}

body[data-page="home"] .site-header {
  min-height: 76px;
  border-bottom-color: rgba(5, 87, 255, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  backdrop-filter: blur(24px) saturate(145%);
}

body[data-page="home"] .site-header:not(.is-scrolled) {
  color: var(--white);
  background: linear-gradient(180deg, rgba(4, 13, 37, 0.54), rgba(4, 13, 37, 0));
  border-color: transparent;
  backdrop-filter: none;
}

.site-header .brand-logo-frame {
  border-color: rgba(0, 194, 255, 0.5);
  box-shadow: 0 9px 28px rgba(0, 87, 255, 0.13);
}

.main-nav {
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(6, 43, 99, 0.08);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}

.main-nav a {
  padding: 8px 11px;
  font-size: 0.73rem;
  letter-spacing: 0.01em;
}

.header-actions { gap: 7px; }

.header-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 36px;
  height: 36px;
  padding: 0 9px;
  border: 1px solid rgba(4, 37, 108, 0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  color: currentColor;
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
}

.header-control svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
body[data-page="home"] .site-header:not(.is-scrolled) .header-control { border-color: rgba(255,255,255,0.26); background: rgba(255,255,255,0.1); }

body[data-page="home"] .site-header:not(.is-scrolled) .main-nav { border-color: rgba(255,255,255,0.18); background: rgba(0,0,0,0.08); }
body[data-page="home"] .site-header:not(.is-scrolled) .btn-ghost { color: #06122e; background: var(--white); border-color: var(--white); }

body[data-page="home"] .hero {
  min-height: max(760px, 100svh);
  align-items: center;
  padding-top: 124px;
  padding-bottom: 48px;
  background: #06122e;
}

body[data-page="home"] .hero::before {
  background: linear-gradient(90deg, rgba(4, 15, 43, 0.91) 0%, rgba(4, 25, 70, 0.75) 43%, rgba(3, 42, 112, 0.15) 78%), linear-gradient(0deg, rgba(3, 15, 43, 0.58), transparent 48%);
}

body[data-page="home"] .hero-sheen {
  height: 36%;
  background: linear-gradient(0deg, rgba(3, 13, 40, 0.78), transparent);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.hero-orb-one { top: 24%; left: 36%; background: rgba(0, 194, 255, 0.13); }
.hero-orb-two { right: -140px; bottom: -120px; background: rgba(245, 185, 66, 0.14); }

body[data-page="home"] .hero-content { width: min(820px, calc(100% - 300px)); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  color: #fff;
  letter-spacing: 0.1em;
}

body[data-page="home"] .hero h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-size: clamp(3.55rem, 7.1vw, 6.9rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

body[data-page="home"] .hero-copy {
  max-width: 650px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.destination-showcase {
  display: inline-flex;
  gap: 9px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}

.destination-showcase strong { color: #fff; font-weight: 800; }

.booking-search {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.8fr auto;
  align-items: end;
  gap: 8px;
  max-width: 790px;
  margin: 26px 0 20px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 26px 60px rgba(2, 12, 38, 0.23);
  backdrop-filter: blur(18px);
}

.booking-search label { display: grid; gap: 3px; min-width: 0; padding: 4px 12px; border-right: 1px solid rgba(4,37,108,0.09); }
.booking-search label span { color: #668; font-size: 0.61rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.booking-search input, .booking-search select { width: 100%; min-width: 0; padding: 0; border: 0; outline: 0; background: transparent; color: #102143; font: inherit; font-size: .86rem; font-weight: 700; }
.booking-search input[type="month"] { min-height: 20px; }
.booking-search .btn { min-height: 48px; padding: 0 16px; border-radius: 14px; white-space: nowrap; }

body[data-page="home"] .hero-actions { margin-top: 4px; gap: 9px; }
body[data-page="home"] .hero-actions .btn { min-height: 46px; padding: 0 19px; }
body[data-page="home"] .btn-light { background: var(--white); color: #061b45; }
.btn-text { border: 0; background: transparent; color: var(--white); box-shadow: none; }
.btn-text:hover { background: rgba(255,255,255,0.1); transform: none; }

.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 27px; color: #fff; }
.hero-trust > div:first-child { display: grid; grid-template-columns: auto auto; gap: 0 8px; align-items: baseline; }
.trust-stars { color: var(--luxury-gold); letter-spacing: 0.12em; font-size: .75rem; }
.hero-trust strong { font-size: .82rem; }
.hero-trust small { grid-column: 1 / -1; color: rgba(255,255,255,.7); font-size: .68rem; }
.trust-avatars { display: flex; align-items: center; padding-left: 7px; }
.trust-avatars span, .trust-avatars b { display: grid; place-items: center; width: 26px; height: 26px; margin-left: -7px; border: 2px solid #0d2350; border-radius: 50%; background: #d5e5ff; color: #123b82; font-size: .52rem; font-weight: 900; }
.trust-avatars span:nth-child(2) { background: #f1d4c0; color: #74422b; }.trust-avatars span:nth-child(3) { background: #cbf1e5; color: #0a5b4a; }.trust-avatars b { background: #fff; color: #06317b; }

body[data-page="home"] .hero-panel {
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 48px;
  width: 220px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
}

body[data-page="home"] .hero-panel div { grid-template-columns: 66px 1fr; gap: 8px; padding: 13px 11px; border-color: rgba(255,255,255,0.13); }
body[data-page="home"] .hero-panel span { color: #b9ddff; font-size: .61rem; letter-spacing: .08em; text-transform: uppercase; }
body[data-page="home"] .hero-panel strong { font-size: .77rem; }

.luxury-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); max-width: min(1160px, calc(100vw - 40px)); margin: -1px auto 0; border: 1px solid var(--soft-line); border-top: 0; border-radius: 0 0 22px 22px; background: rgba(255,255,255,.92); box-shadow: 0 15px 50px rgba(15,44,103,.08); }
.luxury-strip div { min-height: 88px; padding: 21px 28px; border-right: 1px solid var(--soft-line); }.luxury-strip div:last-child { border-right: 0; }.luxury-strip span { color: var(--royal-blue); font-size: .63rem; letter-spacing: .12em; }.luxury-strip strong { color: #13254a; font-size: .84rem; }

body[data-page="home"] .section { padding-top: 112px; padding-bottom: 112px; }
body[data-page="home"] .section-heading { align-items: end; margin-bottom: 38px; }
body[data-page="home"] .section-heading h2 { max-width: 650px; font-size: clamp(2.25rem, 4.4vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
body[data-page="home"] .eyebrow { color: var(--royal-blue); font-size: .66rem; font-weight: 900; letter-spacing: .14em; }
.centered-heading { display: grid; justify-items: center; text-align: center; }.centered-heading h2 { max-width: 680px; }

body[data-page="home"] .destination-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
body[data-page="home"] .destination-card { position: relative; display: flex; min-height: 430px; overflow: hidden; border-radius: 24px; color: var(--white); background: #0c2e66; box-shadow: 0 18px 45px rgba(15,43,98,.12); isolation: isolate; }
body[data-page="home"] .destination-card:first-child { grid-column: span 2; grid-row: span 1; }
body[data-page="home"] .destination-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.8,.2,1); z-index: -2; }
.destination-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(3,20,57,.04) 25%, rgba(3,16,47,.88) 100%); }
body[data-page="home"] .destination-card-content { display: flex; flex-direction: column; justify-content: end; width: 100%; padding: 25px; transform: none; }
body[data-page="home"] .destination-card-content .eyebrow { color: #c1e9ff; margin-bottom: 5px; }.destination-card h3 { margin: 0; font-size: clamp(1.55rem, 2.6vw, 2.25rem); }.destination-card:first-child h3 { font-size: clamp(2rem, 3.4vw, 3.25rem); }
.destination-meta { margin-top: 13px; }.destination-meta .pill { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.13); color: #fff; font-size: .68rem; }.destination-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s ease, opacity .25s ease, margin .25s ease; }.destination-actions a { font-size: .77rem; font-weight: 800; }.destination-actions button { padding: 8px 12px; border: 0; border-radius: 999px; background: #fff; color: #092559; font: inherit; font-size: .7rem; font-weight: 900; cursor: pointer; }
.destination-card:hover img { transform: scale(1.08); }.destination-card:hover .destination-actions { max-height: 42px; margin-top: 16px; opacity: 1; }

body[data-page="home"] .packages-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #edf5ff, #fff 55%, #f2f9ff); }.packages-section::before { content:""; position:absolute; width:520px; height:520px; right:-180px; top:-170px; border-radius:50%; background:rgba(0,194,255,.11); filter:blur(8px); }.packages-section .shell { position:relative; }
body[data-page="home"] .package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }.package-card { overflow: hidden; border: 1px solid rgba(4,37,108,.08); border-radius: 22px; background: rgba(255,255,255,.92); box-shadow: 0 14px 38px rgba(15,43,98,.09); transition: transform .3s ease, box-shadow .3s ease; }.package-card:hover { transform: translateY(-7px); box-shadow: 0 27px 58px rgba(15,43,98,.16); }.package-card .media { aspect-ratio: 1.35 / 1; }.package-card-content { padding: 22px; }.package-card h3 { font-size: 1.3rem; line-height:1.15; }.package-card-content > div:first-child > p:not(.eyebrow) { min-height: 52px; color:#64718a; font-size:.8rem; }.package-card .btn { width:100%; min-height:44px; border-radius:12px; }.badge { background: var(--royal-blue); }.price-line strong { color: var(--royal-blue); }

.visa-section { overflow:hidden; color:#fff; background: radial-gradient(circle at 80% 20%, rgba(0,194,255,.24), transparent 26%), linear-gradient(125deg, #061230, #073a87); }.visa-layout { display:grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items:center; }.visa-copy h2 { margin:0 0 18px; font-size:clamp(2.45rem,4.6vw,4.8rem); line-height:.99; letter-spacing:-.055em; }.visa-copy > p { max-width:470px; color:rgba(255,255,255,.75); }.visa-copy .eyebrow { color:#7de4ff; }.visa-copy .text-link { color:#fff; margin-top:17px; }.visa-timeline { display:grid; gap:12px; }.visa-timeline article { display:grid; grid-template-columns:50px 1fr; gap:15px; padding:20px; border:1px solid rgba(255,255,255,.17); border-radius:17px; background:rgba(255,255,255,.08); backdrop-filter:blur(12px); }.visa-timeline article > span { display:grid; place-items:center; width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.15); color:#8ee9ff; font-size:.7rem; font-weight:900; }.visa-timeline strong { font-size:1rem; }.visa-timeline p { margin:4px 0 0; color:rgba(255,255,255,.66); font-size:.8rem; }

.why-section { background:#fff; }.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }.why-grid article { min-height:190px; padding:26px; border:1px solid var(--soft-line); border-radius:20px; background:linear-gradient(145deg,#fff,#f8fbff); transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease; }.why-grid article:hover { transform:translateY(-5px); border-color:rgba(0,87,255,.24); box-shadow:0 18px 38px rgba(4,55,140,.1); }.feature-icon { display:grid; place-items:center; width:38px; height:38px; margin-bottom:20px; border-radius:12px; background:linear-gradient(135deg,#dff5ff,#ebedff); color:var(--royal-blue); font-size:1.15rem; }.why-grid h3 { margin:0 0 7px; font-size:1rem; }.why-grid p { margin:0; color:#71809a; font-size:.8rem; }

.story-band { background:#f2f7ff; }.review-summary { display:flex; align-items:center; gap:9px; margin:-14px 0 20px; }.review-summary strong { font-size:1.2rem; }.review-summary p { margin:0; color:#6e7d95; font-size:.76rem; }.testimonial-track { gap:14px; }.testimonial-card { border:1px solid var(--soft-line); border-radius:18px; background:#fff; box-shadow:0 12px 30px rgba(11,52,116,.07); }.testimonial-card p { font-size:.92rem; }.gallery-mosaic { gap:10px; }.gallery-tile { border-radius:16px; }

.faq-section { padding-top:92px !important; }.faq-grid { max-width:850px; margin:0 auto; display:grid; gap:10px; }.faq-grid details { overflow:hidden; border:1px solid var(--soft-line); border-radius:15px; background:#fff; }.faq-grid summary { display:flex; align-items:center; justify-content:space-between; padding:19px 22px; cursor:pointer; color:#0c2149; font-size:.94rem; font-weight:800; list-style:none; }.faq-grid summary::-webkit-details-marker { display:none; }.faq-grid summary::after { content:"+"; color:var(--royal-blue); font-size:1.35rem; font-weight:400; }.faq-grid details[open] summary::after { content:"\\2212"; }.faq-grid p { max-width:690px; margin:0; padding:0 22px 20px; color:#65738d; font-size:.85rem; }

.consultation-band { margin:0 max(20px,calc((100vw - 1180px)/2)); border-radius:26px; background:linear-gradient(115deg,#0057ff,#0079ff 58%,#00b8f5); box-shadow:0 24px 65px rgba(0,87,255,.24); }.consultation-band .eyebrow { color:#ccefff; }.consultation-band h2 { max-width:620px; }.inline-lead { padding:8px; border-radius:16px; background:rgba(255,255,255,.14); }.inline-lead input { border-color:rgba(255,255,255,.23); background:rgba(255,255,255,.92); }.inline-lead .btn { background:var(--midnight); color:#fff; }

.site-footer { margin-top:92px; background:#06122e; }.social-links { display:flex; gap:8px; margin-top:22px; }.social-links a { display:grid; place-items:center; width:31px; height:31px; border:1px solid rgba(255,255,255,.2); border-radius:50%; color:#fff; font-size:.7rem; font-weight:800; }.social-links a:hover { background:#fff; color:var(--royal-blue); }

.travel-chat { position:fixed; z-index:97; right:24px; bottom:27px; }.chat-launcher { display:flex; align-items:center; gap:9px; min-height:50px; padding:0 17px 0 11px; border:0; border-radius:999px; background:#061b45; color:#fff; box-shadow:0 15px 35px rgba(4,20,61,.25); cursor:pointer; font:inherit; font-size:.75rem; font-weight:800; }.chat-launcher > span:first-child { display:grid; place-items:center; width:31px; height:31px; border-radius:50%; background:linear-gradient(135deg,#00c2ff,#0057ff); }.chat-panel { position:absolute; right:0; bottom:62px; width:min(360px,calc(100vw - 30px)); overflow:hidden; border:1px solid rgba(0,87,255,.12); border-radius:19px; background:#fff; color:#122248; box-shadow:0 25px 70px rgba(4,20,61,.22); }.chat-heading { display:flex; align-items:center; justify-content:space-between; padding:16px 17px; background:linear-gradient(120deg,#0057ff,#00aeea); color:#fff; }.chat-heading span,.chat-heading small { display:block; }.chat-heading span { font-size:.82rem; font-weight:900; }.chat-heading small { margin-top:2px; opacity:.76; font-size:.62rem; }.chat-heading button { border:0; background:transparent; color:#fff; cursor:pointer; font-size:1.4rem; }.chat-messages { display:grid; gap:9px; max-height:235px; min-height:128px; padding:15px; overflow:auto; background:#f8faff; }.chat-messages p { width:fit-content; max-width:87%; margin:0; padding:10px 12px; border-radius:12px 12px 12px 3px; background:#e9f1ff; font-size:.76rem; line-height:1.45; }.chat-messages .user { justify-self:end; border-radius:12px 12px 3px 12px; background:#0057ff; color:#fff; }.chat-messages .reply { background:#e9f1ff; }.chat-form { display:flex; gap:8px; padding:11px; border-top:1px solid #e7ecf6; }.chat-form input { flex:1; min-width:0; border:0; outline:0; font:inherit; font-size:.77rem; }.chat-form button { display:grid; place-items:center; width:30px; height:30px; border:0; border-radius:9px; background:#0057ff; color:#fff; cursor:pointer; }

html[data-theme="dark"] body[data-page="home"] { background:#09142d; color:#ecf3ff; } html[data-theme="dark"] body[data-page="home"] .site-header { background:rgba(6,18,46,.82); color:#fff; border-color:rgba(255,255,255,.1); } html[data-theme="dark"] .main-nav, html[data-theme="dark"] .header-control { border-color:rgba(255,255,255,.14); background:rgba(255,255,255,.08); } html[data-theme="dark"] body[data-page="home"] .section:not(.visa-section), html[data-theme="dark"] .why-section { background:#09142d; } html[data-theme="dark"] .packages-section, html[data-theme="dark"] .story-band { background:#0d1b39; } html[data-theme="dark"] .section-heading h2, html[data-theme="dark"] .why-grid h3, html[data-theme="dark"] .faq-grid summary { color:#f2f6ff; } html[data-theme="dark"] .package-card, html[data-theme="dark"] .testimonial-card, html[data-theme="dark"] .why-grid article, html[data-theme="dark"] .faq-grid details { border-color:rgba(255,255,255,.1); background:#112143; } html[data-theme="dark"] .package-card-content > div:first-child > p:not(.eyebrow), html[data-theme="dark"] .why-grid p, html[data-theme="dark"] .faq-grid p, html[data-theme="dark"] .review-summary p { color:#b6c5dd; } html[data-theme="dark"] .luxury-strip { border-color:rgba(255,255,255,.1); background:#0e1e40; } html[data-theme="dark"] .luxury-strip div { border-color:rgba(255,255,255,.1); } html[data-theme="dark"] .luxury-strip strong { color:#eaf3ff; }

@media (max-width: 1180px) {
  body[data-page="home"] .hero-content { width:min(760px,100%); }
  body[data-page="home"] .hero-panel { display:none; }
  .language-control, .theme-toggle { display:none; }
  body[data-page="home"] .destination-grid { grid-template-columns:repeat(2,1fr); }
  body[data-page="home"] .package-grid { grid-template-columns:repeat(2,1fr); }
  .visa-layout { gap:45px; }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero { min-height:780px; padding-top:115px; padding-bottom:38px; align-items:center; }
  body[data-page="home"] .hero h1 { font-size:clamp(3.1rem,14vw,4.7rem); }
  .booking-search { grid-template-columns:1fr 1fr; border-radius:18px; }.booking-search label:nth-child(2) { border-right:0; }.booking-search label:nth-child(3) { display:none; }.booking-search .btn { grid-column:1 / -1; }.booking-search label { padding:4px 8px; }.booking-search .btn { width:100%; }
  .luxury-strip { grid-template-columns:1fr; border-radius:0 0 18px 18px; }.luxury-strip div { min-height:65px; padding:15px 18px; border-right:0; border-bottom:1px solid var(--soft-line); }.luxury-strip div:last-child { border-bottom:0; }
  body[data-page="home"] .section { padding-top:75px; padding-bottom:75px; }.section-heading { align-items:start !important; }.section-heading .text-link { margin-top:12px; }
  body[data-page="home"] .destination-grid, body[data-page="home"] .package-grid, .why-grid { grid-template-columns:1fr; }.destination-card, body[data-page="home"] .destination-card:first-child { grid-column:auto; min-height:345px; }.destination-card:first-child h3 { font-size:2.25rem; }.destination-actions { max-height:42px; margin-top:16px; opacity:1; }
  .visa-layout { grid-template-columns:1fr; gap:34px; }.visa-timeline article { padding:16px; }.consultation-band { margin:0 14px; padding:31px 19px; border-radius:20px; }.inline-lead { display:grid; }.site-footer { margin-top:72px; }.travel-chat { right:14px; bottom:17px; }.chat-launcher span:last-child { display:none; }.chat-launcher { width:50px; padding:0; justify-content:center; }.hero-trust { margin-top:19px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero-poster { animation: none; }
}
