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

:root {
  --deep-navy: #102a43;
  --navy: #163b5c;
  --aqua: #18b6c9;
  --aqua-dark: #0f92a3;
  --sand: #f6f0e6;
  --sand-light: #fbf7ef;
  --white: #ffffff;
  --text: #263849;
  --muted: #6f7f8f;
  --gold-accent: #d8b75f;
  --border: #e7edf2;
  --shadow: 0 18px 45px rgba(16, 42, 67, 0.11);
  --soft-shadow: 0 10px 28px rgba(16, 42, 67, 0.08);
  --header-height: 78px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
}

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

img {
  max-width: 100%;
}


.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-accent);
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 22px;
}

.logo-wrap img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-wrap span {
  position: relative;
}

.logo-wrap span::after {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--gold-accent);
  border-radius: 999px;
  position: absolute;
  left: 0;
  bottom: -6px;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 13px;
  border-radius: 999px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

nav a:hover {
  background: rgba(216, 183, 95, 0.12);
  color: var(--gold-accent);
  transform: translateY(-1px) scale(1.03);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--aqua);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--aqua);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
  box-shadow: 0 10px 24px rgba(24, 182, 201, 0.24);
}

.btn:hover {
  background: var(--aqua-dark);
  border-color: var(--aqua-dark);
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 14px 30px rgba(24, 182, 201, 0.3);
}

.btn-outline {
  background: var(--white);
  color: var(--deep-navy);
  border-color: var(--border);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--deep-navy);
  color: var(--white);
  border-color: var(--deep-navy);
}

section {
  padding: 84px 8%;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--deep-navy);
  letter-spacing: -0.8px;
}

.section-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  background: var(--gold-accent);
  border-radius: 999px;
  margin: 18px auto 0;
}

.section-subtitle {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
  color: var(--muted);
  font-size: 17px;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    linear-gradient(
      90deg,
      rgba(16, 42, 67, 0.74),
      rgba(16, 42, 67, 0.35),
      rgba(24, 182, 201, 0.08)
    ),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: var(--white);
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--white);
  letter-spacing: -1.6px;
}

.hero p {
  font-size: 20px;
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.trips {
  background:
    radial-gradient(circle at top left, rgba(24, 182, 201, 0.1), transparent 34%),
    var(--sand-light);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

.card:hover {
  transform: translateY(-9px) scale(1.01);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover img {
  transform: scale(1.045);
}

.card-content {
  padding: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(24, 182, 201, 0.1);
  color: var(--aqua-dark);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold-accent);
  border-radius: 50%;
  margin-right: 8px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.card:hover .badge::before {
  transform: scale(1.2) rotate(8deg);
}

.card h3 {
  font-size: 25px;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--deep-navy);
  letter-spacing: -0.4px;
}

.logo-wrap img,
.logo-wrap span {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.logo-wrap:hover img {
  transform: scale(1.04) rotate(-1.5deg);
}

.logo-wrap:hover span {
  transform: translateY(-1px);
}

.trip-hero {
  background:
    radial-gradient(circle at top right, rgba(24, 182, 201, 0.12), transparent 32%),
    var(--sand-light);
  padding-top: 62px;
}

.trip-box {
  max-width: 1120px;
  margin: auto;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.trip-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.trip-intro {
  padding: 46px;
  background:
    linear-gradient(180deg, rgba(24, 182, 201, 0.06), transparent),
    var(--white);
}

.trip-intro h1 {
  font-size: clamp(34px, 4vw, 50px);
  color: var(--deep-navy);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.9px;
}

.trip-intro p {
  color: var(--muted);
  font-size: 17px;
  max-width: 820px;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.new-price {
  color: var(--deep-navy);
  font-size: 28px;
  font-weight: 800;
}

.old-price {
  color: #9aa6b2;
  font-size: 19px;
  text-decoration: line-through;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  padding: 40px;
  background: var(--sand-light);
}

.detail-card {
  background: var(--white);
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(16, 42, 67, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.09);
}

.detail-card h2 {
  color: var(--deep-navy);
  font-size: 22px;
  margin-bottom: 15px;
  letter-spacing: -0.3px;
}

.detail-card ul {
  padding-left: 20px;
}

.detail-card li {
  margin-bottom: 9px;
  color: var(--text);
}

.note {
  background: #fff8e6;
  color: #70531b;
  padding: 14px 18px;
  border-radius: 16px;
  margin-top: 16px;
  font-weight: 600;
  border: 1px solid rgba(216, 183, 95, 0.35);
}

.booking {
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(22, 59, 92, 0.92)),
    url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.booking .section-title {
  color: var(--white);
}

.booking p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0 auto 26px;
  max-width: 680px;
}

.whatsapp {
  background: var(--deep-navy);
  border-color: var(--gold-accent);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.28);
}

.whatsapp:hover {
  background: var(--navy);
  border-color: var(--gold-accent);
  color: var(--white);
}

/* ─── Guest Reviews Section ─── */
.guest-reviews-section {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(216, 183, 95, 0.06), transparent 44%),
    radial-gradient(ellipse at 100% 100%, rgba(24, 182, 201, 0.05), transparent 44%),
    linear-gradient(180deg, var(--sand-light) 0%, var(--white) 100%);
  padding: 96px 8%;
  text-align: center;
  border-top: 1px solid rgba(216, 183, 95, 0.18);
  border-bottom: 1px solid rgba(216, 183, 95, 0.18);
}

.guest-reviews-section .section-title {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1px;
}

.guest-reviews-section .section-subtitle {
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 64px;
  font-weight: 400;
}

.guest-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto 64px;
}

.guest-review-card {
  background: var(--white);
  border: 1px solid rgba(216, 183, 95, 0.2);
  border-top: 3px solid var(--gold-accent);
  border-radius: 28px;
  padding: 36px 30px 28px;
  box-shadow:
    0 4px 6px rgba(16, 42, 67, 0.04),
    0 12px 28px rgba(16, 42, 67, 0.09),
    0 24px 48px rgba(16, 42, 67, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.guest-review-card::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 22px;
  font-size: 100px;
  line-height: 1;
  color: rgba(216, 183, 95, 0.12);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.guest-review-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 4px 6px rgba(16, 42, 67, 0.05),
    0 16px 36px rgba(16, 42, 67, 0.13),
    0 32px 56px rgba(16, 42, 67, 0.07),
    0 0 0 1px rgba(216, 183, 95, 0.18);
}

.guest-review-stars {
  color: var(--gold-accent);
  font-size: 22px;
  letter-spacing: 3px;
  line-height: 1;
}

.guest-review-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.guest-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.guest-review-name {
  color: var(--deep-navy);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.guest-review-source {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(16, 42, 67, 0.05);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.guest-reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.guest-reviews-cta .btn-outline {
  background: var(--aqua);
  color: #ffffff;
  border-color: var(--aqua);
  box-shadow: 0 8px 20px rgba(24, 182, 201, 0.24);
}

.guest-reviews-cta .btn-outline:hover {
  background: #14a3b4;
  border-color: #14a3b4;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(24, 182, 201, 0.32);
}

.guest-review-btn-secondary {
  background: transparent;
  color: var(--muted);
  border-color: rgba(16, 42, 67, 0.18);
  font-size: 13.5px;
  padding: 10px 22px;
  box-shadow: none;
  border-radius: 999px;
}

.guest-review-btn-secondary:hover {
  background: var(--white);
  color: var(--deep-navy);
  border-color: var(--deep-navy);
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.btn-review-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-review-platform svg {
  flex-shrink: 0;
  fill: currentColor;
}

@media (max-width: 850px) {
  .guest-reviews-section {
    padding: 64px 5%;
  }

  .guest-reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 48px;
  }
}

/* ─── Reviews Page ─── */
.reviews-hero {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(24, 182, 201, 0.05), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(216, 183, 95, 0.06), transparent 40%),
    var(--sand-light);
  padding: 80px 8% 72px;
  text-align: center;
  border-bottom: 1px solid rgba(216, 183, 95, 0.16);
}

.reviews-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.reviews-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--deep-navy);
}

.reviews-hero-line {
  width: 54px;
  height: 3px;
  background: var(--gold-accent);
  border-radius: 999px;
  margin: 0 auto 24px;
}

.reviews-hero p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

.reviews-masonry-section {
  background:
    radial-gradient(circle at 10% 30%, rgba(216, 183, 95, 0.05), transparent 40%),
    var(--sand-light);
  padding: 72px 8% 80px;
}

.reviews-masonry {
  columns: 3;
  column-gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  break-inside: avoid;
  margin-bottom: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold-accent);
  border-radius: 24px;
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(16, 42, 67, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 32px rgba(16, 42, 67, 0.12),
    0 0 0 1px rgba(216, 183, 95, 0.22);
}

.review-card-quote {
  font-size: 72px;
  line-height: 0.8;
  color: rgba(216, 183, 95, 0.18);
  font-family: Georgia, serif;
  position: absolute;
  top: 14px;
  left: 20px;
  pointer-events: none;
  user-select: none;
}

.review-card-stars {
  color: var(--gold-accent);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 14px;
  position: relative;
}

.review-card-text {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.review-card-name {
  color: var(--deep-navy);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.03em;
}

.review-card-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(16, 42, 67, 0.06);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

/* Reviews — Coming Soon */
.reviews-coming-soon-wrapper {
  position: relative;
}

.reviews-coming-soon-wrapper .reviews-masonry {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.reviews-coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.reviews-coming-soon-text {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--deep-navy);
  letter-spacing: 0.08em;
  text-align: center;
  opacity: 0.85;
}

.reviews-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--deep-navy);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 14.5px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  box-shadow: var(--soft-shadow);
}

