/* ══════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════ */
:root {
  --aqua: #00D5D5;
  --aqua-glow: #00eaea;
  --aqua-dim: rgba(0, 213, 213, 0.12);
  --navy: #001A33;
  --navy2: #002244;
  --gold: #E8C76A;
  --gold-dark: #c9a84c;
  --bg: #F4F9FF;
  --bg2: #ffffff;
  --text: #1E293B;
  --text2: #475569;
  --text3: #94A3B8;
  --border: rgba(0, 26, 51, 0.07);
  --shadow-sm: 0 2px 12px rgba(0, 26, 51, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 26, 51, 0.11);
  --shadow-lg: 0 20px 60px rgba(0, 26, 51, 0.16);
  --r: 20px;
  --r-sm: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none
}

button {
  cursor: pointer;
  font-family: inherit
}

/* ══════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 70px 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 10px;
}

.label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--aqua)
}

.h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.h2 span {
  color: var(--aqua)
}

.sub {
  font-size: .95rem;
  color: var(--text2);
  line-height: 1.75;
  max-width: 520px
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  border: none;
  transition: all .28s var(--ease);
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--aqua-glow);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 213, 213, .38)
}

.btn-outline-w {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .65);
  color: #fff
}

.btn-outline-w:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .12)
}

.btn-gold {
  background: var(--gold);
  color: var(--navy)
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(232, 199, 106, .4)
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .5);
  color: #fff
}

.btn-outline-gold:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1)
}

.btn-sm {
  padding: 10px 22px;
  font-size: .78rem
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .3s var(--ease)
}

.btn:hover svg {
  transform: translateX(3px)
}

.btn-outline-w svg {
  width: 18px;
  height: 18px;
}

/* ══════════════════════════════════════════════
   UTILITY BAR
══════════════════════════════════════════════ */
.utility-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--navy);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all .4s var(--ease);
  display: flex;
  align-items: center;
}

.utility-container {
  margin: 0 auto;
}

.utility-bar.scrolled {
  transform: translateY(-100%);
}

.utility-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.utility-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.utility-item svg {
  width: 14px;
  height: 14px;
  color: var(--aqua);
  stroke-width: 2.5px;
}

@media (max-width: 991px) {
  .utility-inner {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .utility-bar {
    display: none;
  }

  #navbar {
    top: 0;
  }
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 18px 0;
  transition: all .4s var(--ease);
}

#navbar.scrolled {
  top: 0;
  background: rgba(0, 26, 51, .93);
  backdrop-filter: blur(18px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, .25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}


.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--bg2);
  opacity: 0.9;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .28s var(--ease);
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover {
  color: var(--aqua);
}

.drop-icon {
  font-size: .8rem;
  transition: transform .25s var(--ease);
}

.has-dropdown {
  position: relative;
}

.has-dropdown:hover .drop-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--navy2);
  min-width: 280px;
  max-height: 420px;
  overflow-y: auto;
  border-radius: 14px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .05);
  backdrop-filter: blur(20px);
  transition: all .3s var(--ease);
  z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-group {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  padding: 12px 18px 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dropdown-menu li a {
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
  font-weight: 500;
  transition: all .25s var(--ease);
}

.dropdown-menu li a::after {
  content: '→';
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .25s var(--ease);
}

.dropdown-menu li a:hover {
  background: rgba(0, 213, 213, .08);
  color: var(--aqua);
  padding-left: 22px;
}

.dropdown-menu li a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Custom Scrollbar */
.dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 213, 213, 0.3);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px
}

.btn-b2b-pill {
  background: transparent;
  border: 1px solid var(--bg2);
  color: var(--bg2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
}

.btn-b2b-pill:hover {
  background: var(--aqua);
  transform: translateY(-1px);
  color: var(--bg2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s
}

/* ══════════════════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════════════════ */
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1000;
  flex-direction: column;
  padding: 80px 32px 40px;
  animation: slideIn .3s var(--ease);
}

.mob-nav.open {
  display: flex
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1000;
  flex-direction: column;
  padding: 40px 0 40px;
  animation: slideIn .3s var(--ease);
}

.mob-nav-inner {
  padding: 40px 32px;
  overflow-y: auto;
  height: 100%;
}

.mob-nav-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  z-index: 1001;
}

