/* =========================
   RESET & GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #2a2a2a;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

html {
  scroll-behavior: smooth;
}

.disclaimer-text {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}


/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  transition: 0.3s;
  overflow: visible;
}

.site-header.scrolled {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* important for mobile nav positioning */
  padding: 12px 5%;
  z-index: 1000; 
}

/* Logo */
.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* Phone number */
.phone-number {
  font-weight: 600;
  text-decoration: none;
  color: #222;
  margin-left: 15px;
  z-index: 10003;
}

.phone-number:hover {
  color: #caa45f;
}

/* Main nav desktop */
.main-nav {
  display: flex;
  align-items: center;
  position: relative; /* prevents mobile conflict */
  z-index: 100000;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.2s ease;
}

.main-nav a:hover {
  color: #caa45f;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  z-index: 10005;
}

/* =========================
   MOBILE NAV ELITE+
========================= */
@media (max-width: 900px) {

  .mobile-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10005;
    font-size: 28px;
    cursor: pointer;
  }

  .phone-number {
    position: fixed;
    top: 20px;
    right: 60px; /* next to hamburger */
    z-index: 10003;
    font-size: 16px;
  }

  .nav-container {
    padding-right: 80px; /* space for phone + hamburger */
  }

  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    width: 80%;
    height: calc(100vh - 74px);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 100000;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 15px;
    font-size: 16px;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
  }

  .main-nav a:hover {
    color: #caa45f;
  }

  /* Hide any remaining mega menu elements on mobile */
  .has-mega .mega-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

}

@media (max-width: 768px) {
  .dropdown:hover .mega-menu {
    display: none;
  }
}

/* =========================
   NAV DROPDOWN (CRUISE LOGOS)
========================= */
/* =========================
   ELITE NAV DROPDOWN
========================= */
.nav-item {
  position: relative;
}

/* Container */
.nav-dropdown {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 95vw;
  max-width: 1100px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  padding: 40px 50px;
  border-radius: 16px;

  box-shadow: 0 30px 80px rgba(0,0,0,0.15);

  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;

  z-index: 9999;
}

/* Show with animation */
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Grid */
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
}

/* Logo styling */
.nav-dropdown-grid img {
  width: 120px;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
}

/* Hover effect */
.nav-dropdown-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.12);
}

/* Remove ALL scroll behavior */
.nav-dropdown,
.nav-dropdown-grid {
  max-height: none !important;
  overflow: visible !important;
}

.nav-dropdown-grid img {
  opacity: 0;
  transform: translateY(10px);
}

.nav-item:hover .nav-dropdown-grid img {
  animation: fadeUp 0.4s forwards;
}

/* stagger effect */
.nav-item:hover .nav-dropdown-grid img:nth-child(1) { animation-delay: 0.05s; }
.nav-item:hover .nav-dropdown-grid img:nth-child(2) { animation-delay: 0.1s; }
.nav-item:hover .nav-dropdown-grid img:nth-child(3) { animation-delay: 0.15s; }
.nav-item:hover .nav-dropdown-grid img:nth-child(4) { animation-delay: 0.2s; }
.nav-item:hover .nav-dropdown-grid img:nth-child(5) { animation-delay: 0.25s; }
.nav-item:hover .nav-dropdown-grid img:nth-child(6) { animation-delay: 0.3s; }
.nav-item:hover .nav-dropdown-grid img:nth-child(7) { animation-delay: 0.35s; }
.nav-item:hover .nav-dropdown-grid img:nth-child(8) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  text-decoration: none;
  color: #222;
  font-size: 15px;
}

.phone-icon svg {
  width: 18px;
  height: 18px;
  stroke: #caa45f; /* gold accent */
  transition: 0.3s ease;
}

.phone-number:hover {
  color: #caa45f;
}

.phone-number:hover .phone-icon svg {
  transform: scale(1.1);
}

/* =========================
   MEGA MENU
========================= */
/* =========================
   ELITE MEGA MENU
========================= */
.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  width: 95vw;
  max-width: 1200px;

  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);

  padding: 40px 50px;
  border-radius: 16px;

  box-shadow: 0 30px 80px rgba(0,0,0,0.15);

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;

  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;

  z-index: 9999;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* SECTION */
.mega-section h4 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 15px;
}

/* GRID */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* LOGOS */
.mega-grid img {
  width: 100px;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.mega-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* REMOVE SCROLLBAR FOREVER */
.mega-menu,
.mega-grid {
  max-height: none !important;
  overflow: visible !important;
}

/* =========================
   HERO SYSTEM (FINAL ELITE+)
========================= */

/* BASE HERO */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

/* SWIPER SUPPORT */
.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  height: 100%;
}

/* homepage swiper images */
.hero .swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
  z-index: 1;
}

/* direct hero image for inner pages */
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    /* subtle warm luxury tone */
    linear-gradient(rgba(202,164,95,0.05), rgba(202,164,95,0.05)),

    /* primary readability gradient */
    linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.55)),

    /* soft vignette (less aggressive) */
    radial-gradient(circle at center, rgba(0,0,0,0.00) 45%, rgba(0,0,0,0.45) 100%);
}

/* HOMEPAGE HERO CONTENT */
.hero-content {
  position: absolute;
  bottom: 18%;
  left: 8%;
  z-index: 3;
  color: #fff;
  max-width: 620px;
  animation: heroFadeUp 0.8s ease forwards;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.1;
}

.hero-content p {
  font-size: 22px;
  margin-top: 10px;
}

/* =========================
   SMALL HERO (INNER PAGES)
========================= */

.small-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 120px 12% 60px;
  color: #fff;
  overflow: hidden;
}

/* inner page image */
.small-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  animation: slowZoomSoft 30s ease-in-out infinite alternate;
}

/* softer premium overlay */
.small-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(rgba(202,164,95,0.06), rgba(202,164,95,0.06)),
    linear-gradient(to bottom, rgba(10,10,10,0.22), rgba(10,10,10,0.46)),
    radial-gradient(circle at center, rgba(0,0,0,0.03) 35%, rgba(0,0,0,0.42) 100%);
}

/* offset block, but centered internally */
.small-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
  margin-left: 35%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroFadeUp 0.7s ease forwards;
}

/* luxury kicker */
.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;

  color: #a8833c; /* darker gold for readability */

  font-weight: 500;
}

.small-hero .section-kicker,
.hero .section-kicker {
  color: #f1d6a3;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}

.lux-next .section-kicker {
  color: #b8934f;
}

/* inner page heading */
.small-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 6px;
  color: #fff;
}

/* inner page paragraph */
.small-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
}

/* button */
.small-hero .btn-primary {
  margin-top: 4px;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: #caa45f;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #b8934f;
  transform: translateY(-2px);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes slowZoomSoft {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  .hero-content {
    left: 6%;
    bottom: 14%;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .small-hero {
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    text-align: center;
  }

  .small-hero .hero-content {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }

  .small-hero h1 {
    font-size: 2.2rem;
  }

  .small-hero p {
    font-size: 1rem;
  }
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 60px 5%;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.explore-destinations {
  margin-top: -20px;
}

/* =========================
   HOME PLANNING SECTION
========================= */
.home-planning {
  padding-top: 30px;
  padding-bottom: 70px;
}

.planning-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.planning-intro h2 {
  margin-bottom: 14px;
}

.planning-intro p {
  color: #5e5e5e;
  line-height: 1.8;
}

.planning-grid {
  max-width: 1200px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.planning-card {
  background: #fff;
  border: 1px solid rgba(212, 176, 106, 0.16);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.planning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.planning-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.planning-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.planning-card p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

.planning-cta {
  text-align: center;
}

@media (max-width: 900px) {
  .planning-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .planning-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SWIPER (CRUISE LOGOS)
========================= */
.cruiseSwiper {
  margin-bottom: 0 !important;
}

.cruiseSwiper .swiper-wrapper,
.cruiseSwiper .swiper-slide {
  height: auto !important;
}

.cruiseSwiper img {
  max-width: 120px;
  margin: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

.cruiseSwiper img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* =========================
   DESTINATIONS PAGE ELITE+
========================= */

.dest-intro {
  text-align: center;
  padding-bottom: 10px;
}

.dest-intro .lux-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 38px 34px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  font-size: 1.05rem;
  line-height: 1.85;
  color: #444;
}

/* =========================
   DESTINATIONS GRID + FILTER SYSTEM
========================= */

/* SHARED SECTION INTRO */
.destination-section-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.destination-section-intro h2 {
  margin-bottom: 12px;
}

.destination-section-intro p {
  color: #666;
  line-height: 1.8;
}

/* OPTIONAL FILTER/BROWSE INTRO */
.destinations-filter-intro {
  max-width: 760px;
  margin: 0 auto 24px;
}

/* FILTER SECTION */
.destination-filters-section {
  padding-top: 0;
  padding-bottom: 28px;
}

.destination-filters {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(248,248,248,0.96), rgba(255,255,255,0.96));
  border: 1px solid #ece7dc;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
}

.dest-filter {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(202,164,95,0.18);
  background: rgba(255,255,255,0.92);
  color: #2b2b2b;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.dest-filter:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(202,164,95,0.48);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.dest-filter.active {
  background: linear-gradient(135deg, #0f2f4f, #0a2540);
  color: #fff;
  border-color: #0a2540;
  box-shadow: 0 10px 22px rgba(10,37,64,0.22);
}

/* DEST GRID */
.elite-destinations .dest-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* DEST CARD */
.elite-destinations .dest-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  display: block;
  height: 320px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease,
    box-shadow 0.35s ease;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.elite-destinations .dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.10);
}

.elite-destinations .dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.elite-destinations .dest-card:hover img {
  transform: scale(1.08);
}

.elite-destinations .dest-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 26px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.62));
  transition: background 0.35s ease;
}

.elite-destinations .dest-card:hover .overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.03), rgba(0,0,0,0.72));
}

.dest-card-content {
  max-width: 90%;
}

.elite-destinations .dest-card h3 {
  color: #fff;
  font-size: 1.55rem;
  margin: 0 0 6px;
  font-family: 'Playfair Display', serif;
}