.reviews-cta-btn:hover {
  background: var(--deep-navy);
  border-color: var(--deep-navy);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.18);
}

.reviews-cta-btn svg {
  flex-shrink: 0;
  fill: currentColor;
}

@media (max-width: 850px) {
  .reviews-masonry {
    columns: 2;
  }

  .reviews-hero {
    padding: 64px 6% 56px;
  }

  .reviews-masonry-section {
    padding: 56px 5% 64px;
  }
}

@media (max-width: 560px) {
  .reviews-masonry {
    columns: 1;
  }
}

footer {
  text-align: center;
  padding: 26px 8%;
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.84);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.54);
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.footer-social-link:hover {
  color: var(--gold-accent);
}

footer p::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  background: var(--gold-accent);
  border-radius: 999px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--deep-navy);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  z-index: 60;
  border: 2px solid rgba(216, 183, 95, 0.5);
  box-shadow: 0 14px 30px rgba(16, 42, 67, 0.32);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

.floating-whatsapp:hover {
  background: var(--navy);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 38px rgba(16, 42, 67, 0.42);
}

/* ===== MOBILE OVERFLOW FIX ===== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  max-width: 100%;
}

img,
video {
  max-width: 100%;
  height: auto;
}

section,
header,
footer,
main {
  max-width: 100%;
  overflow-x: hidden;
}

.cards,
.details-grid {
  width: 100%;
}

.card,
.trip-box,
.detail-card {
  max-width: 100%;
}

.floating-whatsapp {
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
}

/* Trust Section */
.trust-section {
  background:
    radial-gradient(circle at 12% 50%, rgba(24, 182, 201, 0.06), transparent 38%),
    radial-gradient(circle at 88% 50%, rgba(216, 183, 95, 0.07), transparent 38%),
    var(--sand-light);
  padding: 52px 8%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(216, 183, 95, 0.38);
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top-color: var(--gold-accent);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(216, 183, 95, 0.14), rgba(24, 182, 201, 0.08));
  border: 1px solid rgba(216, 183, 95, 0.22);
  color: var(--deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.trust-card:hover .trust-icon {
  background: linear-gradient(135deg, rgba(216, 183, 95, 0.22), rgba(24, 182, 201, 0.12));
  border-color: rgba(216, 183, 95, 0.4);
}

.trust-card h3 {
  color: var(--deep-navy);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.trust-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Enhanced Homepage Trip Cards */
.trip-card {
  display: flex;
  flex-direction: column;
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
}

.trip-card .card-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trip-description {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.trip-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 4px 0;
}

.trip-info-row span {
  background: var(--sand-light);
  color: var(--deep-navy);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 8px;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
}

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

.card-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.card-price strong {
  color: var(--deep-navy);
  font-size: 23px;
  line-height: 1.2;
}

.trip-card .btn {
  margin-top: 4px;
  width: 100%;
}

/* Small clickable card and discount updates */
.clickable-card {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.clickable-card:focus-visible {
  outline: 3px solid rgba(24, 182, 201, 0.45);
  outline-offset: 4px;
}

.clickable-card:hover {
  transform: translateY(-10px) scale(1.012);
  box-shadow: 0 22px 52px rgba(16, 42, 67, 0.14);
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: rgba(216, 183, 95, 0.14);
  color: #7a5a14;
  border: 1px solid rgba(216, 183, 95, 0.38);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.card-price > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Homepage card old price display */
.price-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.old-card-price {
  color: #9aa6b2;
  font-size: 17px;
  font-weight: 600;
  text-decoration: line-through;
}

/* Dolphin Quick Booking Section */
.quick-booking {
  margin: 28px 0 24px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(24, 182, 201, 0.08), rgba(255, 255, 255, 0.96));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.quick-booking h2 {
  color: var(--deep-navy);
  font-size: 24px;
  margin-bottom: 18px;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.booking-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.booking-step span {
  width: 32px;
  height: 32px;
  background: var(--aqua);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.booking-step p {
  color: var(--deep-navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.trust-badges span {
  background: var(--sand-light);
  color: var(--deep-navy);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

.quick-booking .btn {
  width: 100%;
}

/* Booking section placement after trip details */
.booking-after-details {
  padding: 0 40px 40px;
  background: var(--sand-light);
}

.booking-after-details .btn-outline {
  margin-top: 4px;
}

/* Review Page */
.review-page {
  min-height: calc(100vh - 180px);
  background:
    radial-gradient(circle at top right, rgba(24, 182, 201, 0.12), transparent 34%),
    var(--sand-light);
  padding: 74px 8%;
}

.review-box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 42px;
}

.review-box h1 {
  color: var(--deep-navy);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.review-box > p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}

.review-form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--deep-navy);
  font-weight: 700;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(24, 182, 201, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.review-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.review-actions .btn {
  cursor: pointer;
}

/* Review Thank You Message */
.review-thank-you {
  display: none;
  margin-top: 22px;
  padding: 18px 20px;
  background: rgba(24, 182, 201, 0.1);
  color: var(--deep-navy);
  border: 1px solid rgba(24, 182, 201, 0.24);
  border-radius: 18px;
  font-weight: 700;
  text-align: center;
}

.review-thank-you.show {
  display: block;
}

/* Review Invitation Section */
.review-invite {
  background: var(--white);
  padding: 54px 8%;
}

.review-invite-box {
  max-width: 900px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(24, 182, 201, 0.08), rgba(255, 255, 255, 0.96)),
    var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--soft-shadow);
  padding: 34px;
  text-align: center;
}

.review-invite-box h2 {
  color: var(--deep-navy);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.6px;
}

.review-invite-box p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 22px;
  font-size: 16px;
}

.review-invite-box p:last-child {
  margin-bottom: 0;
}

/* Trip Booking Form */
.trip-booking-form {
  margin-top: 20px;
}

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

.form-group-full {
  grid-column: 1 / -1;
}

.trip-booking-form .form-group {
  display: grid;
  gap: 8px;
}

.trip-booking-form label {
  color: var(--deep-navy);
  font-weight: 700;
  font-size: 13.5px;
}

.trip-booking-form input,
.trip-booking-form select,
.trip-booking-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.trip-booking-form input:focus,
.trip-booking-form select:focus,
.trip-booking-form textarea:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(24, 182, 201, 0.12);
}

.trip-booking-form textarea {
  resize: vertical;
}

.trip-booking-form .btn {
  width: 100%;
  cursor: pointer;
}

/* Booking Modal */
.modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.32s ease;
}

.booking-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 67, 0.72);
  backdrop-filter: blur(8px);
}

.booking-modal-content {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--white);
  border: 1px solid rgba(216, 183, 95, 0.28);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(16, 42, 67, 0.34);
  padding: 30px;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-modal.show .booking-modal-content {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--sand-light);
  color: var(--deep-navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s ease;
}

.booking-modal-close:hover {
  background: rgba(24, 182, 201, 0.12);
  transform: scale(1.06) rotate(3deg);
}

.booking-modal-header {
  padding-right: 46px;
  margin-bottom: 22px;
}

.booking-modal-header h2 {
  color: var(--deep-navy);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.6px;
}

.booking-modal-header p {
  color: var(--muted);
  font-size: 15.5px;
}

.booking-modal .trip-booking-form {
  margin-top: 0;
}

/* Booking Modal Fix */
.open-booking-modal {
  cursor: pointer;
  width: 100%;
}

.modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.32s ease;
}

.booking-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 67, 0.72);
  backdrop-filter: blur(8px);
}

.booking-modal-content {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--white);
  border: 1px solid rgba(216, 183, 95, 0.28);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(16, 42, 67, 0.34);
  padding: 30px;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-modal.show .booking-modal-content {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--sand-light);
  color: var(--deep-navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.booking-modal-header {
  padding-right: 46px;
  margin-bottom: 22px;
}

.booking-modal-header h2 {
  color: var(--deep-navy);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.6px;
}

.booking-modal-header p {
  color: var(--muted);
  font-size: 15.5px;
}

.booking-modal .trip-booking-form {
  margin-top: 0;
}

/* Passenger Limit Validation */
.passenger-limit-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin-top: -4px;
}

.passenger-limit-error {
  display: none;
  background: #fff3f0;
  color: #9b2f1f;
  border: 1px solid rgba(155, 47, 31, 0.22);
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.passenger-limit-error span {
  color: #7a5a14;
  font-weight: 600;
}

.passenger-limit-error.show {
  display: block;
}

.trip-booking-form input.input-error {
  border-color: #d94a38;
  box-shadow: 0 0 0 4px rgba(217, 74, 56, 0.12);
}

/* Multiple Boats Note */
.passenger-limit-error {
  background: #fff8e6;
  color: #70531b;
  border-color: rgba(216, 183, 95, 0.35);
}

.passenger-limit-error span {
  color: var(--deep-navy);
}

.trip-booking-form input.input-warning {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 4px rgba(216, 183, 95, 0.12);
}

/* Pickup Area Transfer Note */
.transfer-fee-note {
  display: none;
  margin-top: 8px;
  background: #fff8e6;
  color: #70531b;
  border: 1px solid rgba(216, 183, 95, 0.35);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.transfer-fee-note.show {
  display: block;
}

/* Booking Summary Preview */
.trip-booking-form.hide {
  display: none;
}

.booking-summary {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--soft-shadow);
}

.booking-summary.show {
  display: block;
}

.booking-summary h3 {
  color: var(--deep-navy);
  font-size: 24px;
  margin-bottom: 16px;
}

.booking-summary-list {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.booking-summary-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.booking-summary-row strong {
  color: var(--deep-navy);
  font-size: 14px;
  text-align: right;
}

.booking-summary-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-summary-actions .btn {
  flex: 1;
  min-width: 220px;
  cursor: pointer;
}

/* Trip Gallery Section */
.trip-gallery-section {
  padding: 42px 40px;
  background: var(--sand-light);
}

.gallery-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.gallery-heading h2 {
  color: var(--deep-navy);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.6px;
}

.gallery-heading p {
  color: var(--muted);
  font-size: 16px;
}

.trip-gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  border: 1px solid var(--border);
  background: var(--white);
}

.gallery-featured {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.gallery-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 42, 67, 0.18), rgba(16, 42, 67, 0.42));
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  text-align: center;
}

