:root {
  --bg: #070b17;
  --surface: rgba(20, 29, 54, 0.62);
  --surface-strong: #0f1b35;
  --text: #eef4ff;
  --muted: #a9b6ce;
  --accent: #00d4ff;
  --accent-2: #8a7dff;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #12244b 0, var(--bg) 40%), var(--bg);
  -webkit-text-size-adjust: 100%;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.3;
  animation: drift 12s ease-in-out infinite alternate;
}

.bg-orb-1 { width: 300px; height: 300px; background: #2d6dff; top: -100px; right: -80px; }
.bg-orb-2 { width: 220px; height: 220px; background: #00d4ff; bottom: 40px; left: -90px; animation-duration: 15s; }

@keyframes drift {
  to { transform: translateY(30px) translateX(20px); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(7, 11, 23, 0.7);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.logo-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.logo-text {
  font-size: 1.04rem;
  letter-spacing: 0.02em;
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #081022;
}

.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: var(--muted); transition: 0.3s; }
.site-nav a:hover, .site-nav .is-active { color: #fff; }

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  min-height: 44px;
  font-weight: 600;
  color: #061024;
  background: linear-gradient(135deg, var(--accent), #69f1ff);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.28);
}

.btn-sm { padding: 8px 12px; font-size: 0.86rem; }
.site-nav .nav-cta {
  color: #ffffff;
  background: #1f4fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 20px rgba(31, 79, 255, 0.35);
}
.site-nav .nav-cta:hover {
  color: #ffffff;
  background: #3f69ff;
}
.btn-ghost {
  color: #fff;
  border: 1px solid var(--border);
  background: transparent;
  box-shadow: none;
}

.hero, .sub-hero { padding: 90px 0 50px; }
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero > .container {
  position: relative;
  z-index: 2;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  /* visibility must stay visible so iOS/Safari can decode & buffer the “hidden” layer */
  visibility: visible;
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.65s ease;
}
.hero-video.is-visible {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-video-slot--inactive {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 24, 0.36), rgba(6, 11, 24, 0.24));
}
.destination-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: clamp(320px, 46vh, 520px);
  display: flex;
  align-items: flex-end;
}
.destination-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.destination-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 24, 0.62), rgba(6, 11, 24, 0.42));
  z-index: 1;
}
.destination-hero > .container {
  position: relative;
  z-index: 2;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 34px; align-items: center; }

h1, h2, h3, h4, h5 { margin: 0 0 12px; line-height: 1.1; }
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.4rem); }
p { margin: 0 0 14px; color: var(--muted); }
.lead { font-size: 1.08rem; max-width: 62ch; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; font-size: 0.78rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.glass-card, .info-card, .quote-card, .trip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.glass-card { padding: 24px; backdrop-filter: blur(12px); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stats-grid strong { display: block; font-size: 1.5rem; color: #fff; }
.stats-grid span { color: var(--muted); font-size: 0.9rem; }

.section { padding: 42px 0; }
.section-heading { margin-bottom: 18px; }
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.route-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card, .quote-card { padding: 22px; }

.trip-filter { display: flex; gap: 10px; margin-bottom: 18px; }
.filter-btn {
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}
.filter-btn.active { color: #031024; background: #fff; }

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

.trip-card { overflow: hidden; }
.trip-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.trip-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}
.trip-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.trip-content > .pill {
  align-self: flex-start;
  max-width: min(100%, 20ch);
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  hyphens: auto;
}
.trip-content > :where(h3, p, strong) {
  max-width: min(100%, 22ch);
}
.trip-content > h3 {
  line-height: 1.15;
  text-wrap: balance;
}
.trip-content .destination-summary {
  max-width: min(100%, 26ch);
}
.trip-content .detail-list {
  max-width: min(100%, 34ch);
}
.trip-content .btn {
  margin-top: auto;
  align-self: flex-start;
}
.trip-content .btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 7px 14px;
  font-size: 0.8rem;
  line-height: 1.25;
  white-space: normal;
  text-align: center;
  border-radius: 999px;
  min-height: 0;
}
.destination-summary {
  margin: 12px 0 10px;
  color: #dbe8ff;
  font-size: 0.93rem;
  line-height: 1.55;
}
.destination-toggle {
  margin: 2px 0 10px;
}
.destination-panel[hidden] {
  display: none;
}
.destination-panel {
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
}
.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #071124;
  background: linear-gradient(135deg, #d5ecff, #b6fff8);
}
.itinerary-block {
  margin-bottom: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  scroll-margin-top: 110px;
}
.itinerary-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.itinerary-head {
  padding: 18px 18px 4px;
}
.itinerary-report[hidden] {
  display: none;
}
.table-wrap {
  width: 100%;
  overflow-x: auto;
  padding: 0 18px 18px;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}
.detail-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}
.detail-table th,
.detail-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  vertical-align: top;
}
.detail-table th {
  color: #fff;
  font-size: 0.9rem;
}
.detail-table td {
  color: #d7e4fa;
  font-size: 0.92rem;
}
.detail-list {
  margin: 0;
  padding-left: 18px;
  color: #d7e4fa;
}
.detail-list li {
  margin: 0 0 10px;
}
.detail-list.compact li {
  margin-bottom: 8px;
  font-size: 0.92rem;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  margin-bottom: 12px;
  padding-bottom: 10px;
}
.route-map-card {
  display: grid;
  gap: 14px;
}
.route-map-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  background: #0a1328;
}
.route-map-text {
  margin: 0;
  color: #dbe8ff;
}
.route-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.inquiry-form { display: grid; gap: 12px; }
.inquiry-form label { display: grid; gap: 6px; color: #d7e0f2; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #0a1328;
  color: #fff;
  border-radius: 12px;
  padding: 11px 12px;
}