.elite-destinations .dest-card p {
  color: rgba(255,255,255,0.92);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* FILTER ANIMATION STATES */
.elite-destinations .dest-card.is-hiding {
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  pointer-events: none;
}

.elite-destinations .dest-card.is-hidden {
  display: none !important;
}

.elite-destinations .dest-card.is-showing {
  display: block;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
}

/* MOBILE */
@media (max-width: 768px) {
  .destination-filters-section {
    padding-top: 0;
    padding-bottom: 22px;
  }

  .destination-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 12px 12px 14px;
    border-radius: 22px;
    scrollbar-width: none;
  }

  .destination-filters::-webkit-scrollbar {
    display: none;
  }

  .dest-filter {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .elite-destinations .dest-card {
    height: 280px;
  }

  .elite-destinations .dest-card .overlay {
    padding: 22px;
  }
}

/* EXPERIENCES */
.destination-experiences {
  padding-top: 30px;
}

.experiences-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.experience-card {
  background: #fff;
  border: 1px solid rgba(212,176,106,0.18);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.experience-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.experience-card p {
  margin: 0;
  color: #555;
  line-height: 1.75;
}

/* FACTS */
.destination-facts {
  padding-top: 20px;
}

.facts-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fact-card {
  background: linear-gradient(135deg, #ffffff, #faf8f4);
  border: 1px solid rgba(212,176,106,0.18);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.fact-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.fact-card p {
  margin: 0;
  color: #555;
  line-height: 1.75;
}

/* CTA */
.destination-cta {
  padding-top: 20px;
  padding-bottom: 80px;
}

.destination-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 42px 34px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.destination-cta-inner h2 {
  margin-bottom: 12px;
}

.destination-cta-inner p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* MOBILE */
@media (max-width: 900px) {
  .experiences-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dest-intro .lux-block,
  .destination-cta-inner {
    padding: 28px 22px;
  }

     .elite-destinations .dest-card {
      height: 280px;
    }
    
    .elite-destinations .dest-card img {
      height: 100%;
    }
  .elite-destinations .dest-card .overlay {
    padding: 22px;
  }
}

/* =========================
   CHECK-IN GRID
========================= */
.checkin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.checkin-card img {
  width: 80%;              /* ← KEY: scale relative to card */
  max-width: none;         /* ← REMOVE hard cap */
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  transition: all 0.3s ease;
}

/* =========================
   CHECK-IN CARDS - MOBILE OPTIMIZATION
========================= */
@media (max-width: 600px) {

  .checkin-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .checkin-card {
    width: 100%;
    padding: 22px 16px;
    min-height: 140px;
  }

  .checkin-card img {
    width: 90%;           /* ← bigger on mobile */
  }

}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #000;
  color: #fff;
  padding: 60px 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: white;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.footer-social a:hover svg {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-social img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1); /* turns black SVG â†’ white */
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-social a:hover img {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

.pre-cruise-info {
  background: #f8f8f8;
  padding: 40px 5%;
  border-top: 1px solid #eee;
}

.info-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.info-text h2 {
  font-size: 26px;
  margin-bottom: 5px;
}

.info-text p {
  color: #666;
}

.info-button {
  background: #000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 14px;
}

.info-button:hover {
  opacity: 0.8;
}

/* INFO PAGE LAYOUT */
.info-page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.info-block.reverse {
  direction: rtl;
}

.info-block.reverse .info-text {
  direction: ltr;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.info-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.info-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #444;
}

/* BUTTONS */
.btn-wtkbyg {
  display: inline-block;
  background: #0a2540;
  color: #fff;
  padding: 12px 22px;
  border-radius: 3px;
  text-decoration: none;
  margin-top: 10px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-wtkbyg:hover {
  background: #133a63;
}

.text-link {
  color: #0a2540;
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .info-block {
    grid-template-columns: 1fr;
  }

  .info-block.reverse {
    direction: ltr;
  }

  .info-image img {
    height: 220px;
  }
}

/* CTA SECTION */
.cta-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: #f5f7fa;
  padding: 40px;
  border-radius: 12px;
  margin: 60px 0;
  align-items: center;
}

.cta-content h2 {
  margin-bottom: 15px;
}

.cta-content ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.cta-content li {
  margin-bottom: 10px;
  font-weight: 500;
}

.btn-primary.large {
  padding: 14px 28px;
  font-size: 16px;
}

.cta-image img {
  width: 100%;
  border-radius: 10px;
}

/* CRUISE GRID */
.cruise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.cruise-card {
  display: block;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cruise-card img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.cruise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cruise-lines-section {
  padding: 50px 20px;
  text-align: center;
}

.cruise-lines-section h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 600;
}

.cruise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}

.cruise-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cruise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.cruise-card-img {
  max-width: 130px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.legal-hero {
  background: linear-gradient(180deg, #f4f6f8, #e9edf2);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.legal-hero-content h1 {
  font-size: 2.2rem;
  margin: 0;
  color: #1a1a1a;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.legal-subtitle {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 768px) {
  .anchor-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }
}

/* hide scrollbar (clean look) */
    .anchor-nav::-webkit-scrollbar {
    display: none;
}

/* LINKS */
.anchor-nav {
  position: sticky;
  top: 74px;
  z-index: 998;

  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 10px 15px;

  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;

  overflow-x: auto;
  white-space: nowrap;
}

.anchor-nav a {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  font-size: 0.9rem;
  color: #333;
}

.anchor-nav a:hover,
.anchor-nav a.active {
  background: #0a2540;
  color: #fff;
  border-color: #0a2540;
}

/* Anchor Buttons */
.anchor-nav a {
  padding: 8px 14px;
  background: white;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  color: #333;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
}

/* Hover Effect */
.anchor-nav a:hover {
  background: #0a2540;
  color: white;
  border-color: #0a2540;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

.container.narrow {
  max-width: 900px;
  margin: 0 auto;
}

.info-block {
  margin-bottom: 50px;
}

.info-block h2 {
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.info-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #444;
}

.info-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.info-content li {
  margin-bottom: 8px;
}
/* CENTER TEXT */
.center {
  text-align: center;
}

/* FULL WIDTH TEXT BLOCK */
.info-text.full {
  max-width: 800px;
  margin: 0 auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-section {
    grid-template-columns: 1fr;
  }
}

/* =========================
   LUXURY WEATHER GRID
========================= */
/* Luxury Weather Grid Styling */
.weather-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.weather-card {
  background: #f9f9f9; /* soft neutral background */
  border: 1px solid #e0e0e0; /* subtle border for elegance */
  border-radius: 12px;
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.weather-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111;
}

.weather-card p {
  font-size: 0.9rem;
  margin: 0;
  color: #555;
}

.weather-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.weather-best-time {
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 2rem;
  font-style: italic;
}

/* ===== LUXURY CONTENT SYSTEM ===== */

.lead {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
  margin-bottom: 40px;
}

/* SECTION BLOCK */
.lux-block {
  max-width: 850px;
  margin: 0 auto 60px;
}

.lux-block .section-kicker {
  color: #b8934f;
  text-shadow: none;
}

/* GRID */
.lux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.lux-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.lux-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.lux-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* ICON */
.icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* HIGHLIGHT */
.lux-highlight {
  background: #f5f7fa;
  padding: 25px;
  border-left: 4px solid #caa45f;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.7;
}

/* FACTS GRID */
.lux-facts {
  display: grid;
  gap: 12px;
}

.lux-facts div {
  background: #f9f9f9;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 15px;
}

/* TIMING */
.lux-timing {
  margin-top: 20px;
  font-size: 15px;
}

/* =========================
   DIRECTIONS PAGE – ELITE CLEAN
========================= */

.directions-page {
  padding: 2rem 0 3rem;
}

/* INTRO */
.directions-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

/* =========================
   PORT CARD
========================= */
.port-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.port-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* TITLE */
.port-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: #1a1a1a;
}

/* TEXT */
.port-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.35rem 0;
  color: #444;
}

/* =========================
   MAP
========================= */
.port-map {
  margin-top: 0.8rem;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.port-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   BUTTONS (SIDE BY SIDE)
========================= */
.map-buttons {
  display: flex;
  gap: 8px;
  margin-top: 0.8rem;
}

.btn-map {
  flex: 1;
  text-align: center;
  padding: 0.55rem;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  background: #0a2540;
  color: #fff;
  transition: all 0.25s ease;
}

.btn-map:hover {
  background: #163d66;
  transform: translateY(-1px);
}

/* =========================
   APPLE MAP BUTTON FIX
========================= */
.btn-map.apple {
  background: linear-gradient(135deg, #2a2a2a, #000);
  color: #fff;
  border: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.btn-map.apple:hover {
  transform: translateY(-1px);
}

/* =========================
   PORT GRID (AUTO RESPONSIVE)
========================= */
.ports-directions.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

/* =========================
   TIPS GRID (ELITE UPGRADE)
========================= */
.tips-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

/* BLOCKS */
.tips-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #1a1a1a;
}

.tips-block ul {
  padding-left: 1.2rem;
}

.tips-block li {
  margin-bottom: 0.5rem;
}

/* RIGHT SIDE HIGHLIGHT */
.tips-block.highlight {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ELITE ANCHOR NAV – Multi-line Justified
========================= */
.ports-nav {
  position: sticky;
  top: 74px;
  z-index: 999;

  display: flex;
  flex-wrap: wrap;                 /* allow multiple lines */
  justify-content: space-between;  /* distribute links evenly across each line */
  gap: 12px 8px;                   /* row gap | column gap */
  padding: 14px 20px;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
}

/* Links styling */
.ports-nav a {
  padding: 10px 18px;
  border-radius: 999px;

  background: #ffffff;
  border: 1px solid #dcdcdc;

  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;

  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  flex: 1 1 auto;                /* allow links to grow/shrink slightly */
  text-align: center;

  transition: all 0.25s ease;
}

/* Hover */
.ports-nav a:hover {
  background: #0a2540;
  color: #fff;
  border-color: #0a2540;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Active */
.ports-nav a.active {
  background: #0a2540;
  color: #fff;
  border-color: #0a2540;
}

/* Mobile: single row, scrollable */
@media (max-width: 900px) {
  .ports-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;   /* scrollable row */
  }

  .ports-nav a {
    flex: 0 0 auto;               /* fixed width per link for scrolling */
  }

  /* Hide scrollbar for cleaner look */
  .ports-nav::-webkit-scrollbar {
    display: none;
  }
}

/* =========================
   LINKS
========================= */
.ports-nav a {
  padding: 10px 18px;
  border-radius: 999px;

  background: #ffffff;
  border: 1px solid #dcdcdc;

  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;

  box-shadow: 0 2px 6px rgba(0,0,0,0.05);

  transition: all 0.25s ease;
}

/* HOVER */
.ports-nav a:hover {
  background: #0a2540;
  color: #fff;
  border-color: #0a2540;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* ACTIVE */
.ports-nav a.active {
  background: #0a2540;
  color: #fff;
  border-color: #0a2540;
}

/* =========================
   LINKS
========================= */
.ports-nav a {
  flex: 0 0 auto;

  padding: 10px 18px;
  border-radius: 999px;

  background: #ffffff;
  border: 1px solid #dcdcdc;

  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;

  box-shadow: 0 2px 6px rgba(0,0,0,0.05);

  transition: all 0.25s ease;
}

/* HOVER */
.ports-nav a:hover {
  background: #0a2540;
  color: #fff;
  border-color: #0a2540;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* ACTIVE */
.ports-nav a.active {
  background: #0a2540;
  color: #fff;
  border-color: #0a2540;
}
/* =========================
   TRAVEL TIPS
========================= */
.travel-tips {
  background: #f7f9fb;
  border-radius: 14px;
  padding: 2rem;
  margin: 1.5rem auto 2.5rem;
  max-width: 1100px;

  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.travel-tips h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1a1a1a;
}

.travel-tips ul {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 1.2rem;
}

.travel-tips li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  color: #444;
}

/* =========================
   RESPONSIVE
========================= */
  .port-map {
    height: 180px;
  }
}

/* =========================
   HEALTH PAGE – ELITE+ PREMIUM
========================= */
/* =========================
   INTRO – PREMIUM ELITE+ STYLE
========================= */
.health-intro {
  max-width: 800px;           /* keeps text from spanning full width */
  margin: 0 auto 90px;        /* adds spacing below intro */
  text-align: center;
  position: relative;
  padding-top: 40px;          /* space above the line */
}

/* Gold line above intro text */
.health-intro::before {
  content: '';
  display: block;
  width: 60px;                 /* short elegant line */
  height: 3px;
  background: #d4af37;         /* muted gold */
  margin: 0 auto 20px;         /* space between line and paragraph */
  border-radius: 2px;
}

/* Paragraph styling */
.health-intro p {
  font-size: 22px;
  line-height: 1.95;
  color: #4a4a4a;
  letter-spacing: 0.3px;
  padding: 0 15px;            /* some side padding so text doesn't touch screen edges on mobile */
}

/* Container */
.health-page {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 25px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
}

/* Intro */
.health-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 80px;
}

.health-intro p {
  font-size: 22px;
  line-height: 1.95;
  color: #4a4a4a;
  letter-spacing: 0.3px;
}

/* Section Titles */
.health-page h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 35px;
  color: #1a1a1a;
  position: relative;
}

.health-page h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #a7c6f9, #70a1ff);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Premium Cards */
.lux-card {
  background: linear-gradient(180deg, #ffffff, #f9fafe);
  padding: 35px;
  border-radius: 16px;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.05),
    0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.35s ease-in-out;
  margin-bottom: 25px;
}

.lux-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.08),
    0 25px 80px rgba(0,0,0,0.12);
}

/* Paragraphs */
.lux-card p {
  font-size: 17px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 15px;
}

/* Facts Grid / Prevention */
.lux-facts, .health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.lux-facts div, .health-grid .health-card {
  background: #f6f8fa;
  padding: 22px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 6px 15px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lux-facts div:hover, .health-grid .health-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Highlight Box – TravelGuard */
.lux-highlight {
  text-align: center;
  background: linear-gradient(180deg, #f5f7fa, #eef2f6);
  padding: 40px;
  border-radius: 18px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.06),
    0 20px 60px rgba(0,0,0,0.1);
  margin-top: 50px;
  transition: transform 0.3s ease;
}

.lux-highlight:hover {
  transform: translateY(-4px);
}

.lux-highlight img {
  max-width: 220px;
  margin: 0 auto 18px;
}

/* Scroll-in Animations */
.js-enabled .lux-block {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

.js-enabled .lux-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cards inside block animate separately */
.js-enabled .lux-block.visible .lux-card {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}

.js-enabled .lux-block.visible .lux-card:nth-child(1) { transition-delay: 0.1s; }
.js-enabled .lux-block.visible .lux-card:nth-child(2) { transition-delay: 0.2s; }
.js-enabled .lux-block.visible .lux-card:nth-child(3) { transition-delay: 0.3s; }
.js-enabled .lux-block.visible .lux-card:nth-child(4) { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
  .health-page {
    margin: 50px auto;
  }

  .health-intro {
    margin-bottom: 50px;
  }

  .health-intro p {
    font-size: 18px;
  }

  .health-page h2 {
    font-size: 28px;
  }

  .lux-facts, .health-grid {
    grid-template-columns: 1fr;
  }

  .lux-block, .lux-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================
   HEALTH GRID – PREMIUM ELITE+
========================= */
.health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px; /* breathing room above grid */
}

.health-card {
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

/* Icon placeholder (add if you plan to include icons) */
.health-card h3::before {
  content: '✔'; /* simple checkmark, replace with icons if you want */
  display: block;
  font-size: 32px;
  color: #d4af37; /* gold accent */
  margin-bottom: 15px;
}

/* Hover effect for premium lift */
.health-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Paragraphs in card */
.health-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 12px;
}

/* Facts grid inside cards (Industry-Leading Safety / Smart Practices) */
.health-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.health-facts div {
  background: #f7f7f9;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 15px;
  color: #555;
  box-shadow: 0 5px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.health-facts div:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
   TRAVEL PROTECTION – PREMIUM ELITE+
========================= */
.health-highlight {
  background: linear-gradient(180deg, #fffdfa, #f7f5f2);
  border: 2px solid #d4af37; /* subtle gold line around the box */
  border-radius: 18px;
  padding: 45px 30px;
  text-align: center;
  max-width: 900px;
  margin: 50px auto 80px; /* breathing room above and below */
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.health-highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

.health-highlight h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.health-highlight p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  max-width: 700px;
  margin: 0 auto 25px;
}

.health-highlight img {
  max-width: 240px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.health-highlight img:hover {
  transform: scale(1.03);
}

/* ============================= */
/* CONTACT INFO CARDS */
/* ============================= */

.contact-info {
  padding: 70px 2rem 30px;
  background: #f9f9f9;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  min-height: 240px;
  background: #fff;
  border: 1px solid rgba(212, 176, 106, 0.16);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.icon-wrapper {
  margin-bottom: 12px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  color: #d6b06a;
  display: block;
  margin: 0 auto 10px;
}

.gold-divider {
  width: 52px;
  height: 1px;
  margin: 0 auto 6px;
  background: linear-gradient(90deg, transparent 0%, #d6b06a 20%, #d6b06a 80%, transparent 100%);
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  margin: 0;
}

.info-card p a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.info-card p a:hover {
  color: #b88c48;
}

@media (max-width: 768px) {
  .contact-info,
  .contact-form-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ============================= */
/* CONTACT PREP SECTION */
/* ============================= */

.contact-prep {
  padding: 60px 2rem 10px;
}

.prep-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-prep h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.prep-subtext {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #5e5e5e;
  line-height: 1.7;
}

/* Grid */
.prep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Items */
.prep-item {
  background: #fff;
  border: 1px solid rgba(212, 176, 106, 0.16);
  border-radius: 16px;
  padding: 26px 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.prep-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

/* Icon */
.prep-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

/* Titles */
.prep-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Text */
.prep-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.prep-cta {
  margin-top: 10px;
}

.prep-cta p {
  margin-bottom: 12px;
  font-weight: 500;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {
  .prep-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .prep-grid {
    grid-template-columns: 1fr;
  }

  .contact-prep {
    padding: 40px 1.25rem 0;
  }
}

#quote-form {
  scroll-margin-top: 78px;
}

/* ============================= */
/* CONTACT FORM */
/* ============================= */

.contact-form-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 2rem 4rem;
}

.contact-form-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.contact-form-section h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-form-section p {
  text-align: center;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0;
  color: #555;
}

.contact-form {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid rgba(212, 176, 106, 0.16);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.05);
  padding: 34px;
}

/* Progress */
.form-progress-wrap {
  margin-bottom: 30px;
}

.form-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.progress-label {
  color: #7b7b7b;
}

.progress-title {
  color: #1f1f1f;
  font-weight: 600;
}

.form-progress-bar {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}

.form-progress-fill {
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, #c39a54 0%, #e0c288 100%);
  border-radius: 999px;
  transition: width 0.3s ease;
}

/* Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 24px;
}

/* Rows / columns */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.form-row.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.form-row.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1f1f1f;
  font-family: 'Inter', sans-serif;
}

.required {
  color: #b88c48;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #cfa15c;
  box-shadow: 0 0 0 4px rgba(207, 161, 92, 0.14);
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Buttons */
.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
}

.contact-form button,
.btn-secondary {
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-form button {
  align-self: flex-start;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 14px 22px;
  border-radius: 999px;

  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(202,164,95,0.35);
  color: #1f1f1f;

  font-family: 'Inter', sans-serif;
  font-weight: 600;

  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.btn-secondary:hover {
  border-color: #caa45f;
  color: #caa45f;
  transform: translateY(-1px);
}

/* Validation */
.field-error {
  border-color: #c85555 !important;
  box-shadow: 0 0 0 4px rgba(200, 85, 85, 0.10) !important;
}

/* Honeypot */
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* =========================
   WHY BOOK WITH US
========================= */

.why-book {
  padding: 80px 20px;
  background: #ffffff;
}

.why-book-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* intro */
.why-book-intro {
  max-width: 750px;
  margin: 0 auto 50px;
}

.why-book-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: #111;
}

.why-book-intro p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* grid */
.why-book-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* cards */
.why-card {
  text-align: left;
  padding: 26px 24px;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  border: 1px solid #ece7dc;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #111;
}

.why-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #555;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .why-book {
    padding: 60px 20px;
  }

  .why-book-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-book-intro h2 {
    font-size: 2rem;
  }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {
  .info-grid,
  .trust-grid,
  .form-row.two-col,
  .form-row.three-col {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .info-card {
    min-height: auto;
  }

  .form-progress-top,
  .step-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .step-actions .btn-primary,
  .step-actions .btn-secondary,
  .contact-form button {
    width: 100%;
  }
}

/* =========================
   CRUISE LINES PAGE (ULTRA LUXURY)
========================= */
.cruise-lines-page {
  padding: 80px 5%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* subtle background wash */
.cruise-lines-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(202,164,95,0.08), transparent 60%);
  pointer-events: none;
}

/* CATEGORY */
.cruise-category {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

/* stagger effect */
.cruise-category:nth-child(1) { animation-delay: 0.1s; }
.cruise-category:nth-child(2) { animation-delay: 0.2s; }
.cruise-category:nth-child(3) { animation-delay: 0.3s; }
.cruise-category:nth-child(4) { animation-delay: 0.4s; }
.cruise-category:nth-child(5) { animation-delay: 0.5s; }

.cruise-category h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  position: relative;
}

/* elegant gold divider */
.cruise-category h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(to right, #caa45f, transparent);
}

/* GRID */
.cruise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.cruise-grid img {
  max-width: 120px;
  margin: auto;
  opacity: 0.6;
  transition: 0.3s;
}

.cruise-grid img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* FADE ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TABLET */
@media (max-width: 900px) {
  .cruise-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .cruise-lines-page {
    padding: 60px 5%;
  }

  .cruise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .cruise-category {
    margin-bottom: 60px;
  }

  .cruise-category h2 {
    font-size: 24px;
  }
}

/* =========================
   CRUISE COMPARISON PAGE
========================= */

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.comparison-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

.comparison-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.comparison-card p {
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 10px;
}

.comparison-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CRUISE LINES INTRO / COMPARISON CALLOUT
========================= */
.cruise-lines-intro {
  max-width: 1200px;
  margin: 0 auto 70px;
  padding: 38px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 35px;
  align-items: center;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.cruise-lines-intro-text h2 {
  font-size: 2rem;
  margin: 10px 0 16px;
  color: #111;
}

.cruise-lines-intro-text p {
  color: #4b4b4b;
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 650px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #caa45f;
}

.cruise-lines-intro-features {
  display: grid;
  gap: 16px;
}

.intro-feature {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.intro-feature strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #0a2540;
}

.intro-feature p {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 900px) {
  .cruise-lines-intro {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
  }

  .cruise-lines-intro-text h2 {
    font-size: 1.7rem;
  }
}

/* =========================
   ONLINE CHECK-IN PAGE
========================= */

.checkin-intro-section {
  padding-bottom: 20px;
}

.checkin-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.checkin-intro h2,
.checkin-reminders-intro h2,
.checkin-category-header h2 {
  margin-bottom: 14px;
}

.checkin-intro p,
.checkin-reminders-intro p {
  color: #5e5e5e;
  line-height: 1.8;
}

.checkin-directory-section {
  padding-top: 10px;
}

.checkin-category {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.checkin-category:last-of-type {
  margin-bottom: 30px;
}

.checkin-category-header {
  text-align: center;
  margin-bottom: 24px;
}

.luxury-grid {
  grid-template-columns: repeat(5, 1fr);
}

/* =========================
   CHECK-IN GRID
========================= */

.checkin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.checkin-card {
  background: #fff;
  border: 1px solid rgba(212, 176, 106, 0.18);
  border-radius: 18px;
  padding: 28px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.checkin-card img {
  width: 78%;
  max-width: none;
  max-height: 88px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
  transition: all 0.35s ease;
}

.checkin-card span {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #b89452;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 176, 106, 0.4);
}

/* =========================
   REMINDERS
========================= */

.checkin-reminders {
  padding-top: 10px;
}

.checkin-top-reminders {
  max-width: 1200px;
  margin: 0 auto;
}

.checkin-reminders-intro {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.checkin-reminders-grid {
  max-width: 1100px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.reminder-card {
  background: #fff;
  border: 1px solid rgba(212, 176, 106, 0.18);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.reminder-card h3 {
  margin-bottom: 10px;
}

.reminder-card p {
  margin: 0;
  color: #666;
  line-height: 1.75;
}

.checkin-cta {
  text-align: center;
}

.checkin-next {
  margin-top: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .checkin-grid,
  .luxury-grid,
  .checkin-reminders-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .checkin-grid,
  .luxury-grid,
  .checkin-reminders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-checkin {
    min-height: 50vh;
  }

  .checkin-grid,
  .luxury-grid,
  .checkin-reminders-grid {
    grid-template-columns: 1fr;
  }

  .checkin-card {
    width: 100%;
    padding: 22px 16px;
  }

  .checkin-card img {
    width: 86%;
    max-width: none;
    max-height: 108px;
    margin-bottom: 12px;
  }

  .checkin-card span {
    font-size: 0.9rem;
  }
}

/* =========================
   WHY BOOK WITH US – HOMEPAGE FUNNEL
========================= */
.why-book-home {
  padding: 42px 5% 32px;
  background: #fff;
}

.why-book-home-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 34px;
  align-items: stretch;
  padding: 42px 40px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.why-book-home-copy h2 {
  font-size: 2.2rem;
  margin: 10px 0 16px;
  color: #111;
}

.why-book-home-copy p {
  color: #4d4d4d;
  line-height: 1.85;
  margin-bottom: 16px;
}

.why-book-home-lead {
  font-size: 1.08rem;
  color: #333;
}

.why-book-home-grid {
  display: grid;
  gap: 18px;
}

.why-book-home-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid #eee6d8;
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-book-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.why-book-home-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #111;
}

.why-book-home-card p {
  margin: 0;
  color: #5b5b5b;
  line-height: 1.75;
}

.why-book-home-cta {
  margin-top: 22px;
}

/* =========================
   CRUISE LINES INTRO UPGRADE
========================= */
.cruise-lines-intro {
  margin: 0 auto 78px;
  padding: 42px 42px;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 38px;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.06);
}

.cruise-lines-intro-text h2 {
  font-size: 2.15rem;
  line-height: 1.2;
  margin: 12px 0 18px;
}

.cruise-lines-intro-text p {
  line-height: 1.85;
  margin-bottom: 16px;
}

.cruise-lines-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(202,164,95,0.55);
  background: #fff;
  color: #8f6a2f;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: #fbf7ef;
  border-color: #caa45f;
  color: #7c5924;
  transform: translateY(-2px);
}

.intro-feature {
  border-radius: 16px;
  padding: 20px 22px;
}

.intro-feature strong {
  font-size: 1rem;
  margin-bottom: 7px;
}

/* =========================
   FUNNEL RESPONSIVE
========================= */
@media (max-width: 900px) {
  .why-book-home-inner,
  .cruise-lines-intro {
    grid-template-columns: 1fr;
  }

  .why-book-home {
    padding: 34px 5% 24px;
  }

  .why-book-home-inner,
  .cruise-lines-intro {
    padding: 30px 24px;
    gap: 24px;
  }

  .why-book-home-copy h2,
  .cruise-lines-intro-text h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .why-book-home-copy h2,
  .cruise-lines-intro-text h2 {
    font-size: 1.6rem;
  }

  .cruise-lines-intro-actions {
    flex-direction: column;
  }

  .cruise-lines-intro-actions .btn-primary,
  .cruise-lines-intro-actions .btn-secondary-outline {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   WHY BOOK WITH US PAGE
========================= */

.why-book-hero {
  min-height: 62vh;
  padding: 118px 10% 68px;
}

.why-book-hero > img {
  object-position: center center;
}

.why-book-hero .hero-overlay {
  background:
    linear-gradient(rgba(202,164,95,0.08), rgba(202,164,95,0.08)),
    linear-gradient(115deg, rgba(8,8,8,0.52) 0%, rgba(8,8,8,0.28) 42%, rgba(8,8,8,0.54) 100%),
    radial-gradient(circle at center, rgba(0,0,0,0.04) 28%, rgba(0,0,0,0.48) 100%);
}

.why-book-hero .hero-content {
  max-width: 620px;
  margin-left: 36%;
  text-align: center;
  align-items: center;
}

.why-book-hero .section-kicker {
  margin-bottom: 18px;
}

.why-book-hero h1 {
  font-size: 3.05rem;
  line-height: 1.08;
  margin-bottom: 10px;
}

.why-book-hero p {
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 560px;
  color: rgba(255,255,255,0.94);
  margin-bottom: 22px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.18);
}

.why-book-page {
  padding: 80px 5% 90px;
  max-width: 1300px;
  margin: 0 auto;
}

.why-book-page .lux-block {
  max-width: 1200px;
  margin: 0 auto 34px;
  padding: 44px 42px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.06);
}

.why-book-page h2 {
  font-size: 2.2rem;
  line-height: 1.18;
  margin: 10px 0 16px;
  color: #111;
}

.why-book-page p {
  color: #4d4d4d;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 1.03rem;
}

.why-book-page p:last-child {
  margin-bottom: 0;
}

.why-intro,
.why-personal,
.why-cta {
  text-align: center;
}

.why-personal p,
.why-cta p {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.value-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid #eee6d8;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.value-card h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: #111;
}

.value-card p {
  margin: 0;
  color: #555;
  line-height: 1.72;
  font-size: 0.98rem;
}

.why-book-page .cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(202,164,95,0.55);
  background: #fff;
  color: #8f6a2f;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: #fbf7ef;
  border-color: #caa45f;
  color: #7c5924;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .why-book-hero .hero-content {
    margin-left: 22%;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-book-hero {
    min-height: 56vh;
    padding: 104px 20px 48px;
  }

  .why-book-hero .hero-content {
    margin: 0 auto;
    max-width: 92%;
  }

  .why-book-hero h1 {
    font-size: 2.3rem;
  }

  .why-book-hero p {
    font-size: 1rem;
  }

  .why-book-page {
    padding: 56px 5% 64px;
  }

  .why-book-page .lux-block {
    padding: 30px 22px;
    border-radius: 16px;
    margin-bottom: 24px;
  }

  .why-book-page h2 {
    font-size: 1.8rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-book-page .cta-row {
    flex-direction: column;
  }

  .why-book-page .cta-row .btn-primary,
  .why-book-page .cta-row .btn-secondary-outline {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   HOMEPAGE HERO CONTENT - ELITE+ ONLY
========================= */

.hero-content-home {
  max-width: 700px;
}

.hero-content-home {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content-home .hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ecd3a0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.22);
}

.hero-content-home h1 {
  font-size: 68px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0.2px;
  margin: 0 0 14px;
  max-width: 700px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.20);
}

.hero-content-home p {
  margin: 0;
  max-width: 620px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.16);
}

.hero-content-home .hero-lead {
  font-size: 24px;
  line-height: 1.6;
  color: rgba(255,255,255,0.96);
  margin-bottom: 4px;
}

.hero-content-home .hero-subcopy {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

.hero-content-home .btn-primary {
  margin-top: 34px;
  padding: 15px 32px;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content-home {
    max-width: 100%;
  }

  .hero-content-home .hero-kicker {
    margin-bottom: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.24em;
  }

  .hero-content-home h1 {
    font-size: 44px;
    line-height: 1.08;
    margin-bottom: 12px;
    max-width: 100%;
  }

  .hero-content-home .hero-lead {
    font-size: 18px;
    line-height: 1.6;
  }

  .hero-content-home .hero-subcopy {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-content-home .btn-primary {
    margin-top: 26px;
    padding: 14px 26px;
  }
}

/* =========================
   HOMEPAGE HERO OVERLAY - ELITE+ ONLY
========================= */

.hero > .hero-overlay {
  background:
    /* soft warm luxury wash */
    linear-gradient(rgba(202,164,95,0.07), rgba(202,164,95,0.07)),

    /* editorial directional shading */
    linear-gradient(118deg, rgba(8,8,8,0.56) 0%, rgba(8,8,8,0.28) 42%, rgba(8,8,8,0.52) 100%),

    /* subtle cinematic vignette */
    radial-gradient(circle at center, rgba(0,0,0,0.03) 34%, rgba(0,0,0,0.52) 100%);
}

/* =========================
   CRUISE LINES HERO - ELITE+
========================= */
.cruise-lines-hero .hero-overlay {
  background:
    linear-gradient(rgba(202,164,95,0.07), rgba(202,164,95,0.07)),
    linear-gradient(to bottom, rgba(10,10,10,0.22), rgba(10,10,10,0.46)),
    radial-gradient(circle at center, rgba(0,0,0,0.03) 35%, rgba(0,0,0,0.42) 100%);
}

.cruise-lines-hero .hero-content {
  max-width: 560px;
}

.cruise-lines-hero .section-kicker {
  margin-bottom: 18px;
}

.cruise-lines-hero h1 {
  margin-bottom: 8px;
}

.cruise-lines-hero p {
  max-width: 520px;
}

.cruise-lines-hero p + p {
  margin-top: -4px;
}

/* =========================
   CRUISE LINES INTRO - ELEVATED
========================= */
.cruise-lines-intro {
  max-width: 1200px;
  margin: 0 auto 78px;
  padding: 44px 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 38px;
  align-items: center;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.cruise-lines-intro-text h2 {
  font-size: 2.15rem;
  line-height: 1.18;
  margin: 12px 0 18px;
  color: #111;
}

.cruise-lines-intro-text p {
  color: #4b4b4b;
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 670px;
}

.cruise-lines-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #caa45f;
}

.cruise-lines-intro-features {
  display: grid;
  gap: 18px;
}

.intro-feature {
  background: rgba(255,255,255,0.94);
  border: 1px solid #eee6d8;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.intro-feature strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #0a2540;
}

.intro-feature p {
  margin: 0;
  color: #555;
  line-height: 1.75;
  font-size: 15px;
}

/* =========================
   CRUISE CATEGORY UPGRADE
========================= */
.cruise-category {
  margin-bottom: 82px;
}

.cruise-category h2 {
  font-family: 'Playfair Display', serif;
  font-size: 31px;
  margin-bottom: 30px;
  letter-spacing: 0.4px;
  position: relative;
  color: #111;
}

.cruise-category h2::after {
  content: '';
  display: block;
  width: 78px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(to right, #caa45f, rgba(202,164,95,0.08));
}

/* =========================
   CRUISE GRID (FINAL CLEAN VERSION)
========================= */

.cruise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-top: 34px;
}

.cruise-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 24px 20px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(212,176,106,0.14);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cruise-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(212,176,106,0.32);
}

.cruise-grid img {
  width: 88%;
  max-width: none;
  max-height: 95px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  transition: all 0.32s ease;
}

/* Tablet */
@media (max-width: 900px) {
  .cruise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .cruise-grid a {
    min-height: 130px;
    padding: 22px 18px;
  }

  .cruise-grid img {
    width: 90%;
    max-height: 100px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cruise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cruise-grid a {
    min-height: 150px;
    padding: 26px 20px;
  }

  .cruise-grid img {
    width: 92%;
    max-height: 110px;
  }
}

/* =========================
   BUTTON OUTLINE (shared use)
========================= */
.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(202,164,95,0.55);
  background: #fff;
  color: #8f6a2f;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: #fbf7ef;
  border-color: #caa45f;
  color: #7c5924;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .cruise-lines-intro {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    gap: 24px;
  }

  .cruise-lines-intro-text h2 {
    font-size: 1.8rem;
  }

  .cruise-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .cruise-lines-hero .hero-content {
    max-width: 90%;
  }

  .cruise-lines-hero p + p {
    margin-top: 0;
  }

  .cruise-category h2 {
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  .cruise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cruise-grid a {
    min-height: 92px;
    padding: 14px 12px;
  }

  .cruise-grid img {
    max-width: 118px;
    max-height: 54px;
    opacity: 1;
    filter: grayscale(0%);
  }
}

/* =========================
   EXCURSIONS HERO - ELITE+
========================= */
.excursions-hero .hero-overlay {
  background:
    linear-gradient(rgba(202,164,95,0.06), rgba(202,164,95,0.06)),
    linear-gradient(to bottom, rgba(10,10,10,0.22), rgba(10,10,10,0.46)),
    radial-gradient(circle at center, rgba(0,0,0,0.02) 35%, rgba(0,0,0,0.45) 100%);
}

.excursions-hero .hero-content {
  max-width: 560px;
}

.excursions-hero .section-kicker {
  margin-bottom: 18px;
}

.excursions-hero p + p {
  margin-top: -4px;
}

/* =========================
   EXCURSIONS CTA - LUXURY
========================= */
.cta-section {
  margin: 70px auto;
  max-width: 1200px;
  padding: 44px 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.cta-content h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.cta-content p {
  line-height: 1.8;
  margin-bottom: 16px;
  color: #4b4b4b;
}

.cta-content ul {
  margin: 18px 0 22px;
  padding-left: 0;
  list-style: none;
}

.cta-content li {
  margin-bottom: 10px;
  color: #444;
}

.cta-content li::before {
  content: "✓";
  color: #caa45f;
  margin-right: 8px;
}

.cta-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

/* =========================
   EXCURSION GRID - MATCH CRUISE LINES
========================= */

.cruise-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(212,176,106,0.14);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.cruise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  border-color: rgba(212,176,106,0.28);
}

.cruise-card-img {
  max-width: 130px;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(55%);
  transition: all 0.3s ease;
}

.cruise-card:hover .cruise-card-img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .cruise-card-img {
    opacity: 1;
    filter: grayscale(0%);
  }
}

/* =========================
   DIRECTIONS HERO - ELITE+
========================= */
.directions-hero .hero-overlay {
  background:
    linear-gradient(rgba(202,164,95,0.06), rgba(202,164,95,0.06)),
    linear-gradient(to bottom, rgba(10,10,10,0.22), rgba(10,10,10,0.46)),
    radial-gradient(circle at center, rgba(0,0,0,0.02) 35%, rgba(0,0,0,0.45) 100%);
}

.directions-hero .hero-content {
  max-width: 560px;
}

.directions-hero p + p {
  margin-top: -4px;
}

/* =========================
   DIRECTIONS INTRO
========================= */
.directions-intro {
  text-align: center;
  max-width: 760px;
  margin: 50px auto 20px;
  font-size: 18px;
  color: #555;
}


/* =========================
   TRAVEL TIPS - ELITE BLOCK
========================= */
.travel-tips {
  margin: 70px auto;
}

.travel-tips h2 {
  text-align: center;
  margin-bottom: 40px;
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.tips-block {
  background: #fff;
  padding: 28px 26px;
  border-radius: 18px;
  border: 1px solid #ece7dc;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.tips-block.highlight {
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
}

.tips-block h3 {
  margin-bottom: 14px;
}

.tips-block ul {
  padding-left: 0;
  list-style: none;
}

.tips-block li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.tips-block li::before {
  content: "•";
  color: #caa45f;
  margin-right: 8px;
}

/* =========================
   PORT CARDS - PREMIUM
========================= */
.port-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid #ece7dc;
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);
}

.port-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 10px;
}

.port-card p {
  color: #555;
  margin-bottom: 18px;
}

/* MAP */
.port-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 14px;
  margin-bottom: 16px;
}

/* BUTTONS */
.map-buttons {
  display: flex;
  gap: 12px;
}

.btn-map {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(202,164,95,0.5);
  text-decoration: none;
  color: #7a5a2c;
  transition: all 0.25s ease;
}

.btn-map:hover {
  background: #f9f5ee;
}

.btn-map.apple {
  border-color: #ccc;
  color: #333;
}

@media (max-width: 768px) {

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .ports-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .ports-nav a {
    white-space: nowrap;
  }

  .port-card {
    padding: 22px;
  }

  .port-map iframe {
    height: 240px;
  }
}

/* =========================
   APPLE MAP BUTTON - FORCE READABILITY
========================= */
.map-buttons .btn-map.apple {
  background: #000 !important;
  color: #ffffff !important;
  border: 1px solid #000 !important;
}

.map-buttons .btn-map.apple:hover {
  background: #111 !important;
  color: #ffffff !important;
}

.map-buttons .btn-map {
  white-space: nowrap;
}

/* =========================
   MAP BUTTON LAYOUT FIX
========================= */
.port-card .map-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.port-card .map-buttons .btn-map {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  white-space: nowrap;
  text-align: center;
  padding: 10px 12px;
}

/* =========================
   CRUISE LINE COMPARISON PAGE - ELITE+ REFRESH
========================= */

/* HERO */
.comparison-hero .hero-overlay {
  background:
    linear-gradient(rgba(202,164,95,0.06), rgba(202,164,95,0.06)),
    linear-gradient(to bottom, rgba(10,10,10,0.22), rgba(10,10,10,0.46)),
    radial-gradient(circle at center, rgba(0,0,0,0.02) 35%, rgba(0,0,0,0.45) 100%);
}

.comparison-hero .hero-content {
  max-width: 560px;
}

.comparison-hero .section-kicker {
  margin-bottom: 18px;
}

.comparison-hero p + p {
  margin-top: -4px;
}

/* PAGE SHELL */
.comparison-page-shell {
  padding-top: 74px;
}

/* EDITORIAL INTRO */
.comparison-intro {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.comparison-intro .lead {
  max-width: 820px;
  margin: 0 auto 16px;
  font-size: 1.08rem;
  line-height: 1.95;
  color: #4b4b4b;
}

/* SHARED BLOCK SPACING ON THIS PAGE */
.comparison-page-shell .lux-block {
  max-width: 1200px;
  margin: 0 auto 42px;
  padding: 42px 40px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.comparison-page-shell .lux-block h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #111;
  text-align: center;
}

/* =========================
   START HERE - SOFTER DECISION CARDS
========================= */

.comparison-start-here {
  background: linear-gradient(135deg, #f9f8f5, #ffffff);
}

.comparison-start-here .lux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.comparison-start-here .lux-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid #eee6d8;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-start-here .lux-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.comparison-start-here .lux-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #111;
}

.comparison-start-here .lux-card p {
  color: #555;
  line-height: 1.76;
  margin-bottom: 10px;
}

.comparison-start-here .lux-card p:last-child {
  margin-bottom: 0;
}

/* =========================
   REFERENCE GUIDE - LIGHTER, CLEANER
========================= */

.comparison-reference {
  background: #ffffff;
  border: 1px solid #efebe3;
  box-shadow: none;
}

.comparison-reference .comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.comparison-reference .comparison-card {
  background: #fff;
  border: 1px solid #ece7dc;
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: none;
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.comparison-reference .comparison-card:hover {
  transform: translateY(-3px);
  border-color: rgba(202,164,95,0.32);
  box-shadow: 0 12px 26px rgba(0,0,0,0.05);
}

.comparison-reference .comparison-card h3 {
  font-size: 1.18rem;
  margin-bottom: 14px;
  color: #111;
}

.comparison-reference .comparison-card p {
  color: #555;
  line-height: 1.68;
  margin-bottom: 8px;
  font-size: 0.97rem;
}

.comparison-reference .comparison-card p strong {
  display: inline-block;
  min-width: 82px;
  color: #1f1f1f;
  font-weight: 600;
}

/* =========================
   BEST BY TRAVEL STYLE - LIGHTER SUMMARY TILES
========================= */

.comparison-summary {
  background: linear-gradient(135deg, #ffffff, #fbfaf7);
}

.comparison-summary .lux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.comparison-summary .lux-card {
  background: #fffdfa;
  border: 1px solid rgba(202,164,95,0.18);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.03);
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.comparison-summary .lux-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.06);
}

.comparison-summary .lux-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #111;
}

.comparison-summary .lux-card p {
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

/* =========================
   GUIDANCE BLOCK - STANDOUT MOMENT
========================= */

.comparison-guidance {
  text-align: center;
  background: linear-gradient(135deg, #f8f4ec, #fffdfa);
}

.comparison-guidance .lux-highlight {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px 30px;
  background: linear-gradient(135deg, #fffdfa, #f8f4ec);
  border: 1px solid rgba(202,164,95,0.24);
  border-left: none;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.05);
  font-size: 1.03rem;
  line-height: 1.9;
  color: #4d4d4d;
}

/* =========================
   CTA - KEEP PREMIUM, CLEAN
========================= */

.comparison-cta-section {
  margin: 70px auto 0;
  max-width: 1200px;
  padding: 46px 46px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: stretch;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.comparison-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparison-cta-content h2 {
  font-size: 2.05rem;
  line-height: 1.16;
  margin: 10px 0 14px;
  color: #111;
}

.comparison-cta-content .cta-subtle {
  color: #4d4d4d;
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 620px;
  font-size: 1.02rem;
}

.comparison-cta-content ul {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.comparison-cta-content li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #4b4b4b;
  line-height: 1.75;
}

.comparison-cta-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #caa45f;
  font-weight: 700;
}

.comparison-cta-image {
  position: relative;
  min-height: 390px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.comparison-cta-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 0.45s ease;
}

.comparison-cta-section:hover .comparison-cta-image img {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .comparison-start-here .lux-grid,
  .comparison-reference .comparison-grid,
  .comparison-summary .lux-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .comparison-cta-section {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  .comparison-cta-content h2 {
    font-size: 1.8rem;
  }

  .comparison-cta-image {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .comparison-page-shell {
    padding-top: 54px;
  }

  .comparison-intro {
    margin-bottom: 38px;
  }

  .comparison-intro .lead {
    font-size: 1rem;
    line-height: 1.8;
  }

  .comparison-page-shell .lux-block {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .comparison-page-shell .lux-block h2 {
    font-size: 1.7rem;
  }

  .comparison-start-here .lux-grid,
  .comparison-reference .comparison-grid,
  .comparison-summary .lux-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .comparison-reference .comparison-card p strong {
    min-width: 0;
  }

 @media (max-width: 768px) {
      .comparison-cta-image {
        min-height: 180px;
        max-height: 200px;
      }
    
      .comparison-cta-image img {
        object-position: center 30%;
      }
    }
}

/* =========================
   HOMEPAGE FEATURED DESTINATIONS
========================= */

.explore-destinations .dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.explore-destinations .dest-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  min-height: 280px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.explore-destinations .dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.10);
}

.explore-destinations .dest-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.explore-destinations .dest-card:hover img {
  transform: scale(1.08);
}

.explore-destinations .dest-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.64));
  transition: background 0.35s ease;
}

.explore-destinations .dest-card:hover .overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.04), rgba(0,0,0,0.74));
}

.explore-destinations .dest-card .overlay span {
  display: inline-block;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 3px 16px rgba(0,0,0,0.22);
}

.explore-destinations .dest-card.view-all {
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
}

.explore-destinations .dest-card.view-all .overlay {
  align-items: center;
  justify-content: center;
  background: none;
}

.explore-destinations .dest-card.view-all .overlay span {
  color: #111;
  text-shadow: none;
  max-width: 180px;
}

@media (max-width: 1100px) {
  .explore-destinations .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .explore-destinations .dest-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .explore-destinations .dest-card {
    min-height: 200px;
  }

  .explore-destinations .dest-card img {
    height: 200px;
    min-height: 0;
  }

  .explore-destinations .dest-card .overlay {
    padding: 18px;
  }

  .explore-destinations .dest-card .overlay span {
    font-size: 1.3rem;
  }
}

/* =========================
   FEATURED CRUISE LINES - MOBILE FULL COLOR
========================= */
@media (max-width: 768px) {
  .cruiseSwiper img {
    filter: grayscale(0%);
    opacity: 1;
    transform: none;
  }
}

.explore-destinations .dest-card.view-all {
    background: linear-gradient(135deg, #f8f5ee, #ffffff);
    border: 1px solid #ece7dc;
}

.explore-destinations .dest-card.view-all .overlay span {
  color: #111;
  text-shadow: none;
  max-width: 180px;
}

/* =========================
   SHORE EXCURSIONS PARTNER CTA
========================= */

.excursions-partner-section {
  margin: 70px auto;
  max-width: 1200px;
  padding: 46px 46px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: stretch;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.excursions-partner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.excursions-partner-copy h2 {
  font-size: 2.05rem;
  line-height: 1.18;
  margin: 10px 0 16px;
  color: #111;
}

.excursions-partner-copy p {
  color: #4b4b4b;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 640px;
}

.excursions-partner-copy ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.excursions-partner-copy li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #4b4b4b;
  line-height: 1.75;
}

.excursions-partner-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #caa45f;
  font-weight: 700;
}

.excursions-partner-visual {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbfaf7, #ffffff);
  border: 1px solid rgba(212,176,106,0.14);
  border-radius: 20px;
  padding: 10px; /* reduced padding */
}

.excursions-partner-visual img {
  width: 100%;
  max-width: 320px;  /* increased size */
  max-height: 280px; /* increased size */
  object-fit: contain;
  margin: 0 auto;
}

.excursions-partner-visual a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.excursions-partner-visual:hover img {
  transform: scale(1.03);
  opacity: 0.97;
}

@media (max-width: 900px) {
  .excursions-partner-section {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  .excursions-partner-copy h2 {
    font-size: 1.8rem;
  }

  .excursions-partner-visual {
    min-height: 260px;
  }

  .excursions-partner-visual img {
    max-width: 240px;
    max-height: 240px;
  }
}

@media (max-width: 768px) {
  .excursions-partner-copy {
    order: 1; /* text first */
  }

  .excursions-partner-visual {
    order: 2; /* image below */
    min-height: 220px;
    padding: 8px;
    margin-top: 10px; /* space above image */
  }
    
  .excursions-partner-visual img {
    max-width: 240px;
    max-height: 220px;
  }
}
/* =========================
   BILL OF RIGHTS PAGE
========================= */

.bill-rights-hero .hero-overlay {
  background:
    linear-gradient(rgba(202,164,95,0.06), rgba(202,164,95,0.06)),
    linear-gradient(to bottom, rgba(10,10,10,0.22), rgba(10,10,10,0.46)),
    radial-gradient(circle at center, rgba(0,0,0,0.02) 35%, rgba(0,0,0,0.45) 100%);
}

.bill-rights-hero .hero-content {
  max-width: 560px;
}

.bill-rights-hero p + p {
  margin-top: -4px;
}

.bill-rights-page-shell {
  padding-top: 74px;
}

.bill-rights-intro {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.bill-rights-intro .lead {
  max-width: 860px;
  margin: 0 auto 16px;
  font-size: 1.08rem;
  line-height: 1.95;
  color: #4b4b4b;
}

.bill-rights-page-shell .lux-block {
  max-width: 1200px;
  margin: 0 auto 36px;
  padding: 42px 40px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.bill-rights-page-shell .lux-block h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #111;
}

.bill-rights-note {
  max-width: 950px;
  margin: 0 auto 28px;
}

.bill-rights-note p {
  color: #4b4b4b;
  line-height: 1.9;
  font-size: 1.02rem;
}

.bill-rights-quote {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 26px;
  background: linear-gradient(135deg, #fffdfa, #f8f4ec);
  border: 1px solid rgba(202,164,95,0.24);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.bill-rights-quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4d4d4d;
  text-align: center;
}

.rights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.right-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255,255,255,0.96);
  border: 1px solid #ece7dc;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  border-color: rgba(212,176,106,0.28);
}

.right-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3e6c7, #d8b57a);
  color: #6f5228;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.right-card p {
  margin: 0;
  color: #4d4d4d;
  line-height: 1.82;
}

.bill-rights-cta {
  text-align: center;
}

.bill-rights-cta p {
  max-width: 760px;
  margin: 0 auto;
  color: #555;
  line-height: 1.85;
}

.bill-rights-cta .cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .rights-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bill-rights-page-shell {
    padding-top: 54px;
  }

  .bill-rights-intro {
    margin-bottom: 38px;
  }

  .bill-rights-intro .lead {
    font-size: 1rem;
    line-height: 1.8;
  }

  .bill-rights-page-shell .lux-block {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .bill-rights-page-shell .lux-block h2 {
    font-size: 1.7rem;
  }

  .right-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .right-number {
    margin: 0 auto;
  }

  .bill-rights-quote {
    padding: 22px 18px;
  }
}
/* =========================
   PASSENGER RIGHTS CALLOUT
========================= */

.passenger-rights-callout {
  padding-top: 20px;
  padding-bottom: 70px;
}

.rights-callout-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 42px 40px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  text-align: center;
}

.rights-callout-copy {
  max-width: 820px;
  margin: 0 auto;
}

.rights-callout-copy h2 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 10px 0 16px;
  color: #111;
}

.rights-callout-copy p {
  color: #4d4d4d;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 1.03rem;
}

/* =========================
   WHY BOOK WITH US RIGHTS BLOCK
========================= */

.why-book-page .why-rights {
  text-align: center;
}

.why-book-page .why-rights p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.rights-inline-link {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* =========================
   FOOTER LINK SUPPORT
========================= */

.footer-links a {
  transition: opacity 0.25s ease, color 0.25s ease;
}

.footer-links a:hover {
  color: #e6c98f;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .rights-callout-inner {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .rights-callout-copy h2 {
    font-size: 1.75rem;
  }

  .rights-callout-copy p {
    font-size: 0.98rem;
  }
}

/* =========================
   SUB DESTINATION GRID (ELITE+)
   Used for Caribbean / Asia / future parent pages
========================= */

.subdest-section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 30px;
}

.subdest-section-header h2 {
  margin: 10px 0 14px;
}

.subdest-section-header p {
  color: #555;
  line-height: 1.8;
}

/* GRID */
.subdest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.subdest-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  min-height: 420px;
  background: #000;
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
  text-decoration: none;
}

/* IMAGE */
.subdest-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.subdest-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background:
    linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.10) 100%);
  transition: background 0.35s ease;
}