.play-overlay span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  font-size: 22px;
  box-shadow: 0 16px 34px rgba(16, 42, 67, 0.22);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease;
}

.gallery-video-card:hover .play-overlay span {
  transform: scale(1.06);
  background: rgba(24, 182, 201, 0.82);
}

.play-overlay p {
  font-weight: 700;
  font-size: 14px;
}

/* Booking Note */
.booking-note {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  background: rgba(24, 182, 201, 0.08);
  color: #385466;
  border: 1px solid rgba(24, 182, 201, 0.18);
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}

.booking-note-icon {
  font-size: 14px;
  line-height: 1;
  flex: 0 0 auto;
}

/* Trip Trust Section */
.trip-trust-section {
  background: var(--sand-light);
  padding: 42px 40px 18px;
}

.trip-trust-heading {
  text-align: center;
  margin-bottom: 24px;
}

.trip-trust-heading h2 {
  color: var(--deep-navy);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.6px;
}

.trip-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.trip-trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(16, 42, 67, 0.06);
}

.trip-trust-card span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(24, 182, 201, 0.1);
  color: var(--aqua-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.trip-trust-card p {
  color: var(--deep-navy);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
}

/* Simplified Booking Area */
.booking-short-text {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* CTA Subtext */
.cta-subtext{
  font-size:13px;
  color:var(--muted);
  margin-top:8px;
  font-weight:500;
}

/* Primary CTA (Booking Button) */
.btn.open-booking-modal {
  background: var(--aqua);
  color: #ffffff;
  border: none;
}

.btn.open-booking-modal:hover {
  background: var(--aqua-dark);
}

/* Mobile Sticky Booking Button */
.mobile-sticky-booking {
  display: none;
}

/* Keep booking CTAs aqua, not WhatsApp green */
.trip-booking-form .btn,
.booking-summary-actions .btn.confirm-whatsapp-send {
  background: var(--aqua);
  color: var(--white);
  border-color: var(--aqua);
  box-shadow: 0 10px 24px rgba(24, 182, 201, 0.24);
}

.trip-booking-form .btn:hover,
.booking-summary-actions .btn.confirm-whatsapp-send:hover {
  background: var(--aqua-dark);
  border-color: var(--aqua-dark);
  box-shadow: 0 14px 30px rgba(24, 182, 201, 0.3);
}

/* Final booking CTA color fix: only floating WhatsApp stays green */
.btn.open-booking-modal,
.open-booking-modal.btn {
  background: var(--aqua) !important;
  color: var(--white) !important;
  border-color: var(--aqua) !important;
  box-shadow: 0 10px 24px rgba(24, 182, 201, 0.24) !important;
}

.btn.open-booking-modal:hover,
.open-booking-modal.btn:hover {
  background: var(--aqua-dark) !important;
  border-color: var(--aqua-dark) !important;
  box-shadow: 0 14px 30px rgba(24, 182, 201, 0.3) !important;
}

/* Subtle Floating WhatsApp Button */
.floating-whatsapp {
  width: 48px !important;
  height: 48px !important;
  right: 20px !important;
  bottom: 24px !important;
  font-size: 24px !important;
  box-shadow: 0 10px 22px rgba(16, 42, 67, 0.22) !important;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 14px 28px rgba(16, 42, 67, 0.3) !important;
}

/* Simple Cinematic Homepage Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0 8%;
  background:
    linear-gradient(
      90deg,
      rgba(16, 42, 67, 0.88),
      rgba(16, 42, 67, 0.68),
      rgba(16, 42, 67, 0.28)
    ),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-content {
  max-width: 780px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.06;
  margin-bottom: 22px;
  color: var(--white);
  letter-spacing: -1.8px;
}

.hero p {
  max-width: 650px;
  font-size: clamp(17px, 2vw, 21px);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(216, 183, 95, 0.42);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold-accent);
  border-radius: 50%;
  margin-right: 8px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: var(--white);
  color: var(--deep-navy);
  border-color: var(--white);
}

/* Simple Premium Header Navigation */

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  flex: 0 0 auto;
}

.logo-wrap img {
  height: 76px !important;
  width: auto !important;
  max-height: none !important;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.logo-wrap span {
  display: none !important;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s ease,
    color 0.3s ease;
}

.site-nav a:hover {
  background: rgba(216, 183, 95, 0.12);
  color: var(--gold-accent);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  background: rgba(216, 183, 95, 0.14);
  color: var(--gold-accent);
}

/* ─── Trips Dropdown ─── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-family: inherit;
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-dropdown-toggle:hover {
  background: rgba(216, 183, 95, 0.12);
  color: var(--gold-accent);
}

.nav-dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  white-space: nowrap;
  background: rgba(16, 42, 67, 0.98);
  border: 1px solid rgba(216, 183, 95, 0.22);
  border-radius: 16px;
  padding: 8px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 200;
  box-shadow: 0 16px 40px rgba(16, 42, 67, 0.28);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  transform: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(216, 183, 95, 0.12);
  color: var(--gold-accent);
  transform: none;
}

@media (min-width: 851px) {
  .nav-dropdown-menu {
    width: max-content;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown-toggle.locked + .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown-toggle.locked .nav-dropdown-arrow {
    transform: rotate(180deg);
  }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 183, 95, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 auto;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--gold-accent);
  border-radius: 999px;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Header Compact Fix */

/* FINAL HEADER + MOBILE NAV QA FIX */
header {
  height: auto !important;
  min-height: var(--header-height) !important;
  padding: 6px 8% !important;
  background: var(--deep-navy) !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 100 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 22px !important;
  overflow: visible !important;
  border-bottom: 1px solid rgba(216, 183, 95, 0.22) !important;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.2) !important;
  will-change: transform;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease !important;
}

/* Transparent header — homepage only */
body.home-page header {
  position: fixed !important;
  background: transparent !important;
  box-shadow: none !important;
  width: 100% !important;
  top: 0 !important;
  left: 0 !important;
}

/* Scrolled state — homepage only */
body.home-page header.header-scrolled {
  background: var(--deep-navy) !important;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.22) !important;
}

/* Scrolled state — all pages */
header.header-scrolled {
  background: var(--deep-navy) !important;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.22) !important;
}

/* Layout compensation — fixed header on non-hero pages */
body:not(.home-page) main {
  padding-top: var(--header-height);
}

.logo-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 0 0 auto !important;
  line-height: 1 !important;
  gap: 0 !important;
  min-width: 0 !important;
}

.logo-wrap img {
  height: 66px !important;
  width: auto !important;
  max-width: 170px !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
}

.logo-wrap span,
.logo-wrap span::after {
  display: none !important;
}

.site-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 6px !important;
  width: auto !important;
  max-width: none !important;
  margin-left: auto !important;
  overflow: visible !important;
  padding: 0 !important;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 600 !important;
  font-size: 14.5px !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease, color 0.3s ease !important;
}

.site-nav a:hover {
  background: rgba(216, 183, 95, 0.12) !important;
  color: var(--gold-accent) !important;
  transform: translateY(-1px) !important;
}

.site-nav a[aria-current="page"] {
  background: rgba(216, 183, 95, 0.14) !important;
  color: var(--gold-accent) !important;
}

.menu-toggle {
  display: none !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(216, 183, 95, 0.28) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  cursor: pointer !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 5px !important;
  flex: 0 0 42px !important;
  margin-left: auto !important;
}

.menu-toggle span {
  width: 20px !important;
  height: 2px !important;
  background: var(--gold-accent) !important;
  border-radius: 999px !important;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease !important;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0 !important;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) !important;
}

/* Top Media Gallery Viewer */
.media-gallery {
  background: var(--white);
}

.media-main {
  position: relative;
  background: var(--deep-navy);
  overflow: hidden;
  cursor: zoom-in;
}

.media-frame {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--deep-navy);
}

.media-display {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.media-main:hover .media-display {
  transform: scale(1.018);
}

.media-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(16, 42, 67, 0.42);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.media-arrow:hover {
  background: rgba(24, 182, 201, 0.74);
  transform: translateY(-50%) scale(1.05);
}

.media-arrow-prev {
  left: 18px;
}

.media-arrow-next {
  right: 18px;
}

.media-play-overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(rgba(16, 42, 67, 0.14), rgba(16, 42, 67, 0.42));
  color: var(--white);
  pointer-events: none;
}

.media-play-overlay.show {
  display: flex;
}

.media-play-overlay span {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  font-size: 24px;
  backdrop-filter: blur(10px);
}

.media-play-overlay p {
  font-size: 14px;
  font-weight: 700;
}

.media-thumbnails {
  display: flex;
  gap: 12px;
  padding: 16px;
  overflow-x: auto;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.media-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.media-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(24, 182, 201, 0.36);
  border-radius: 999px;
}