.success-banner {
  color: #09261d;
  background: #6af0c4;
  border-radius: 10px;
  padding: 10px;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  background: rgba(4, 8, 17, 0.75);
}

.whatsapp-float-anchor {
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 0;
  left: auto;
  top: auto;
  width: 100%;
  max-width: none;
  padding-right: max(18px, env(safe-area-inset-right, 0px));
  padding-bottom: max(18px, env(safe-area-inset-bottom, 0px));
  padding-left: 12px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: none;
  box-sizing: border-box;
}
.whatsapp-float-anchor .whatsapp-float {
  position: relative;
  pointer-events: auto;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: max-content;
  max-width: min(92vw, 390px);
  margin: 0;
  transform: none;
  right: auto;
  bottom: auto;
  left: auto;
  top: auto;
  box-sizing: border-box;
}
.whatsapp-float-text {
  background: #ffffff;
  color: #0f1b35;
  border-radius: 14px;
  padding: 8px 10px;
  font-size: 0.84rem;
  line-height: 1.35;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  animation: whatsapp-text-pop 1.15s infinite;
  transform-origin: right center;
}
.whatsapp-float-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  animation: whatsapp-pulse 1.9s infinite;
}
.whatsapp-float-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes whatsapp-text-pop {
  0%, 100% {
    opacity: 0.22;
    transform: translateX(10px) scale(0.96);
  }
  45% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  70% {
    opacity: 0.35;
    transform: translateX(6px) scale(0.98);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  padding: 30px 0 20px;
}
.footer-logo-image {
  width: 90px;
  height: 90px;
  margin-bottom: 12px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.footer-partners {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-partners-title {
  margin-bottom: 10px;
  color: #dbe7ff;
  font-weight: 600;
}
.footer-partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-partner-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer-partner-logos a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.footer-partner-logos img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-credit {
  border-top: 1px solid var(--border);
  padding: 14px 0 22px;
  text-align: center;
}
.footer-credit-line {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.footer-bcom {
  color: #f5d547;
  font-weight: 600;
  text-decoration: none;
}
.footer-bcom:hover {
  color: #ffe566;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social-wrap {
  padding: 4px 0 18px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}
.footer-social img {
  width: 18px;
  height: 18px;
}

.loading { padding: 16px; }

.reveal, .reveal-delay {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-delay { transition-delay: 0.18s; }
.reveal.in-view, .reveal-delay.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid, .cards-3, .cards-2, .route-overview-grid, .trip-grid, .footer-grid, .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .mobile-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    right: 4%;
    top: 74px;
    width: min(300px, 92%);
    padding: 14px;
    border: 1px solid var(--border);
    background: #0a142d;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  gap: 12px;
  }
  .site-nav.is-open { display: flex; }
  .hero-grid, .cards-3, .cards-2, .route-overview-grid, .trip-grid, .footer-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero, .sub-hero { padding: 72px 0 36px; }
  .hero-video {
    transition: opacity 0.28s ease;
  }
  .footer-partner-logos { gap: 14px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-social { justify-content: center; }
  .whatsapp-float-anchor {
    padding-right: max(12px, env(safe-area-inset-right, 0px));
    padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
    padding-left: 10px;
  }
  .whatsapp-float-anchor .whatsapp-float {
    max-width: min(calc(100vw - 22px), 360px);
  }
  .whatsapp-float-text {
    font-size: 0.8rem;
    padding: 9px 10px;
  }
  .whatsapp-float-icon {
    width: 52px;
    height: 52px;
  }
}