.mob-nav a,
.mob-drop-header {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mob-drop-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .05);
  border-radius: 8px;
  transition: transform .3s;
}

.mob-has-dropdown.active .mob-drop-icon {
  transform: rotate(180deg);
  background: var(--aqua);
  color: var(--navy);
}

.mob-dropdown-content {
  display: none;
  background: rgba(0, 0, 0, .2);
  padding-left: 20px;
}

.mob-has-dropdown.active .mob-dropdown-content {
  display: block;
}

.mob-dropdown-content a {
  font-size: .9rem;
  font-weight: 500;
  opacity: .8;
  border-bottom: none;
  padding: 12px 0;
}

.mob-nav .btn-b2b-pill {
  margin-top: 32px;
  width: 100%;
  text-align: center;
  border-color: var(--aqua);
  color: var(--aqua);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 20, 40, 0.7),
      rgba(0, 20, 40, 0.3));
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.1);
}

/* animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 213, 213, .18);
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0
  }

  10% {
    opacity: 1
  }

  90% {
    opacity: .4
  }

  100% {
    transform: translateY(-10vh) scale(1.2);
    opacity: 0
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    max-width: 720px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--aqua);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp .9s var(--ease) both;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--aqua)
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  animation: fadeUp .9s .15s var(--ease) both;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 em {
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  font-style: normal;
  display: block;
  font-weight: 600;
  font-size: 0.85em;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.clr-aqua {
  color: var(--aqua);
}

.nowrap {
  white-space: nowrap;
}

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.8;
  margin: 28px 0 42px;
  max-width: 650px;
  animation: fadeUp .9s .3s var(--ease) both;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .9s .45s var(--ease) both;
  margin-top: 10px;
}

.hero-wa-icon {
  width: 18px;
  height: 18px;
  fill: var(--navy);
  flex-shrink: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(0, 26, 51, .72);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.hero-stats.relative-stats {
  position: relative;
  background: var(--navy);
  backdrop-filter: none;
  border-top: none;
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .hero-stats.relative-stats {
    padding: 0;
  }

  .hero-stats-inner {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 10px;
  }

  .hstat-icon {
    height: 40px;
    width: 40px;
  }
}

@media (min-width: 1024px) {
  .hero-stats-inner {
    gap: 24px;
  }
}

.hstat {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.hstat-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 213, 213, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hstat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--aqua);
}

@media (max-width: 768px) {
  .hstat {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.hstat:last-child {
  border-right: none
}

.hstat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--aqua);
  line-height: 1;
}

.hstat-lbl {
  font-size: .68rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px
}

/* ══════════════════════════════════════════════
   PACKAGES SECTION
══════════════════════════════════════════════ */
.packages {
  background: var(--bg2)
}

.pkg-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.view-all {
  color: var(--aqua);
  font-weight: 600;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}

.view-all:hover {
  gap: 10px
}

/* filter chips */
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px
}

.chip {
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  font-size: .8rem;
  font-weight: 500;
  color: var(--text2);
  cursor: pointer;
  transition: all .22s var(--ease);
  white-space: nowrap;
}

.chip:hover,
.chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--bg2);
  font-weight: 700;
}

/* package cards grid */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
}

@media (min-width: 1025px) {
  .pkg-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px;
  }
}

.pkg-card {
  background: var(--bg2);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all .3s var(--ease);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.pkg-img {
  position: relative;
  height: 206px;
  overflow: hidden
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.07)
}