.media-thumb {
  position: relative;
  flex: 0 0 108px;
  height: 76px;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  background: var(--sand-light);
  cursor: pointer;
  scroll-snap-align: start;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-thumb:hover {
  transform: translateY(-2px);
}

.media-thumb:focus {
  outline: none;
}

.media-thumb:focus-visible {
  outline: 2px solid var(--gold-accent);
}

.media-thumb.active {
  border-color: var(--aqua);
  box-shadow: 0 8px 18px rgba(24, 182, 201, 0.2);
}

.media-thumb-video span {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 67, 0.34);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.media-lightbox.show {
  display: flex;
}

.media-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 30, 0.9);
  backdrop-filter: blur(8px);
}

.media-lightbox-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  height: min(78vh, 780px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(16, 42, 67, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.media-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
  cursor: zoom-in;
}

.media-lightbox-close,
.media-lightbox-zoom,
.media-lightbox-arrow {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(16, 42, 67, 0.58);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.media-lightbox-close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 26px;
}

.media-lightbox-zoom {
  top: 18px;
  right: 72px;
  height: 42px;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 700;
}

.media-lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 34px;
}

.media-lightbox-arrow:hover {
  background: rgba(24, 182, 201, 0.72);
}

.media-lightbox-prev {
  left: 18px;
}

.media-lightbox-next {
  right: 18px;
}

.media-lightbox-video-badge {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.media-lightbox-video-badge.show {
  display: inline-flex;
}

/* Fullscreen Gallery Zoom Improvements */
.media-lightbox-content {
  touch-action: none;
}

.media-lightbox img {
  transform-origin: center center;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
}

.media-lightbox img.zoomed {
  cursor: grab;
}

.media-lightbox img.zoomed.panning {
  cursor: grabbing;
}

/* Gallery QA Fixes */
.media-gallery,
.media-main,
.media-frame,
.media-thumbnails {
  max-width: 100%;
  overflow-x: hidden;
}

.media-thumbnails {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.media-main {
  touch-action: pan-y;
}

.media-lightbox.show {
  display: flex;
}

.media-lightbox-content {
  touch-action: none;
  overflow: hidden;
}

.media-lightbox img {
  transition: transform 0.25s ease;
  transform-origin: center center;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
}

.media-lightbox img.zoomed {
  cursor: grab;
}

.media-lightbox img.zoomed.panning {
  cursor: grabbing;
}

.media-lightbox-close,
.media-lightbox-zoom,
.media-lightbox-arrow {
  min-width: 42px;
  min-height: 42px;
}

/* Gallery Arrow Symmetry Fix */
.media-arrow,
.media-lightbox-arrow {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  padding: 0 !important;
  aspect-ratio: 1 / 1;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  text-align: center;
  background: rgba(16, 42, 67, 0.48);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.22);
  font-size: 30px !important;
  font-family: Arial, sans-serif;
}

.media-arrow,
.media-lightbox-arrow {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.media-arrow:hover,
.media-lightbox-arrow:hover {
  background: rgba(24, 182, 201, 0.72);
  transform: translateY(-50%) scale(1.06) !important;
}

.media-arrow-prev,
.media-lightbox-prev {
  left: 22px !important;
  right: auto !important;
}

.media-arrow-next,
.media-lightbox-next {
  right: 22px !important;
  left: auto !important;
}

/* Premium Hero Visual Enhancement */
.hero {
  background:
    linear-gradient(
      90deg,
      rgba(16, 42, 67, 0.9) 0%,
      rgba(16, 42, 67, 0.72) 42%,
      rgba(16, 42, 67, 0.32) 74%,
      rgba(16, 42, 67, 0.18) 100%
    ),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.hero-content {
  animation: heroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.9px;
  margin-bottom: 28px;
  text-shadow: 0 12px 34px rgba(16, 42, 67, 0.34);
}

.hero p {
  font-size: 18.5px;
  line-height: 1.75;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 8px 24px rgba(16, 42, 67, 0.28);
}

.hero .btn {
  box-shadow:
    0 14px 34px rgba(24, 182, 201, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.hero .btn:hover {
  box-shadow:
    0 18px 42px rgba(24, 182, 201, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.18);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.96);
  color: var(--deep-navy);
  border-color: rgba(255, 255, 255, 0.96);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header Always Visible */
header {
  transform: none !important;
}

/* ===== Premium Homepage Video Hero Refinement ===== */
.hero-video-section {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0 8%;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(8, 28, 48, 0.7) 0%, rgba(16, 42, 67, 0.46) 44%, rgba(24, 182, 201, 0.08) 100%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
  contain: layout paint;
}

.hero-video-wrap,
.hero-bg-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-wrap {
  z-index: -3;
  overflow: hidden;
  background:
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat;
}

.hero-bg-video {
  display: block;
  object-fit: cover;
  object-position: center center;
  min-width: 100%;
  min-height: 100%;
  transform: scale(1.01);
  filter: saturate(1.12) contrast(1.04) brightness(0.94);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(4, 17, 30, 0.74) 0%, rgba(16, 42, 67, 0.46) 44%, rgba(24, 182, 201, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 17, 30, 0.22) 0%, transparent 40%);
  pointer-events: none;
}

.hero-video-section::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 183, 95, 0.62), rgba(24, 182, 201, 0.26), transparent 76%);
  z-index: -1;
}

.hero-video-section .hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 104px 0 92px;
}

.hero-video-section h1,
.hero-video-section p,
.hero-kicker {
  text-wrap: balance;
}

.hero-video-section h1 {
  color: #f5ede0;
  max-width: 640px;
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.03;
  letter-spacing: -1.35px;
  margin-bottom: 12px;
}

.hero-kicker {
  display: block;
  width: fit-content;
  margin-bottom: 18px;
  color: #f5ede0;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-accent), rgba(24, 182, 201, 0.82));
}

.hero-video-section p {
  max-width: 610px;
  color: rgba(245, 237, 224, 0.88);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.72;
  margin-bottom: 30px;
}

.hero-video-section .hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-video-section .hero-actions .btn {
  margin-bottom: 0;
}

.hero-video-section .btn:not(.btn-hero-secondary) {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(24, 182, 201, 0.3);
}

.hero-video-section .btn:not(.btn-hero-secondary):hover {
  background: var(--aqua-dark);
  border-color: var(--aqua-dark);
  color: var(--white);
}

.hero-video-section .btn-hero-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 28px rgba(0, 11, 24, 0.16);
  backdrop-filter: blur(10px);
}

.hero-video-section .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--deep-navy);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video {
    display: none;
  }
}

/* Hero brand gold accent */
.hero-video-section .brand-gold {
  color: var(--gold-accent);
  font-weight: 800;
}

/* Homepage trip card AZURIX brand gold */
.trip-card h3 .card-brand-gold {
  color: var(--gold-accent);
}

/* Premium Trip Details Accordion */
.trip-details-accordion {
  display: grid;
  gap: 14px;
  padding: 40px;
  background:
    radial-gradient(circle at top left, rgba(24, 182, 201, 0.08), transparent 34%),
    var(--sand-light);
}

.trip-accordion-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 239, 0.68)),
    var(--white);
  border: 1px solid rgba(231, 237, 242, 0.95);
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(16, 42, 67, 0.07);
  overflow: hidden;
  transition:
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    transform 0.32s ease;
}

.trip-accordion-item[open] {
  border-color: rgba(216, 183, 95, 0.34);
  box-shadow: 0 16px 36px rgba(16, 42, 67, 0.1);
}

.trip-accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(16, 42, 67, 0.1);
}

.trip-accordion-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  padding: 21px 24px;
  color: var(--deep-navy);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.25px;
  min-height: 68px;
}

.trip-accordion-item summary::-webkit-details-marker {
  display: none;
}

.trip-accordion-item summary::before {
  content: "";
  width: 7px;
  min-width: 7px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-accent), rgba(216, 183, 95, 0.36));
}

.trip-accordion-item summary span:first-child {
  flex: 1;
}

.trip-accordion-icon {
  position: relative;
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(24, 182, 201, 0.1);
  border: 1px solid rgba(24, 182, 201, 0.2);
}

.trip-accordion-icon::before,
.trip-accordion-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--aqua-dark);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.trip-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.trip-accordion-item[open] .trip-accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.trip-accordion-content {
  display: grid;
  grid-template-rows: 1fr;
  padding: 0 24px 24px 55px;
  color: var(--text);
  animation: tripAccordionReveal 0.32s ease;
}

.trip-accordion-content ul {
  padding-left: 20px;
}

.trip-accordion-content li {
  margin-bottom: 9px;
  color: var(--text);
}

.trip-accordion-content .note {
  margin-top: 16px;
}

.trip-accordion-item summary:focus-visible {
  outline: 3px solid rgba(24, 182, 201, 0.28);
  outline-offset: -3px;
  border-radius: 22px;
}

@keyframes tripAccordionReveal {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trip-accordion-item,
  .trip-accordion-item summary,
  .trip-accordion-icon::before,
  .trip-accordion-icon::after,
  .trip-accordion-content {
    animation: none;
    transition: none;
  }
}

/* Header navigation AZURIX brand gold */
.site-nav .nav-brand-gold {
  color: var(--gold-accent);
  font-weight: 800;
}

/* Mobile booking modal safe top spacing */

/* Contact Page */
.brand-gold {
  color: var(--gold-accent);
  font-weight: 800;
}

.contact-hero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(16, 42, 67, 0.86), rgba(22, 59, 92, 0.58), rgba(24, 182, 201, 0.16)),
    url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.contact-hero-box {
  max-width: 820px;
}

.contact-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -1.2px;
}

.contact-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 28px;
}