/* CONTENT */
.subdest-content {
  width: 100%;
}

.subdest-content h3 {
  color: #fff;
  font-size: 1.7rem;
  margin: 0 0 10px;
}

.subdest-content p {
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  margin: 0;
  font-size: 0.98rem;
  max-width: 95%;
}

/* HOVER */
.subdest-card:hover img {
  transform: scale(1.06);
}

.subdest-card:hover .subdest-overlay {
  background:
    linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.34) 45%, rgba(0,0,0,0.12) 100%);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .subdest-grid {
    grid-template-columns: 1fr;
  }

  .subdest-card,
  .subdest-card img {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .subdest-overlay {
    padding: 22px;
  }

  .subdest-content h3 {
    font-size: 1.45rem;
  }

  .subdest-content p {
    font-size: 0.95rem;
  }
}

/* =========================
   LUX NEXT STEP SECTION (GLOBAL)
========================= */

.lux-next {
  max-width: 1200px;
  margin: 70px auto 0;
  padding: 44px 40px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  text-align: center;
}

.lux-next .section-kicker {
  display: block;
  margin-bottom: 10px;
}

.lux-next h2 {
  font-size: 2rem;
  margin: 10px 0 14px;
  color: #111;
}

.lux-next p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: #4d4d4d;
  line-height: 1.85;
}