.pkg-duration {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--aqua);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.pkg-category {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 11px;
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pkg-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-body h3 {
  font-family: 'Montserrat', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.pkg-islands {
  font-size: .75rem;
  color: var(--text3);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.pkg-price .from {
  font-size: .65rem;
  color: var(--text3)
}

.pkg-price .amount {
  font-family: 'Montserrat', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pkg-price .per {
  font-size: .65rem;
  color: var(--text3)
}

.pkg-cta {
  background: var(--navy);
  color: var(--bg2);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  border: none;
  transition: all .22s var(--ease);
}

.pkg-cta:hover {
  background: var(--aqua-glow);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 213, 213, .35)
}

.pkg-view-all {
  text-align: center;
  margin-top: 44px
}

/* ══════════════════════════════════════════════
   DISCOVER (MAGIC SCROLL) SECTION
══════════════════════════════════════════════ */
.discover {
  background: var(--bg2);
}

.magic-scroll-wrapper {
  margin-top: 40px;
}

.magic-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 2px 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.magic-scroll::-webkit-scrollbar {
  display: none;
}

.magic-card {
  flex: 0 0 auto;
  width: 220px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.magic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.magic-card:hover img {
  transform: scale(1.1);
}

@media (hover: hover) {
  .magic-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
}

.magic-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 26, 51, 0.9) 0%, transparent 100%);
  padding: 40px 20px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* Responsive Card Sizes */
@media (max-width: 1024px) {
  .magic-card {
    width: 180px;
    height: 260px;
  }
}

@media (max-width: 430px) {
  .magic-card {
    width: 150px;
    height: 220px;
    border-radius: 16px;
  }

  .magic-name {
    font-size: 0.8rem;
    padding: 30px 15px 15px;
  }
}

/* Navigation Arrows */
.magic-nav {
  position: absolute;
  top: 350px;
  right: 0;
  display: flex;
  gap: 10px;
}

.m-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  cursor: pointer;

}

.m-nav-btn:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--bg2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .magic-nav {
    display: none;
  }
}

/* ══════════════════════════════════════════════
   ADVENTURE ACTIVITIES
══════════════════════════════════════════════ */
.activities {
  background: var(--bg2)
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .act-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.act-card {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .28s var(--ease);
}

.act-card:hover {
  transform: translateY(-5px)
}

.act-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .5s
}

.act-card:hover img {
  transform: scale(1.08)
}

.act-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 26, 51, .85) 0%, transparent 100%);
  padding: 28px 14px 12px;
}

.act-label span {
  background: var(--navy);
  color: var(--bg2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 800;
}

/* ══════════════════════════════════════════════
   B2B SERVICES
══════════════════════════════════════════════ */
.b2b-services {
  background: var(--bg)
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px
}

.title-underline {
  width: 48px;
  height: 3px;
  background: var(--aqua);
  border-radius: 2px;
  margin-top: 10px
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .srv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .srv-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
}

.srv-card {
  background: var(--bg2);
  border-radius: var(--r);
  padding: 28px 18px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: all .28s var(--ease);
  cursor: pointer;
}

.srv-card:hover {
  border-color: var(--aqua);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.srv-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: var(--aqua-dim);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}

.srv-icon svg {
  width: 24px;
  height: 24px;
  color: var(--aqua);
  stroke-width: 1.8;
}

.srv-card:hover .srv-icon {
  background: rgba(0, 213, 213, .22)
}

.srv-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--aqua);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.srv-card h4 {
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 5px
}

.srv-card p {
  font-size: .74rem;
  color: var(--text3);
  line-height: 1.55
}

/* ══════════════════════════════════════════════
   B2B PARTNER BANNER
══════════════════════════════════════════════ */
.b2b-banner {
  background: var(--bg2);
  padding: 60px 0
}

.banner-wrap {
  background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1600&q=80') center/cover no-repeat;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  padding: 72px 60px;
}

.banner-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 26, 51, .95) 0%, rgba(0, 26, 51, .75) 55%, rgba(0, 70, 80, .5) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .banner-content {
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }
}