.contact-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-section {
  background:
    radial-gradient(circle at top right, rgba(24, 182, 201, 0.1), transparent 34%),
    var(--sand-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 239, 0.62)),
    var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(216, 183, 95, 0.32);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(24, 182, 201, 0.1);
  border: 1px solid rgba(24, 182, 201, 0.2);
  color: var(--aqua-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-card h3 {
  color: var(--deep-navy);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.35px;
}

.contact-card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.contact-card .btn {
  width: 100%;
  margin-top: auto;
}

.contact-trust-section {
  background: var(--white);
  padding: 56px 8%;
}

.contact-trust-box {
  max-width: 920px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(22, 59, 92, 0.9)),
    var(--deep-navy);
  border: 1px solid rgba(216, 183, 95, 0.28);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 38px;
  text-align: center;
  color: var(--white);
}

.contact-trust-box h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.7px;
}

.contact-trust-box p {
  max-width: 690px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.86);
}

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

/* Contact Hero Luxury Redesign */
.contact-hero {
  position: relative;
  min-height: auto;
  align-items: stretch;
  padding-top: 82px;
  padding-bottom: 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 182, 201, 0.16), transparent 32%),
    radial-gradient(circle at 14% 86%, rgba(216, 183, 95, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(251, 247, 239, 0.98), rgba(246, 240, 230, 0.78) 46%, rgba(255, 255, 255, 0.96));
  color: var(--text);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 26px 8% 0;
  border-radius: 34px;
  background:
    linear-gradient(105deg, rgba(16, 42, 67, 0.82), rgba(22, 59, 92, 0.48), rgba(24, 182, 201, 0.08)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=82');
  background-size: cover;
  background-position: center 58%;
  box-shadow: 0 22px 58px rgba(16, 42, 67, 0.16);
  z-index: 0;
}

.contact-hero::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -1px;
  height: 96px;
  background: linear-gradient(180deg, rgba(251, 247, 239, 0), var(--sand-light));
  z-index: 1;
  pointer-events: none;
}

.contact-hero-box {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0;
  padding: 46px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(231, 237, 242, 0.76);
  box-shadow: 0 18px 48px rgba(16, 42, 67, 0.14);
  backdrop-filter: blur(10px);
}

.contact-hero h1 {
  color: var(--deep-navy);
}

.contact-hero p {
  color: var(--muted);
}

.contact-hero-actions {
  align-items: center;
}

/* Contact Hero Clean Premium Gradient */
.contact-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 62px 8% 50px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(24, 182, 201, 0.16), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(216, 183, 95, 0.12), transparent 32%),
    linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 48%, var(--sand) 100%);
  color: var(--white);
}

.contact-hero::before {
  content: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 183, 95, 0.42), transparent);
  pointer-events: none;
}

.contact-hero-box {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-width: 780px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.contact-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-hero-actions {
  display: flex;
  align-items: center;
  gap: 0;
}

.contact-hero-actions .btn {
  width: auto;
  min-width: 230px;
}

.contact-section {
  padding-top: 66px;
}

/* Compact Contact Intro */
.contact-intro {
  background:
    radial-gradient(circle at top right, rgba(24, 182, 201, 0.08), transparent 30%),
    linear-gradient(180deg, var(--sand-light), var(--white));
  padding: 58px 8% 34px;
  text-align: center;
}

.contact-intro-box {
  max-width: 760px;
  margin: 0 auto;
}

.contact-intro h1 {
  color: var(--deep-navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}

.contact-intro p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.7;
}

.contact-intro .btn {
  min-width: 230px;
}

.contact-section {
  padding-top: 34px;
}

/* Official Contacts Directory Refinement */
.contact-intro {
  background:
    radial-gradient(circle at top right, rgba(24, 182, 201, 0.07), transparent 30%),
    linear-gradient(180deg, var(--sand-light), var(--white));
  padding: 54px 8% 28px;
}

.contact-intro .badge {
  display: none;
}

.contact-intro h1 {
  margin-bottom: 12px;
}

.contact-intro p {
  max-width: 660px;
}

.contact-section {
  padding-top: 28px;
}

.contact-section-heading {
  display: none;
}

.contact-card:first-child {
  border-color: rgba(24, 182, 201, 0.28);
  box-shadow: 0 16px 38px rgba(24, 182, 201, 0.11);
}

.contact-card:first-child .contact-card-icon {
  background: rgba(24, 182, 201, 0.14);
  color: var(--aqua-dark);
}

/* Official-style contact card icons */
.contact-card-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.contact-card-icon-whatsapp {
  background: rgba(24, 182, 201, 0.12);
  color: var(--aqua-dark);
}

.contact-card-icon-email {
  background: rgba(216, 183, 95, 0.13);
  color: #8a6618;
}

.contact-card-icon-facebook,
.contact-card-icon-group,
.contact-card-icon-instagram,
.contact-card-icon-tiktok,
.contact-card-icon-phone {
  background: rgba(16, 42, 67, 0.08);
  color: var(--deep-navy);
}

.contact-card:hover .contact-card-icon {
  transform: translateY(-2px) scale(1.04);
}

/* Contacts Social Media Section */
.contact-social-section {
  background: var(--white);
  padding: 0 8% 52px;
}

.contact-social-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 0 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact-social-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 20px;
}

.contact-social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-social-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  background: var(--white);
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-social-item:hover {
  border-color: rgba(16, 42, 67, 0.24);
  color: var(--deep-navy);
  box-shadow: var(--soft-shadow);
  transform: translateY(-2px);
}

.contact-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

/* Unified seven-card contact grid — auto-fit for balanced wrapping */
.contact-grid-unified {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Reset first-child special treatment inside the unified grid for equal visual weight */
.contact-grid-unified .contact-card:first-child {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 239, 0.78)),
    var(--white);
  border-color: rgba(216, 183, 95, 0.2);
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.08);
}

.contact-grid-unified .contact-card:first-child::before {
  background: linear-gradient(90deg, var(--gold-accent), rgba(24, 182, 201, 0.62));
}

.contact-grid-unified .contact-card:first-child h3 {
  color: var(--deep-navy);
}

.contact-grid-unified .contact-card:first-child p {
  color: #627484;
}

.contact-grid-unified .contact-card:first-child .contact-card-icon {
  background: rgba(24, 182, 201, 0.12);
  color: var(--aqua-dark);
  border-color: rgba(24, 182, 95, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.contact-grid-unified .contact-card:first-child .btn {
  background: var(--white);
  color: var(--deep-navy);
  border-color: var(--border);
  box-shadow: none;
}

.contact-grid-unified .contact-card:first-child .btn:hover {
  background: var(--deep-navy);
  border-color: var(--deep-navy);
  color: var(--white);
}

/* Restore btn-whatsapp-hero appearance inside the first card — specificity 0-5-0 beats the reset above */
.contact-grid-unified .contact-card:first-child .btn.btn-whatsapp-hero {
  background: var(--deep-navy);
  color: var(--white);
  border-color: var(--gold-accent);
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.28);
}

.contact-grid-unified .contact-card:first-child .btn.btn-whatsapp-hero:hover {
  background: var(--navy);
  border-color: var(--gold-accent);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(16, 42, 67, 0.36);
}

.contact-intro-reassurance {
  font-size: 14px;
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 0;
}

/* Contacts Page Premium Color Harmony */
.contact-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(24, 182, 201, 0.13), transparent 30%),
    radial-gradient(circle at 16% 72%, rgba(216, 183, 95, 0.14), transparent 28%),
    linear-gradient(180deg, var(--sand-light) 0%, #ffffff 72%);
}

.contact-intro::after {
  content: "";
  display: block;
  width: min(680px, 72%);
  height: 1px;
  margin: 28px auto 0;
  background: linear-gradient(90deg, transparent, rgba(216, 183, 95, 0.42), transparent);
}

.contact-intro h1 {
  color: var(--deep-navy);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.64);
}

.contact-intro p {
  color: #617282;
}

.contact-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(24, 182, 201, 0.1), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(216, 183, 95, 0.12), transparent 34%),
    linear-gradient(180deg, var(--white) 0%, var(--sand-light) 44%, #f7efe2 100%);
}

.contact-grid {
  position: relative;
}

.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 239, 0.78)),
    var(--white);
  border-color: rgba(216, 183, 95, 0.2);
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.08);
}

.contact-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-accent), rgba(24, 182, 201, 0.62));
}

.contact-card:hover {
  border-color: rgba(216, 183, 95, 0.42);
  box-shadow: 0 22px 48px rgba(16, 42, 67, 0.13);
}

.contact-card h3 {
  color: var(--deep-navy);
}

.contact-card p {
  color: #627484;
}

.contact-card .btn-outline {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(16, 42, 67, 0.12);
}

.contact-card .btn-outline:hover {
  background: var(--deep-navy);
  border-color: var(--deep-navy);
  color: var(--white);
}

.contact-card:first-child {
  background:
    linear-gradient(145deg, rgba(16, 42, 67, 0.96), rgba(22, 59, 92, 0.92)),
    var(--deep-navy);
  border-color: rgba(216, 183, 95, 0.34);
  box-shadow: 0 20px 52px rgba(16, 42, 67, 0.18);
}

.contact-card:first-child::before {
  background: linear-gradient(90deg, var(--gold-accent), var(--aqua));
}

.contact-card:first-child h3 {
  color: var(--white);
}

.contact-card:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card:first-child .contact-card-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-accent);
  border-color: rgba(216, 183, 95, 0.34);
}

.contact-card:first-child .btn {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(24, 182, 201, 0.28);
}

.contact-card:first-child .btn:hover {
  background: var(--aqua-dark);
  border-color: var(--aqua-dark);
  color: var(--white);
}