.lux-next-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* subtle hover polish */
.lux-next a {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lux-next a:hover {
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .lux-next {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .lux-next h2 {
    font-size: 1.7rem;
  }

  .lux-next p {
    font-size: 0.98rem;
  }
}

/* =========================
   DESTINATION FILTERS - POLISHED
========================= */

.destination-filters {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.dest-filter {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  color: #222;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.dest-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(202,164,95,0.55);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.dest-filter.active {
  background: #0a2540;
  color: #fff;
  border-color: #0a2540;
  box-shadow: 0 8px 18px rgba(10,37,64,0.18);
}

/* =========================
   DESTINATION CARD FILTER ANIMATION
========================= */

.elite-destinations .dest-card {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s ease;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.elite-destinations .dest-card.is-hiding {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  pointer-events: none;
}

.elite-destinations .dest-card.is-hidden {
  display: none !important;
}

.elite-destinations .dest-card.is-showing {
  display: block;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

/* =========================
   MOBILE FILTER BAR
========================= */
@media (max-width: 768px) {
  .destination-filters-section {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .destination-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 2px 4px 10px;
    scrollbar-width: none;
  }

  .destination-filters::-webkit-scrollbar {
    display: none;
  }

  .dest-filter {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* =========================
   CRUISE COMPARISON CTA - ELITE+
========================= */

.comparison-cta-section {
  margin: 70px auto 0;
  max-width: 1200px;
  padding: 46px 46px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: stretch;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border: 1px solid #ece7dc;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.comparison-cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparison-cta-content h2 {
  font-size: 2.05rem;
  line-height: 1.16;
  margin: 10px 0 14px;
  color: #111;
}

.comparison-cta-content .cta-subtle {
  color: #4d4d4d;
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 620px;
  font-size: 1.02rem;
}

.comparison-cta-content ul {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.comparison-cta-content li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #4b4b4b;
  line-height: 1.75;
}

.comparison-cta-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #caa45f;
  font-weight: 700;
}

.comparison-cta-image {
  position: relative;
  min-height: 390px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.comparison-cta-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 0.45s ease;
}

.comparison-cta-section:hover .comparison-cta-image img {
  transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 900px) {
  .comparison-cta-section {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  .comparison-cta-content h2 {
    font-size: 1.8rem;
  }

  .comparison-cta-image {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .comparison-cta-image {
    min-height: 260px;
  }

  .comparison-cta-image img {
    object-position: center 32%;
  }
}

/* =========================
   CRUISE LINES SECTION INTRO
========================= */

.cruise-lines-section-intro {
  max-width: 820px;
  margin: 0 auto 46px;
}

/* =========================
   SHORE EXCURSIONS FINAL CTA
========================= */

.excursions-final-cta {
  margin-bottom: 80px;
}

.excursions-final-cta p {
  max-width: 760px;
}

/* =========================
   LUXURY BUTTON SYSTEM
========================= */

/* BASE BUTTON */
.btn,
.btn-primary,
.btn-secondary,
.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

/* PRIMARY - GOLD */
.btn-primary {
  background: rgba(202,164,95,0.08);
  border: 1px solid #caa45f;
  color: #8f6a2f;
}

.btn-primary:hover {
  background: #caa45f;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(202,164,95,0.25);
}

/* SECONDARY - LIGHT BACKGROUNDS */
.btn-secondary,
.btn-secondary-outline {
  background: #fff;
  border: 1px solid rgba(202,164,95,0.45);
  color: #6f5228;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

.btn-secondary:hover,
.btn-secondary-outline:hover {
  background: #fbf7ef;
  border-color: #caa45f;
  color: #7c5924;
  transform: translateY(-2px);
}

/* DARK / HERO SECTION BUTTONS */
.hero .btn-primary,
.dark-section .btn-primary {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.65);
  color: #fff;
}

.hero .btn-primary:hover,
.dark-section .btn-primary:hover {
  background: #fff;
  color: #000;
}

/* DARK SECTION SECONDARY ONLY */
.dark-section .btn-secondary,
.hero .btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  box-shadow: none;
}

.dark-section .btn-secondary:hover,
.hero .btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* MINIMAL LINK BUTTON */
.btn-link {
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #caa45f;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.btn-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #caa45f;
  transition: width 0.35s ease;
}

.btn-link:hover::after {
  width: 100%;
}

/* SIZE VARIANTS */
.btn-small {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.btn-large,
.btn-primary.large {
  padding: 16px 36px;
  font-size: 0.9rem;
}

/* =========================
   DIRECTIONS PAGE - PREMIUM INTRO + FILTER BAR
========================= */

.directions-intro-premium {
  padding: 36px 20px 10px;
}

.directions-intro-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.directions-lead {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #2b2b2b;
  margin: 0 0 10px;
}

.directions-subtext {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #6a6a6a;
  margin: 0;
}

.ports-filter-section {
  padding: 18px 20px 26px;
}

.ports-filter-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.ports-filter-panel {
  background: linear-gradient(135deg, #fbfaf7 0%, #ffffff 100%);
  border: 1px solid #ece6da;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  padding: 34px 28px 26px;
}

.ports-filter-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 24px;
}

.ports-filter-header h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: #111;
}

.ports-filter-header p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

.ports-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.port-filter {
  appearance: none;
  border: 1px solid #ddd3c2;
  background: rgba(255, 255, 255, 0.92);
  color: #2a2a2a;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.28s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.port-filter:hover {
  transform: translateY(-2px);
  border-color: rgba(202, 164, 95, 0.55);
  color: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.port-filter.active {
  background: linear-gradient(135deg, #1d1d1d 0%, #2c2c2c 100%);
  color: #ffffff;
  border-color: #1d1d1d;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.ports-filter-status {
  text-align: center;
  margin-top: 18px;
  font-size: 0.95rem;
  color: #7a6a4d;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================
   PORT FILTER ANIMATION
========================= */

.port-filter-item {
  transition:
    opacity 0.32s ease,
    transform 0.32s ease,
    max-height 0.32s ease,
    margin 0.32s ease,
    padding 0.32s ease;
}

.port-filter-item.is-showing {
  animation: portFadeIn 0.35s ease;
}

.port-filter-item.is-hiding {
  opacity: 0;
  transform: translateY(10px);
}

.port-filter-item.is-hidden {
  display: none !important;
}

@keyframes portFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .ports-filter-panel {
    padding: 28px 20px 22px;
    border-radius: 20px;
  }

  .ports-filter-buttons {
    gap: 10px;
  }

  .port-filter {
    font-size: 0.92rem;
    padding: 11px 15px;
  }
}

@media (max-width: 767px) {
  .directions-intro-premium {
    padding: 28px 16px 8px;
  }

  .ports-filter-section {
    padding: 14px 16px 22px;
  }

  .ports-filter-header {
    margin-bottom: 20px;
  }

  .ports-filter-header h2 {
    font-size: 1.7rem;
  }

  .ports-filter-header p,
  .directions-lead,
  .directions-subtext {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .ports-filter-buttons {
    justify-content: flex-start;
  }

  .port-filter {
    width: 100%;
    text-align: center;
  }

  .ports-filter-status {
    margin-top: 16px;
    font-size: 0.88rem;
  }
}

.ports-directions.single-port-view .port-filter-item {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .ports-directions.single-port-view .port-filter-item {
    max-width: 100%;
  }
}

/* =========================
   DIRECTIONS PAGE - REGION + PORT FILTERS
========================= */

.ports-filter-group + .ports-filter-group {
  margin-top: 22px;
}

.ports-filter-label {
  text-align: center;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a6a4d;
}

.ports-region-buttons,
.ports-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.region-filter,
.port-filter {
  appearance: none;
  border: 1px solid #ddd3c2;
  background: rgba(255, 255, 255, 0.92);
  color: #2a2a2a;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.28s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.region-filter:hover,
.port-filter:hover {
  transform: translateY(-2px);
  border-color: rgba(202, 164, 95, 0.55);
  color: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.region-filter.active,
.port-filter.active {
  background: linear-gradient(135deg, #1d1d1d 0%, #2c2c2c 100%);
  color: #ffffff;
  border-color: #1d1d1d;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

@media (max-width: 767px) {
  .ports-region-buttons,
  .ports-filter-buttons {
    justify-content: flex-start;
  }

  .region-filter,
  .port-filter {
    width: 100%;
    text-align: center;
  }
}

/* Controlled results layout for 1 or 2 visible ports */
.ports-directions.single-port-view .port-filter-item {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.ports-directions.double-port-view {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  gap: 32px;
}

.ports-directions.double-port-view .port-filter-item {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .ports-directions.single-port-view .port-filter-item,
  .ports-directions.double-port-view .port-filter-item {
    max-width: 100%;
  }

  .ports-directions.double-port-view {
    grid-template-columns: 1fr;
  }
}

.ports-directions.no-port-view {
  min-height: 0;
}

.is-hidden-step {
  display: none;
}

.is-revealed-step {
  display: block;
  animation: fadeStepIn 0.35s ease;
}

@keyframes fadeStepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   PERFECT HERO CENTERING (MOBILE)
========================= */
@media (max-width: 768px) {

  .hero,
  .small-hero {
    position: relative;
  }

  .hero .hero-content,
  .small-hero .hero-content {
    position: absolute !important;

    /* TRUE CENTERING */
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;

    /* BREAK OUT OF CONTAINER */
    width: 100% !important;
    max-width: 640px !important;

    /* REMOVE OFFSET ISSUES */
    margin: 0 !important;
    padding: 0 16px !important;

    /* TEXT */
    text-align: center !important;
    align-items: center !important;

    /* prevent weird inherited constraints */
    right: auto !important;
    bottom: auto !important;
  }

  .hero .hero-content .section-kicker,
  .hero .hero-content h1,
  .hero .hero-content p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

}

.checkin-category:last-of-type {
  margin-bottom: 30px;
}

.checkin-next {
  margin-top: 0;
}

/* =========================
   CRUISE LOGO INTERACTION
   DESKTOP = muted until hover
   TOUCH = always full color
========================= */

@media (hover: hover) and (pointer: fine) {
  .cruise-grid img,
  .cruise-card img,
  .cruise-card-img,
  .checkin-card img {
    opacity: 0.7;
    filter: grayscale(100%);
  }

  .cruise-grid a:hover img,
  .cruise-card:hover img,
  .checkin-card:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
  }
}

@media (hover: none), (pointer: coarse) {
  .cruise-grid img,
  .cruise-card img,
  .cruise-card-img,
  .checkin-card img {
    opacity: 1 !important;
    filter: grayscale(0%) !important;
    transform: none !important;
  }

  .cruise-grid a:hover img,
  .cruise-card:hover img,
  .checkin-card:hover img {
    opacity: 1 !important;
    filter: grayscale(0%) !important;
    transform: none !important;
  }
}

/* CHECK-IN PAGE: consistent card widths */
.checkin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 220px);
  justify-content: center;
  gap: 32px;
}

.checkin-card {
  width: 220px;
}

.luxury-grid {
  grid-template-columns: repeat(auto-fit, 220px);
}

@media (max-width: 600px) {
  .checkin-grid,
  .luxury-grid {
    grid-template-columns: 1fr;
  }

  .checkin-card {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* MOBILE ONLY: larger cruise logos on Cruise Lines + Shore Excursions pages */
@media (max-width: 600px) {
  .cruise-lines-page .cruise-grid a,
  .cruise-lines-section .cruise-card {
    min-height: 130px;
    padding: 22px 16px;
  }

  .cruise-lines-page .cruise-grid img,
  .cruise-lines-section .cruise-card-img,
  .cruise-lines-section .cruise-card img {
    width: 90%;
    max-width: 220px;
    max-height: 95px;
    object-fit: contain;
  }
}

/* MOBILE ONLY: force larger cruise logos on Cruise Lines + Shore Excursions */
@media (max-width: 600px) {

  .cruise-lines-page .cruise-grid a,
  .cruise-lines-page .cruise-card,
  .cruise-lines-section .cruise-grid a,
  .cruise-lines-section .cruise-card {
    min-height: 145px !important;
    padding: 24px 18px !important;
  }

  .cruise-lines-page .cruise-grid img,
  .cruise-lines-page .cruise-card img,
  .cruise-lines-page .cruise-card-img,
  .cruise-lines-section .cruise-grid img,
  .cruise-lines-section .cruise-card img,
  .cruise-lines-section .cruise-card-img {
    width: 92% !important;
    max-width: 260px !important;
    max-height: 110px !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* ONLINE CHECK-IN: phone layout like Cruise Lines page */
@media (max-width: 600px) {
  .checkin-directory-section .checkin-grid,
  .checkin-directory-section .luxury-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }

  .checkin-directory-section .checkin-card {
    width: auto !important;
    max-width: none !important;
    min-height: 145px !important;
    padding: 22px 12px !important;
    margin: 0 !important;
  }

  .checkin-directory-section .checkin-card img {
    width: 92% !important;
    max-width: 220px !important;
    max-height: 95px !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto 10px !important;
  }

  .checkin-directory-section .checkin-card span {
    font-size: 0.78rem !important;
    letter-spacing: 0.04em !important;
  }
}

/* =========================
   TABLET HERO FIX
   Prevents inner hero text from being cut off on iPad/tablet widths
========================= */
@media (min-width: 769px) and (max-width: 1100px) {
  .small-hero {
    min-height: 58vh;
    padding: 110px 6% 70px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .small-hero .hero-content {
    max-width: 680px;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    align-items: center;
  }

  .small-hero h1 {
    font-size: 2.55rem;
  }

  .small-hero p {
    max-width: 620px;
    font-size: 1.08rem;
  }
}

/* INDIVIDUAL CRUISE LINE PAGES: simplify bottom CTA 
PATRICK if you want to bring back a picture at the bottom of the CTA on 
the cruise line pages, then this is the code that did that.*/
/* CRUISE LINE PAGES ONLY: bottom CTA fix */
.section > .cta-section {
  display: block;
  max-width: 900px;
  margin: 60px auto 0;
  text-align: center;
}

.section > .cta-section .cta-content {
  max-width: 760px;
  margin: 0 auto;
}

.section > .cta-section .cta-image {
  display: none;
}

/* PATRICK - to HERE*/