.banner-l {
  flex: 1
}

.banner-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px
}

.banner-l h2 {
  font-family: 'montserrat', serif;
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 24px;
}

.banner-l h2 span {
  color: var(--aqua)
}

.banner-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px
}

.banner-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .85);
  font-size: .88rem;
  line-height: 1.4;
}

.banner-list li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.banner-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.banner-r {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px
}

.bstat {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  backdrop-filter: blur(10px);
}

.bstat-num {
  font-family: 'montserrat', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--aqua);
  line-height: 1;
}

.bstat-lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px
}

/* ══════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════ */
.why {
  background: var(--navy)
}

.why .h2 {
  color: #fff
}

.why .label {
  color: var(--aqua)
}

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

.feat-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r);
  padding: 30px 26px;
  transition: all .28s var(--ease);
}

.feat-card:hover {
  background: rgba(0, 213, 213, .08);
  border-color: rgba(0, 213, 213, .28);
  transform: translateY(-4px)
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 213, 213, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--aqua);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.feat-card h4 {
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 7px
}

.feat-card p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .48);
  line-height: 1.65
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r);
  overflow: hidden;
}

.met {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08)
}

.met:last-child {
  border-right: none
}

.met-num {
  font-family: 'Montserrat', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--aqua)
}

.met-lbl {
  font-size: .68rem;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px
}

/* ══════════════════════════════════════════════
   B2B PAGE SPECIFIC
   ══════════════════════════════════════════════ */
.b2b-hero {
  min-height: 70vh;
  background: linear-gradient(rgba(0, 26, 51, 0.8), rgba(0, 26, 51, 0.8)),
    url('https://images.unsplash.com/photo-1510009489794-352fba39acd3?w=1600&q=80') center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 140px;
}

.b2b-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
}

.b2b-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--aqua);
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0, 213, 213, 0.3);
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text2);
}

.b2b-cta-banner {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.b2b-cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.b2b-cta-banner p {
  opacity: 0.8;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .b2b-hero {
    min-height: 60vh;
    padding-top: 120px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .b2b-cta-banner {
    padding: 40px 20px;
  }
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials {
  background: var(--bg)
}

.testi-hero {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .testi-hero {
    grid-template-columns: 60fr 40fr;
  }
}

.testi-hero-body {
  padding: 52px 52px
}

.quote-mark {
  font-family: 'Montserrat', serif;
  font-size: 5rem;
  color: var(--aqua);
  line-height: .5;
  opacity: .35;
  display: block;
  margin-bottom: 18px;
}

.testi-q {
  font-family: 'Montserrat', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 24px;
}

.stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 14px
}

.testi-who {
  display: flex;
  align-items: center;
  gap: 12px
}

.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
  border: 2px solid var(--aqua);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy)
}

.testi-role {
  font-size: .72rem;
  color: var(--text3)
}

.testi-img {
  overflow: hidden
}

.testi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px
}

.testi-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 2px 20px;
  margin-bottom: 36px;
}

.testi-cards::-webkit-scrollbar {
  display: none;
}

.tc {
  flex: 0 0 auto;
  width: 300px;
  min-height: 180px;
  background: var(--bg2);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .tc {
    width: 260px;
  }
}

@media (max-width: 430px) {
  .testi-cards {
    gap: 16px;
  }

  .tc {
    width: 220px;
  }
}

@media (hover: hover) {
  .tc:hover {
    transform: translateY(-5px);
  }
}

/* Navigation Arrows */
.testi-nav {
  position: absolute;
  top: 240px;
  right: 0;
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  .testi-nav {
    display: none;
  }
}

.tc-stars {
  color: var(--gold);
  font-size: .8rem;
  margin-bottom: 8px
}

.tc-q {
  font-size: .82rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic
}

.tc-who {
  display: flex;
  align-items: center;
  gap: 9px
}