.contact-card-icon {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.contact-card-icon-email {
  background: rgba(216, 183, 95, 0.16);
  color: #7a5a14;
  border-color: rgba(216, 183, 95, 0.28);
}

.contact-card-icon-facebook,
.contact-card-icon-group,
.contact-card-icon-instagram,
.contact-card-icon-tiktok {
  background:
    linear-gradient(180deg, rgba(24, 182, 201, 0.1), rgba(216, 183, 95, 0.1));
  color: var(--deep-navy);
  border-color: rgba(16, 42, 67, 0.12);
}

/* Contacts Page Light Sea-Inspired Cards — Unified */
.contact-card {
  background: linear-gradient(135deg, rgba(24, 182, 201, 0.05), rgba(24, 182, 201, 0.02));
  border-color: rgba(24, 182, 201, 0.18);
  box-shadow: 0 4px 20px rgba(16, 42, 67, 0.07);
}

.contact-card::before {
  background: linear-gradient(90deg, var(--aqua), rgba(24, 182, 201, 0.38));
}

.contact-card:hover {
  border-color: rgba(24, 182, 201, 0.52);
  box-shadow: 0 14px 44px rgba(24, 182, 201, 0.22);
  transform: translateY(-4px);
}

.contact-card h3 {
  color: var(--deep-navy);
}

.contact-card p {
  color: var(--muted);
}

/* All icons: light turquoise tint, turquoise icon colour */
.contact-card .contact-card-icon,
.contact-card:first-child .contact-card-icon,
.contact-card-icon-email,
.contact-card-icon-facebook,
.contact-card-icon-group,
.contact-card-icon-instagram,
.contact-card-icon-tiktok {
  background: rgba(24, 182, 201, 0.09);
  color: var(--aqua-dark);
  border-color: rgba(24, 182, 201, 0.2);
  box-shadow: none;
}

/* All buttons: solid turquoise */
.contact-card .btn,
.contact-card .btn-outline,
.contact-card:first-child .btn,
.contact-card:first-child .btn-outline {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(24, 182, 201, 0.28);
}

.contact-card .btn:hover,
.contact-card .btn-outline:hover,
.contact-card:first-child .btn:hover,
.contact-card:first-child .btn-outline:hover {
  background: var(--aqua-dark);
  border-color: var(--aqua-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(24, 182, 201, 0.36);
}

/* Override btn-whatsapp-hero dark style inside the contact cards — turquoise instead */
.contact-grid-unified .contact-card:first-child .btn.btn-whatsapp-hero,
.contact-grid-unified .contact-card:first-child .btn.btn-whatsapp-hero:not(.btn-hero-secondary) {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(24, 182, 201, 0.28);
}

.contact-grid-unified .contact-card:first-child .btn.btn-whatsapp-hero:hover {
  background: var(--aqua-dark);
  border-color: var(--aqua-dark);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(24, 182, 201, 0.36);
}

/* Hero WhatsApp CTA button */
/* Specificity 0-3-0: ties .hero-video-section .btn:not(.btn-hero-secondary) and wins by source order */
.btn.btn-whatsapp-hero:not(.btn-hero-secondary) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--deep-navy);
  color: var(--white);
  border: 2px solid var(--gold-accent);
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.28);
}

.btn.btn-whatsapp-hero:hover,
.btn.btn-whatsapp-hero:focus-visible {
  background: var(--navy);
  border-color: var(--gold-accent);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(16, 42, 67, 0.36);
}

/* Floating WhatsApp pulse animation */
@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(216, 183, 95, 0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(216, 183, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 183, 95, 0); }
}

.floating-whatsapp {
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

/* FAQ Page */
.faq-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Review Thank You Message */
#reviewThankYou {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 64px;
  gap: 16px;
}

#reviewThankYou.show {
  display: flex;
}

.review-thankyou-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: thankyou-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes thankyou-pop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.review-thankyou-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin: 0;
}

.review-thankyou-message {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 360px;
}

/* Field note (e.g. max guests hint) */
.field-note {
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0.6;
  margin-left: 4px;
}