.tc-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .78rem;
  color: #fff;
}

.tc-name {
  font-weight: 700;
  font-size: .8rem;
  color: var(--navy)
}

.tc-loc {
  font-size: .68rem;
  color: var(--text3)
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--navy);
  border-radius: var(--r);
  overflow: hidden;
}

.tb {
  flex: 1;
  padding: 26px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08)
}

.tb:last-child {
  border-right: none
}

.tb-num {
  font-family: 'Montserrat', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--aqua)
}

.tb-lbl {
  font-size: .65rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 3px
}

/* ══════════════════════════════════════════════
   CRUISE LINES
══════════════════════════════════════════════ */
.cruise {
  background: var(--bg2)
}

.cruise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px
}

@media (min-width: 1024px) {
  .cruise-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.cruise-card {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .28s var(--ease);
}

.cruise-card:hover {
  transform: translateY(-5px)
}

.cruise-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .5s
}

.cruise-card:hover img {
  transform: scale(1.07)
}

.cruise-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 26, 51, .9), transparent);
  padding: 30px 14px 12px;
}

.cruise-name span {
  background: var(--aqua);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 800;
}

/* ══════════════════════════════════════════════
   EXPLORE (PRE-FOOTER TILES)
══════════════════════════════════════════════ */
.explore {
  background: var(--bg)
}

.explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}

@media (min-width: 768px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 220px);
  }
}

@media (min-width: 1024px) {
  .explore-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 24px;
  }
}

.etile {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer
}

.etile.big {
  grid-row: span 2
}

.etile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s
}

.etile:hover img {
  transform: scale(1.07)
}

.etile-lbl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 26, 51, .82), transparent);
  padding: 28px 16px 14px;
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
}

.etile.big .etile-lbl {
  font-size: 1.2rem
}

/* ══════════════════════════════════════════════
   CONTACT STRIP
══════════════════════════════════════════════ */
.contact-strip {
  background: var(--navy);
  padding-top: 25px;
  padding-bottom: 25px;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-l h3 {
  font-family: 'Montserrat', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.contact-l h3 span {
  color: var(--aqua)
}

.contact-l p {
  color: rgba(255, 255, 255, .6);
  font-size: .85rem
}

.contact-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap
}

.ci {
  display: flex;
  align-items: center;
  gap: 10px
}

.ci svg {
  stroke: var(--aqua);
  flex-shrink: 0
}

.ci-text .ci-label {
  font-size: .65rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .1em;
  text-transform: uppercase
}

.ci-text .ci-val {
  font-weight: 600;
  font-size: .9rem;
  color: #fff
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: #000e1f;
  padding: 64px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 44px;
  }
}

.f-logo-main {
  font-family: 'Montserrat', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.f-logo-main span {
  color: var(--aqua)
}

.f-logo-sub {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 14px;
  margin-top: 3px
}

.f-desc {
  font-size: .78rem;
  color: rgba(255, 255, 255, .42);
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: 20px
}

.f-socials {
  display: flex;
  gap: 8px
}

.f-soc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s;
}

.f-soc:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  background: var(--aqua-dim)
}

.f-col h5 {
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.f-links a {
  color: rgba(255, 255, 255, .45);
  font-size: .78rem;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.f-links a:hover {
  color: var(--aqua)
}

.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, .45);
  font-size: .78rem;
  margin-bottom: 12px;
  line-height: 1.55;
}

.f-contact-item svg {
  stroke: var(--aqua);
  flex-shrink: 0;
  margin-top: 2px
}

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: .72rem;
  color: rgba(255, 255, 255, .28)
}

.footer-bottom-links {
  display: flex;
  gap: 16px
}

.footer-bottom-links a {
  font-size: .72rem;
  color: rgba(255, 255, 255, .28);
  transition: color .2s
}

.footer-bottom-links a:hover {
  color: var(--aqua)
}

.gst-badge {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .65rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 8px;
  display: inline-block;
}

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media(max-width:1100px) {
  .nav-links {
    gap: 20px
  }

  .pkg-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .srv-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr)
  }


  .metrics {
    grid-template-columns: repeat(2, 1fr)
  }

  .metrics .met:nth-child(2) {
    border-right: none
  }

  .metrics .met:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, .08)
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
  }

  .banner-content {
    gap: 36px
  }

  .banner-r {
    display: none
  }

  .act-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cruise-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .hstat:nth-child(2) {
    border-right: none
  }

  .hstat:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, .08)
  }
}

@media(max-width:767px) {

  .nav-links,
  .nav-right .btn-b2b-pill {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-content {
    padding-top: 70px
  }

  .hero h1 {
    font-size: 2.6rem
  }

  .hero-ctas {
    flex-direction: column
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center
  }

  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .section-pad {
    padding: 60px 0
  }

  .pkg-top {
    flex-direction: column;
    align-items: flex-start
  }

  .pkg-grid {
    grid-template-columns: 1fr
  }

  .srv-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .services-head {
    flex-direction: column
  }

  .feat-grid {
    grid-template-columns: 1fr
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr)
  }

  .testi-hero {
    grid-template-columns: 1fr
  }

  .testi-img {
    display: none
  }

  .testi-hero-body {
    padding: 36px 28px
  }

  .testi-q {
    font-size: 1.1rem
  }


  .trust-bar {
    flex-wrap: wrap
  }

  .tb {
    flex: 1;
    min-width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
  }

  .banner-wrap {
    padding: 44px 28px;
    border-radius: 20px
  }

  .banner-l h2 {
    font-size: 2rem
  }

  .banner-ctas {
    flex-direction: column
  }

  .banner-ctas .btn {
    width: 100%;
    justify-content: center
  }

  .explore-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto
  }

  .etile.big {
    grid-row: span 1
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .contact-inner {
    flex-direction: column;
    text-align: center
  }

  .contact-items {
    justify-content: center
  }

  .act-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cruise-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width: 430px) {
  .section {
    padding: 50px 0;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Typography Scaling */
  h1,
  .h1 {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }

  h2,
  .h2 {
    font-size: 20px !important;
  }

  .sub,
  .hero-sub {
    font-size: 13px !important;
  }

  /* Grid → Single Column (Force Stacking) */
  .pkg-grid,
  .srv-grid,
  .act-grid,
  .cruise-grid,
  .explore-grid,
  .footer-grid,
  .hero-stats-inner,
  .feat-grid,
  .metrics {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .hstat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0 !important;
  }

  .hstat:last-child {
    border-bottom: none !important;
  }

  /* Buttons */
  .btn,
  .btn-primary,
  .btn-gold,
  .btn-outline-w,
  .btn-sm {
    width: 100% !important;
    padding: 14px !important;
    font-size: 14px !important;
    justify-content: center !important;
    min-height: 44px;
  }

  .hero-ctas {
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* Components */
  .pkg-card,
  .srv-card,
  .feat-card,
  .testi-hero-body {
    padding: 16px !important;
    border-radius: 12px !important;
  }

  .hero-content {
    max-width: 100% !important;
    padding-top: 60px !important;
  }

  .contact-items {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .chips {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px !important;
    margin-bottom: 24px !important;
  }

  .chips::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-slide.active {
    transform: scale(1.05);
  }
}

/* ═══════════════════ B2B MODAL ═══════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 40, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  padding: 40px 16px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  overscroll-behavior: contain;
  transition: all 0.3s var(--ease);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 100%;
  max-width: 700px;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  transform: translateY(30px);
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text2);
}

.modal-close:hover {
  background: #ef4444;
  color: #fff;
}

.modal-header {
  margin-bottom: 28px;
  text-align: center;
}

.modal-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.modal-header p {
  font-size: 15px;
  color: var(--text2);
}

.b2b-form {
  margin-top: 20px;
}

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

.b2b-form input,
.b2b-form select,
.b2b-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
  background: #f9fafb;
}

.b2b-form input:focus,
.b2b-form select:focus,
.b2b-form textarea:focus {
  border-color: var(--aqua);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 213, 213, 0.1);
  outline: none;
}

.b2b-form textarea {
  margin-top: 16px;
  min-height: 120px;
  resize: none;
}

.submit-btn {
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background: var(--aqua);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: var(--aqua-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 213, 213, 0.3);
}

@media (max-width: 768px) {
  .modal {
    width: 92%;
    padding: 30px 20px;
    border-radius: 16px;
  }

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

  .modal-header h2 {
    font-size: 22px;
  }
}

/* ----------------------------------------------
   DESTINATION PAGE SPECIFIC
   ---------------------------------------------- */
body.destination-page .navbar {
  background: #001a33 !important;
}

.destination-hero {
  min-height: 60vh;
  background: linear-gradient(rgba(0, 26, 51, 0.7), rgba(0, 26, 51, 0.7)),
    url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1600&q=80') center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 140px;
}

.destination-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
}

.destination-scroll-wrapper {
  position: relative;
}

.destination-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.destination-scroll::-webkit-scrollbar {
  display: none;
}

.destination-card {
  flex: 0 0 auto;
  width: 260px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.destination-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #001a33;
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: var(--aqua);
  color: var(--navy);
}

.scroll-btn.left {
  left: -22px;
}

.scroll-btn.right {
  right: -22px;
}

@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }
}