@media (max-width: 850px) {
  /* Mobile Trips Dropdown */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    font-size: 14.5px;
    border-radius: 14px;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 4px 0 4px 12px;
    margin-top: 4px;
    display: none;
    transition: none;
    width: 100%;
    box-sizing: border-box;
  }

  .nav-dropdown-menu.open {
    display: block;
  }

  .nav-dropdown-arrow {
    transition: transform 0.25s ease;
  }

  nav {
    width: 100%;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  /* CHECK: possible duplicate */
  nav a {
    white-space: nowrap;
    margin: 0;
    font-size: 14px;
    padding: 9px 11px;
  }
  /* CHECK: possible duplicate */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 70px 6% 120px;
    align-items: flex-start;
  }
  /* CHECK: possible duplicate */
  .hero p {
    font-size: 17px;
  }
  /* CHECK: possible duplicate */
  section {
    padding: 64px 6%;
  }
  /* CHECK: possible duplicate */
  .card img {
    height: 235px;
  }
  /* CHECK: possible duplicate */
  .trip-image {
    height: 310px;
  }
  /* CHECK: possible duplicate */
  .trip-intro {
    padding: 30px;
  }
  /* CHECK: possible duplicate */
  .details-grid {
    padding: 26px;
  }
  /* CHECK: possible duplicate */
  .btn {
    width: 100%;
  /* CHECK: possible duplicate */
    margin-bottom: 10px;
  }
  /* CHECK: possible duplicate */
  .logo-wrap img {
    height: 46px;
  }
  /* CHECK: possible duplicate */
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    font-size: 27px;
  }
  /* CHECK: possible duplicate */
  body {
    overflow-x: hidden;
  }
  /* CHECK: possible duplicate */
  /* CHECK: possible duplicate */
  nav {
  /* CHECK: possible duplicate */
    width: 100%;
  /* CHECK: possible duplicate */
    max-width: 100%;
    overflow-x: auto;
  /* CHECK: possible duplicate */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  /* CHECK: possible duplicate */
  nav::-webkit-scrollbar {
    display: none;
  }
  /* CHECK: possible duplicate */
  nav a {
  /* CHECK: possible duplicate */
    flex: 0 0 auto;
  }
  /* CHECK: possible duplicate */
  section {
  /* CHECK: possible duplicate */
    padding-left: 16px;
    padding-right: 16px;
  }
  /* CHECK: possible duplicate */
  .hero {
  /* CHECK: possible duplicate */
    width: 100%;
  /* CHECK: possible duplicate */
    padding-left: 16px;
  /* CHECK: possible duplicate */
    padding-right: 16px;
  /* CHECK: possible duplicate */
    padding-top: 80px;
    align-items: flex-start;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .cards,
  .details-grid {
  /* CHECK: possible duplicate */
    grid-template-columns: 1fr;
  }
  /* CHECK: possible duplicate */
  .card {
    width: 100%;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .trip-box {
    width: 100%;
  /* CHECK: possible duplicate */
    border-radius: 24px;
  }
  /* CHECK: possible duplicate */
  .trip-intro,
  .details-grid {
  /* CHECK: possible duplicate */
    padding-left: 20px;
    padding-right: 20px;
  }
  /* CHECK: possible duplicate */
  .btn {
  /* CHECK: possible duplicate */
    width: 100%;
  /* CHECK: possible duplicate */
    max-width: 100%;
  /* CHECK: possible duplicate */
    white-space: normal;
    text-align: center;
  }
  /* CHECK: possible duplicate */
  .floating-whatsapp {
  /* CHECK: possible duplicate */
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  /* CHECK: possible duplicate */
  .trust-section {
    padding: 34px 16px;
  }
  /* CHECK: possible duplicate */
  .trust-grid {
    grid-template-columns: 1fr;
  /* CHECK: possible duplicate */
    gap: 16px;
  }
  /* CHECK: possible duplicate */
  .trust-card {
    padding: 22px;
  }
  /* CHECK: possible duplicate */
  .trip-info-row {
    grid-template-columns: 1fr;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .card-price {
    align-items: flex-start;
  /* CHECK: possible duplicate */
    flex-direction: column;
  /* CHECK: possible duplicate */
    gap: 4px;
  }
  /* CHECK: possible duplicate */
  .card-price strong {
    font-size: 21px;
  }
  /* CHECK: possible duplicate */
  .discount-badge {
    font-size: 11.5px;
    padding: 6px 10px;
  }
  /* CHECK: possible duplicate */
  .quick-booking {
    padding: 22px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .booking-steps {
    grid-template-columns: 1fr;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .trust-badges span {
    width: 100%;
  /* CHECK: possible duplicate */
    text-align: center;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .booking-after-details {
    padding: 0 26px 26px;
  }
  /* CHECK: possible duplicate */
  .review-page {
    padding: 54px 16px;
  }
  /* CHECK: possible duplicate */
  .review-box {
    padding: 28px 20px;
    border-radius: 24px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .review-actions {
    gap: 10px;
  }
  /* CHECK: possible duplicate */
  .review-actions .btn {
    width: 100%;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .review-invite {
    padding: 42px 16px;
  }
  /* CHECK: possible duplicate */
  .review-invite-box {
    padding: 26px 20px;
    border-radius: 24px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .form-grid {
    grid-template-columns: 1fr;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .booking-modal {
    padding: 12px;
    align-items: flex-end;
  }
  /* CHECK: possible duplicate */
  .booking-modal-content {
    width: 100%;
  /* CHECK: possible duplicate */
    max-height: calc(100vh - 24px);
    border-radius: 24px 24px 18px 18px;
    padding: 24px 18px;
  }
  /* CHECK: possible duplicate */
  .booking-modal-header {
    padding-right: 42px;
  }
  /* CHECK: possible duplicate */
  .booking-modal-close {
    top: 14px;
    right: 14px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .booking-modal {
  /* CHECK: possible duplicate */
    padding: 12px;
  /* CHECK: possible duplicate */
    align-items: flex-end;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .booking-modal-content {
  /* CHECK: possible duplicate */
    width: 100%;
  /* CHECK: possible duplicate */
    max-height: calc(100vh - 24px);
  /* CHECK: possible duplicate */
    border-radius: 24px 24px 18px 18px;
  /* CHECK: possible duplicate */
    padding: 24px 18px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .booking-modal-header {
  /* CHECK: possible duplicate */
    padding-right: 42px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .booking-modal-close {
  /* CHECK: possible duplicate */
    top: 14px;
  /* CHECK: possible duplicate */
    right: 14px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .booking-summary {
    padding: 18px;
  }
  /* CHECK: possible duplicate */
  .booking-summary-row {
    flex-direction: column;
  /* CHECK: possible duplicate */
    gap: 4px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .booking-summary-row strong {
    text-align: left;
  }
  /* CHECK: possible duplicate */
  .booking-summary-actions .btn {
    width: 100%;
  /* CHECK: possible duplicate */
    min-width: 0;
  }
  /* CHECK: possible duplicate */
  .trip-gallery-section {
    padding: 34px 26px;
  }
  /* CHECK: possible duplicate */
  .trip-gallery-grid {
    grid-template-columns: 1fr;
  /* CHECK: possible duplicate */
    grid-auto-rows: 220px;
  }
  /* CHECK: possible duplicate */
  .gallery-featured {
    grid-row: span 1;
  }
  /* CHECK: possible duplicate */
  .booking-note {
    width: 100%;
  /* CHECK: possible duplicate */
    font-size: 13px;
    padding: 10px 12px;
  }
  /* CHECK: possible duplicate */
  .trip-trust-section {
    padding: 34px 26px 14px;
  }
  /* CHECK: possible duplicate */
  .trip-trust-grid {
    grid-template-columns: 1fr;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .trip-trust-card {
    padding: 15px 16px;
  }
  /* CHECK: possible duplicate */
  .hero-actions {
    gap: 12px;
    margin-top: 8vh;
  }
  /* CHECK: possible duplicate */
  .hero-trust-line {
    font-size: 13.5px;
    line-height: 1.6;
  }
  /* CHECK: possible duplicate */
  .hero {
  /* CHECK: possible duplicate */
    min-height: 78vh;
    padding: 76px 16px 56px;
    background:
      linear-gradient(
        180deg,
        rgba(16, 42, 67, 0.88),
        rgba(16, 42, 67, 0.68)
      ),
      url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
  }
  /* CHECK: possible duplicate */
  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
    letter-spacing: -1.1px;
  }
  /* CHECK: possible duplicate */
  .hero p {
  /* CHECK: possible duplicate */
    font-size: 16.5px;
  }
  /* CHECK: possible duplicate */
  .hero-actions {
  /* CHECK: possible duplicate */
    width: 100%;
  /* CHECK: possible duplicate */
    gap: 10px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .hero-actions .btn {
    width: 100%;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  /* CHECK: possible duplicate */
  .logo-wrap img {
  /* CHECK: possible duplicate */
    height: 64px !important;
    width: auto !important;
    max-width: 150px;
    object-fit: contain;
  }
  /* CHECK: possible duplicate */
  .menu-toggle {
    display: flex;
  /* CHECK: possible duplicate */
    margin-left: auto;
  }
  /* CHECK: possible duplicate */
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
  /* CHECK: possible duplicate */
    width: auto;
    max-width: calc(100vw - 32px);
    display: grid;
    grid-template-columns: 1fr;
  /* CHECK: possible duplicate */
    gap: 6px;
  /* CHECK: possible duplicate */
    background: rgba(16, 42, 67, 0.98);
    border: 1px solid rgba(216, 183, 95, 0.22);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 18px 42px rgba(16, 42, 67, 0.28);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease,
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
  /* CHECK: possible duplicate */
  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  /* CHECK: possible duplicate */
  .site-nav a {
    width: 100%;
  /* CHECK: possible duplicate */
    padding: 12px 14px;
    font-size: 14.5px;
    border-radius: 14px;
    white-space: normal;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  header {
  /* CHECK: possible duplicate */
    min-height: 64px !important;
    height: 64px !important;
  /* CHECK: possible duplicate */
    padding: 4px 16px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }
  /* CHECK: possible duplicate */
  .logo-wrap {
    display: flex !important;
  /* CHECK: possible duplicate */
    align-items: center !important;
  /* CHECK: possible duplicate */
    justify-content: flex-start !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
    line-height: 1 !important;
  }
  /* CHECK: possible duplicate */
  .logo-wrap img {
  /* CHECK: possible duplicate */
    height: 54px !important;
    width: auto !important;
  /* CHECK: possible duplicate */
    max-width: 132px !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
  }
  /* CHECK: possible duplicate */
  .menu-toggle {
  /* CHECK: possible duplicate */
    display: flex !important;
  /* CHECK: possible duplicate */
    margin-left: auto !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
  }
  /* CHECK: possible duplicate */
  .site-nav {
  /* CHECK: possible duplicate */
    top: calc(100% + 8px) !important;
  }
  /* CHECK: possible duplicate */
  .logo-wrap {
  /* CHECK: possible duplicate */
    flex: 0 1 auto !important;
  /* CHECK: possible duplicate */
    display: flex !important;
  /* CHECK: possible duplicate */
    align-items: center !important;
  /* CHECK: possible duplicate */
    justify-content: flex-start !important;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .logo-wrap img {
  /* CHECK: possible duplicate */
    height: 54px !important;
  /* CHECK: possible duplicate */
    width: auto !important;
  /* CHECK: possible duplicate */
    max-width: 132px !important;
  /* CHECK: possible duplicate */
    max-height: none !important;
  /* CHECK: possible duplicate */
    object-fit: contain !important;
  /* CHECK: possible duplicate */
    display: block !important;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .menu-toggle {
  /* CHECK: possible duplicate */
    display: flex !important;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .site-nav {
  /* CHECK: possible duplicate */
    position: absolute !important;
    top: calc(100% + 8px) !important;
  /* CHECK: possible duplicate */
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
  /* CHECK: possible duplicate */
    max-width: calc(100vw - 32px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin-left: 0 !important;
    background: rgba(16, 42, 67, 0.98) !important;
    border: 1px solid rgba(216, 183, 95, 0.22) !important;
    border-radius: 18px !important;
    padding: 10px !important;
    box-shadow: 0 18px 42px rgba(16, 42, 67, 0.28) !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) !important;
    pointer-events: none !important;
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }
  /* CHECK: possible duplicate */
  .site-nav.open {
  /* CHECK: possible duplicate */
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
  /* CHECK: possible duplicate */
  .site-nav a {
  /* CHECK: possible duplicate */
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 14.5px !important;
    border-radius: 14px !important;
    white-space: normal !important;
    text-align: left !important;
  }
  /* CHECK: possible duplicate */
  .media-frame {
    height: 330px;
  }
  /* CHECK: possible duplicate */
  .media-arrow {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
  /* CHECK: possible duplicate */
  .media-arrow-prev {
    left: 10px;
  }
  /* CHECK: possible duplicate */
  .media-arrow-next {
    right: 10px;
  }
  /* CHECK: possible duplicate */
  .media-thumbnails {
    padding: 12px;
  /* CHECK: possible duplicate */
    gap: 10px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .media-thumb {
    flex-basis: 88px;
    height: 64px;
    border-radius: 13px;
  }
  /* CHECK: possible duplicate */
  .media-lightbox {
    padding: 12px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .media-lightbox-content {
    height: 72vh;
    border-radius: 18px;
  }
  /* CHECK: possible duplicate */
  .media-lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 28px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .media-lightbox-prev {
    left: 10px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .media-lightbox-next {
    right: 10px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .media-frame {
  /* CHECK: possible duplicate */
    height: min(360px, 62vw);
    min-height: 280px;
  }
  /* CHECK: possible duplicate */
  .media-thumbnails {
  /* CHECK: possible duplicate */
    padding: 12px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .media-thumb {
  /* CHECK: possible duplicate */
    flex: 0 0 88px;
    height: 64px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .media-lightbox-close,
  .media-lightbox-zoom,
  .media-lightbox-arrow {
  /* CHECK: possible duplicate */
    min-width: 44px;
    min-height: 44px;
  }
  /* CHECK: possible duplicate */
  .media-arrow,
  .media-lightbox-arrow {
  /* CHECK: possible duplicate */
    width: 42px !important;
  /* CHECK: possible duplicate */
    height: 42px !important;
  /* CHECK: possible duplicate */
    min-width: 42px !important;
    min-height: 42px !important;
    font-size: 27px !important;
  }
  /* CHECK: possible duplicate */
  .media-arrow-prev,
  .media-lightbox-prev {
  /* CHECK: possible duplicate */
    left: 14px !important;
  }
  /* CHECK: possible duplicate */
  .media-arrow-next,
  .media-lightbox-next {
  /* CHECK: possible duplicate */
    right: 14px !important;
  }
  /* CHECK: possible duplicate */
  .hero {
  /* CHECK: possible duplicate */
    background:
  /* CHECK: possible duplicate */
      linear-gradient(
  /* CHECK: possible duplicate */
        180deg,
  /* CHECK: possible duplicate */
        rgba(16, 42, 67, 0.88) 0%,
        rgba(16, 42, 67, 0.72) 58%,
        rgba(16, 42, 67, 0.46) 100%
      ),
  /* CHECK: possible duplicate */
      url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80');
  /* CHECK: possible duplicate */
    background-size: cover;
  /* CHECK: possible duplicate */
    background-position: center;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .hero h1 {
  /* CHECK: possible duplicate */
    line-height: 1.08;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
  }
  /* CHECK: possible duplicate */
  .hero p {
  /* CHECK: possible duplicate */
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  /* CHECK: possible duplicate */
  .hero,
  .hero-video-section {
    min-height: 100vh;
  /* CHECK: possible duplicate */
    min-height: 100dvh;
  /* CHECK: possible duplicate */
    height: 100vh;
    height: 100dvh;
    padding: 0 16px;
  /* CHECK: possible duplicate */
    background:
      linear-gradient(180deg, rgba(4, 17, 30, 0.58) 0%, rgba(10, 32, 52, 0.48) 54%, rgba(16, 42, 67, 0.38) 100%),
      url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
  /* CHECK: possible duplicate */
    background-position: center;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .hero-video-wrap {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1000&q=80');
  }
  /* CHECK: possible duplicate */
  .hero-video-section .hero-content {
    padding: 64px 0 64px;
    padding-top: 35vh;
    max-width: 100%;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .hero-bg-video {
    object-position: center center;
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.04) brightness(0.9);
  }
  /* CHECK: possible duplicate */
  .hero-overlay {
    background:
  /* CHECK: possible duplicate */
      radial-gradient(circle at 70% 20%, rgba(24, 182, 201, 0.15), transparent 36%),
      radial-gradient(circle at 18% 84%, rgba(216, 183, 95, 0.1), transparent 34%),
      linear-gradient(180deg, rgba(4, 17, 30, 0.68) 0%, rgba(8, 26, 43, 0.54) 48%, rgba(16, 42, 67, 0.44) 100%);
  }
  /* CHECK: possible duplicate */
  .hero-video-section h1 {
    max-width: 12ch;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.04;
    letter-spacing: -1px;
    margin-bottom: 10px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .hero-kicker {
    font-size: 12.5px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }
  /* CHECK: possible duplicate */
  .hero-video-section p {
    max-width: 34rem;
    font-size: 15.8px;
    line-height: 1.7;
  /* CHECK: possible duplicate */
    margin-bottom: 26px;
  }
  /* CHECK: possible duplicate */
  .hero-video-section .hero-actions {
    display: grid;
  /* CHECK: possible duplicate */
    grid-template-columns: 1fr;
  /* CHECK: possible duplicate */
    gap: 10px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .trip-details-accordion {
    padding: 26px;
  /* CHECK: possible duplicate */
    gap: 12px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .trip-accordion-item {
    border-radius: 20px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .trip-accordion-item summary {
    padding: 18px 18px;
    font-size: 16.5px;
  /* CHECK: possible duplicate */
    min-height: 62px;
  }
  /* CHECK: possible duplicate */
  .trip-accordion-item summary::before {
    height: 28px;
  }
  /* CHECK: possible duplicate */
  .trip-accordion-content {
    padding: 0 18px 20px 38px;
    font-size: 14.5px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .trip-accordion-icon {
    width: 31px;
    min-width: 31px;
    height: 31px;
  }
  /* CHECK: possible duplicate */
  .booking-modal {
  /* CHECK: possible duplicate */
    align-items: flex-start;
  /* CHECK: possible duplicate */
    padding-top: max(28px, env(safe-area-inset-top));
    padding-right: max(16px, env(safe-area-inset-right));
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    padding-left: max(16px, env(safe-area-inset-left));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .booking-modal-content {
  /* CHECK: possible duplicate */
    margin-top: 14px;
    max-height: calc(100dvh - max(74px, env(safe-area-inset-top)) - max(18px, env(safe-area-inset-bottom)));
    overflow-y: auto;
  /* CHECK: possible duplicate */
    -webkit-overflow-scrolling: touch;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  /* CHECK: possible duplicate */
  .contact-hero p {
    font-size: 16px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-hero-actions {
    gap: 10px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-grid {
    grid-template-columns: 1fr;
  /* CHECK: possible duplicate */
    gap: 16px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-card {
    padding: 24px 20px;
    border-radius: 24px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-trust-section {
    padding: 42px 16px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-trust-box {
    padding: 30px 20px;
    border-radius: 24px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-hero {
  /* CHECK: possible duplicate */
    padding-top: 54px;
    padding-bottom: 42px;
  }
  /* CHECK: possible duplicate */
  .contact-hero::before {
    inset: 18px 16px 0;
    border-radius: 26px;
    background:
  /* CHECK: possible duplicate */
      linear-gradient(180deg, rgba(16, 42, 67, 0.56), rgba(22, 59, 92, 0.26), rgba(251, 247, 239, 0.04)),
      url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1100&q=78');
    background-size: cover;
  /* CHECK: possible duplicate */
    background-position: center;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-hero::after {
    left: 16px;
  /* CHECK: possible duplicate */
    right: 16px;
  /* CHECK: possible duplicate */
    height: 72px;
  }
  /* CHECK: possible duplicate */
  .contact-hero-box {
    padding: 30px 20px;
  /* CHECK: possible duplicate */
    border-radius: 24px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-hero {
  /* CHECK: possible duplicate */
    padding: 50px 16px 42px;
    background:
  /* CHECK: possible duplicate */
      radial-gradient(circle at 86% 18%, rgba(24, 182, 201, 0.18), transparent 34%),
      radial-gradient(circle at 8% 88%, rgba(216, 183, 95, 0.13), transparent 34%),
      linear-gradient(145deg, var(--deep-navy) 0%, var(--navy) 58%, #244b62 100%);
  }
  /* CHECK: possible duplicate */
  .contact-hero::after {
  /* CHECK: possible duplicate */
    left: 16px;
  /* CHECK: possible duplicate */
    right: 16px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-hero-box {
  /* CHECK: possible duplicate */
    width: 100%;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-hero h1 {
  /* CHECK: possible duplicate */
    font-size: clamp(32px, 9vw, 42px);
  }
  /* CHECK: possible duplicate */
  .contact-hero p {
  /* CHECK: possible duplicate */
    font-size: 15.5px;
    margin-bottom: 22px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-hero-actions .btn {
    width: 100%;
  /* CHECK: possible duplicate */
    min-width: 0;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-section {
    padding-top: 54px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-intro {
    padding: 46px 16px 26px;
  }
  /* CHECK: possible duplicate */
  .contact-intro h1 {
    font-size: clamp(31px, 9vw, 40px);
  }
  /* CHECK: possible duplicate */
  .contact-intro p {
    font-size: 15.5px;
  /* CHECK: possible duplicate */
    margin-bottom: 22px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-intro .btn {
    width: 100%;
  /* CHECK: possible duplicate */
    min-width: 0;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
  .contact-section {
  /* CHECK: possible duplicate */
    padding-top: 28px;
  }
  /* CHECK: possible duplicate */
  .contact-intro {
  /* CHECK: possible duplicate */
    padding: 44px 16px 22px;
  }
  /* CHECK: possible duplicate */
  .contact-section {
  /* CHECK: possible duplicate */
    padding-top: 24px;
  }
  /* CHECK: possible duplicate */
  .contact-intro::after {
    width: 84%;
    margin-top: 24px;
  }
  /* CHECK: possible duplicate */
  .contact-card::before {
    margin-bottom: 16px;
  /* CHECK: possible duplicate */
  }
  /* CHECK: possible duplicate */
}

@media (max-width: 767px) {
  .mobile-sticky-booking {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 56px;
    padding: 15px 18px;
    background: var(--aqua);
    color: var(--white);
    border: 1px solid var(--aqua);
    border-radius: 18px 18px 16px 16px;
    box-shadow: 0 18px 42px rgba(24, 182, 201, 0.34);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.35s ease,
      background-color 0.35s ease;
  }
  .mobile-sticky-booking:hover {
    background: var(--aqua-dark);
    border-color: var(--aqua-dark);
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(24, 182, 201, 0.42);
  }
  /* CHECK: possible duplicate */
  body {
    padding-bottom: 84px;
  }
  /* CHECK: possible duplicate */
  .floating-whatsapp {
    bottom: 86px;
  }
  /* CHECK: possible duplicate */
  .floating-whatsapp {
  /* CHECK: possible duplicate */
    width: 46px !important;
    height: 46px !important;
    right: 14px !important;
    bottom: 92px !important;
    font-size: 22px !important;
  }
  /* CHECK: possible duplicate */
}

@media (max-width: 560px) {
  .hero-video-section {
    min-height: 74vh;
    min-height: 74svh;
  }
  .hero-video-section .hero-content {
    padding: 20vh 0 48px;
  }
  /* CHECK: possible duplicate */
  .hero-video-section h1 {
    max-width: 11ch;
    font-size: clamp(32px, 11vw, 42px);
  }
  /* CHECK: possible duplicate */
  .hero-video-section .hero-actions .btn {
    min-height: 52px;
  }
  /* CHECK: possible duplicate */
}
/* About Page */
.about-story-section,
.about-team-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px;
}

.about-story-box,
.about-team-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-story-box h2,
.about-team-box h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.about-story-box p,
.about-team-box p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.about-values-section {
  padding: 48px 20px;
  text-align: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 32px auto 0;
}

.about-value-card {
  background: var(--color-surface, #fff);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
}

.about-value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 12px 0 8px;
}

.about-value-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 850px) {
  .about-story-box h2,
  .about-team-box h2 {
    font-size: 1.4rem;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

/* Universal AZURIX brand gold */
.azurix-gold {
  color: var(--color-gold, #C9A84C);
  font-style: normal;
}

/* Trip location label */
.trip-location {
  font-weight: 400;
  opacity: 0.75;
  font-size: 0.9em;
}