.highlight-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .highlight-row {
    grid-template-columns: 1fr 1fr;
  }
}

.highlight-img img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

/* TRAVEL FLOW PROFESSIONAL */
.travel-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.flow-step {
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.flow-arrow {
  font-size: 20px;
  color: var(--aqua);
  font-weight: 800;
}

@media (max-width: 768px) {
  .travel-flow {
    flex-direction: column;
    gap: 10px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }
}

/* ----------------------------------------------
   STANDARDIZED PAGE HEROES
   ---------------------------------------------- */
body.about-page .navbar,
body.b2b-page .navbar,
body.contact-page .navbar {
  background: #001a33 !important;
}

.about-hero,
.contact-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 140px;
}

.about-hero {
  background: linear-gradient(rgba(0, 26, 51, 0.75), rgba(0, 26, 51, 0.75)),
    url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1600&q=80') center/cover;
}

.contact-hero {
  background: linear-gradient(rgba(0, 26, 51, 0.8), rgba(0, 26, 51, 0.8)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?w=1600&q=80') center/cover;
}

.about-hero h1,
.contact-hero h1,
.b2b-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #fff !important;
}

.about-hero h1 span,
.contact-hero h1 span,
.b2b-hero h1 span {
  color: var(--aqua);
}

.about-hero p,
.contact-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* ----------------------------------------------
   PACKAGES PAGE SPECIFIC
   ---------------------------------------------- */
body.packages-page .navbar {
  background: #001a33 !important;
}

.packages-hero {
  min-height: 60vh;
  background: linear-gradient(rgba(0, 26, 51, 0.7), rgba(0, 26, 51, 0.7)),
    url('https://images.unsplash.com/photo-1506953823976-52e1fdc0149a?w=1600&q=80') center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 140px;
}

.packages-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #fff !important;
}

.package-filter-section {
  background: var(--bg2);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.package-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
  /* Firefox */
}

.package-filter::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.package-filter button {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}

.package-filter button.active,
.package-filter button:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-filter {
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.package-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
  position: relative;
  height: 240px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.card-body .locations {
  font-size: 0.85rem;
  color: var(--text2);
  margin-bottom: 25px;
  line-height: 1.6;
}

.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--bg2);
}

.card-footer .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.card-footer .btn {
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-footer .btn:hover {
  background: var(--aqua);
  color: var(--navy);
}