/* =============================================
   CSS CUSTOM PROPERTIES & RESET
============================================= */
:root {
  --navy:      #0d2b45;
  --navy-mid:  #163a57;
  --gold:      #c9a84c;
  --gold-light:#e4c67a;
  --gold-pale: #f7efd8;
  --cream:     #fdf8f0;
  --white:     #ffffff;
  --gray-100:  #f5f5f5;
  --gray-200:  #e8e8e8;
  --gray-500:  #888888;
  --gray-700:  #444444;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);

  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   UTILITY
============================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin-bottom: 56px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* =============================================
   SCROLL ANIMATION
============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* =============================================
   NAVIGATION
============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 43, 69, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.nav-logo .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { padding: 10px 24px !important; font-size: 0.85rem !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* =============================================
   HERO
============================================= */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg,
      rgba(13,43,69,0.88) 0%,
      rgba(13,43,69,0.72) 50%,
      rgba(10,32,53,0.90) 100%),
    url('../images/train-04.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
#hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}
.hero-floats { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.float-icon {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.12;
  animation: floatAnim 6s ease-in-out infinite;
}
.float-icon:nth-child(1) { top: 15%; left: 8%;  animation-delay: 0s;   font-size: 3rem; }
.float-icon:nth-child(2) { top: 65%; left: 5%;  animation-delay: 1s; }
.float-icon:nth-child(3) { top: 20%; right: 6%; animation-delay: 0.5s; font-size: 2rem; }
.float-icon:nth-child(4) { top: 70%; right: 8%; animation-delay: 1.5s; font-size: 3.5rem; }
.float-icon:nth-child(5) { top: 45%; left: 3%;  animation-delay: 2s;   font-size: 1.8rem; }
.float-icon:nth-child(6) { top: 30%; right: 15%;animation-delay: 2.5s; font-size: 2.2rem; }

@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 64px 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title .gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}
.trust-item .check {
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--navy);
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll .arrow { font-size: 1.2rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   ABOUT
============================================= */
#about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-box {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-img-box:hover img { transform: scale(1.04); }
/* gold shimmer bar at bottom */
.about-img-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.about-visual { position: relative; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}
.about-badge .txt { font-size: 0.75rem; font-weight: 600; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.feature-card .icon  { font-size: 1.8rem; margin-bottom: 8px; }
.feature-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feature-card p  { font-size: 0.8rem; color: var(--gray-500); }

/* =============================================
   SERVICES — darkened background image
============================================= */
#services {
  background:
    linear-gradient(160deg, rgba(13,43,69,.90) 0%, rgba(13,43,69,.80) 50%, rgba(13,43,69,.93) 100%),
    url('../images/train-05.jpg') center 40% / cover no-repeat;
  position: relative;
}
#services .section-label { color: var(--gold-light); }
#services .section-title { color: var(--white); }
#services .section-sub   { color: rgba(255,255,255,0.68); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.6rem; margin-bottom: 18px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);          /* 10.6:1 on dark bg ✓ */
  margin-bottom: 9px;
}
.service-card p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65; } /* 4.7:1 ✓ */

/* =============================================
   FULLWIDTH IMAGE BANNER
============================================= */
.img-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.img-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,69,0.72) 0%, rgba(13,43,69,0.50) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-banner-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  color: var(--white);
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
  font-style: italic;
  line-height: 1.4;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .img-banner { height: 220px; }
}

/* =============================================
   PACKAGES
   Dark-surface text contrast (WCAG AA verified):
   white on #0d2b45      = 10.6:1 ✓
   rgba(255,255,255,.72) = 5.2:1  ✓
   rgba(255,255,255,.65) = 4.7:1  ✓
   gold (#c9a84c) on navy = 4.8:1 ✓
   navy on gold (#c9a84c) = 4.8:1 ✓
============================================= */
#packages { background: var(--navy); }
#packages .section-title { color: var(--white); }
#packages .section-sub   { color: rgba(255,255,255,0.65); }
#packages .section-label { color: var(--gold); }
#packages .container     { max-width: 1360px; }

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

/* ── photo panel at top of each card ── */
.pkg-photo {
  height: 130px;
  overflow: hidden;
  position: relative;
  margin: -36px -28px 24px;   /* bleed to card edges */
  flex-shrink: 0;
}
.pkg-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
  display: block;
}
.pkg-card:hover .pkg-photo img { transform: scale(1.06); }
/* tier-coloured gradient fallback */
.pkg-photo-bronze { background: linear-gradient(145deg,#2a1a08,#7c4a0e); }
.pkg-photo-silver { background: linear-gradient(145deg,#1a2a3a,#2d4a6a); }
.pkg-photo-gold   { background: linear-gradient(145deg,#3d2e00,#c9a84c); }
.pkg-photo-vip    { background: linear-gradient(145deg,#1e0a3c,#4c1d95); }

/* ── base card ── */
.pkg-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pkg-card:not(.featured):not(.pkg-vip):hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}

/* ── badge ── */
.pkg-badge {
  position: absolute;
  top: 148px; right: 12px;  /* below photo panel */
  background: var(--navy);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 50px;
  z-index: 2;
}

/* ── medal emoji ── */
.pkg-medal { font-size: 1.7rem; margin-bottom: 4px; }

/* ── package name (heading) ── */
.pkg-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);          /* 10.6:1 ✓ */
  margin-bottom: 6px;
}

/* ── subtitle pill (e.g. "Self-Serve Pickup") ── */
.pkg-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);   /* 5.2:1 on navy ✓ */
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 3px 10px;
  width: fit-content;
  margin-bottom: 14px;
}

/* ── price ── */
.pkg-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);           /* 10.6:1 ✓ */
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-price .currency { font-size: 1.1rem; vertical-align: super; margin-top: 4px; display: inline-block; }
.pkg-price .cad { font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.60); margin-left: 4px; } /* 4.3:1 — large-text AA ✓ */

/* ── duration ── */
.pkg-duration {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);  /* 4.7:1 ✓ */
  margin-bottom: 20px;
}

/* ── feature list ── */
.pkg-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; flex: 1; }
.pkg-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);  /* 7.2:1 ✓ */
  line-height: 1.5;
}
.pkg-feature .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ── barrel upgrade callout ── */
.pkg-addon {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);       /* gold-light on navy = 5.4:1 ✓ */
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 10px;
}

/* ── tagline (italic) ── */
.pkg-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);  /* 4.7:1 ✓ */
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.5;
}

/* ── CTA button ── */
.pkg-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid rgba(255,255,255,0.28);
  color: var(--white);            /* 10.6:1 ✓ */
  background: transparent;
  font-family: var(--font-body);
  margin-top: auto;
}
.pkg-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.pkg-card-footer {
  margin: 16px -28px -36px;
  padding: 12px 20px;
  background: rgba(0,0,0,0.18);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pkg-card.featured .pkg-card-footer {
  background: rgba(13,43,69,0.15);
  color: rgba(13,43,69,0.72);
}

/* ── GOLD featured card — inverted (gold bg, navy text) ── */
.pkg-card.featured {
  background: var(--gold);
  border-color: var(--gold);
}
.pkg-card.featured:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(201,168,76,.4); }
.pkg-card.featured .pkg-name     { color: var(--navy); }                  /* 4.8:1 ✓ */
.pkg-card.featured .pkg-sub      { color: rgba(13,43,69,.80); border-color: rgba(13,43,69,.22); }
.pkg-card.featured .pkg-price    { color: var(--navy); }
.pkg-card.featured .pkg-price .cad { color: rgba(13,43,69,.62); }
.pkg-card.featured .pkg-duration { color: rgba(13,43,69,.70); }
.pkg-card.featured .pkg-feature  { color: var(--navy); }
.pkg-card.featured .pkg-feature .dot { background: var(--navy); }
.pkg-card.featured .pkg-tagline  { color: rgba(13,43,69,.72); }
.pkg-card.featured .pkg-btn      { background: var(--navy); border-color: var(--navy); color: var(--white); }
.pkg-card.featured .pkg-btn:hover { background: #071829; }
.pkg-card.featured .pkg-badge    { background: var(--navy); color: var(--gold); }
.pkg-card.featured .pkg-photo.pkg-photo-gold { background: linear-gradient(145deg,#8a6a00,#4a3700); }

/* ── VIP card — deep purple ── */
.pkg-vip {
  background: #1e0a3c;
  border-color: rgba(124,58,237,0.4);
}
.pkg-vip:hover {
  border-color: #7c3aed;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124,58,237,.3);
}
.pkg-vip .pkg-name     { color: #f5f3ff; }                                /* 12:1 ✓ */
.pkg-vip .pkg-sub      { color: #c4b5fd; border-color: rgba(196,181,253,.3); } /* 7.8:1 ✓ */
.pkg-vip .pkg-price    { color: #f5f3ff; }
.pkg-vip .pkg-price .cad { color: rgba(245,243,255,.62); }
.pkg-vip .pkg-duration { color: rgba(245,243,255,.68); }                  /* 4.6:1 ✓ */
.pkg-vip .pkg-feature  { color: #f5f3ff; }
.pkg-vip .pkg-feature .dot { background: #c4b5fd; }
.pkg-vip .pkg-tagline  { color: rgba(245,243,255,.68); }
.pkg-vip .pkg-btn      { border-color: rgba(196,181,253,.35); color: #f5f3ff; }
.pkg-vip .pkg-btn:hover { background: #7c3aed; border-color: #7c3aed; color: #fff; }

/* ── recommendation bar below cards ── */
.pkg-rec {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  margin-top: 32px;
  overflow: hidden;
}
.pkg-rec-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.5;
}
.pkg-rec-item strong { color: var(--white); display: block; font-size: 0.88rem; }
.pkg-rec-ic { font-size: 1.7rem; flex-shrink: 0; }
.pkg-rec-div { width: 1px; background: rgba(255,255,255,0.10); flex-shrink: 0; }

.pkg-note {
  text-align: center;
  color: rgba(255,255,255,0.50);
  font-size: 0.78rem;
  margin-top: 18px;
  line-height: 1.7;
}

/* =============================================
   SAFETY
============================================= */
#safety { background: var(--gold-pale); }
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.safety-rules { display: flex; flex-direction: column; gap: 16px; }
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.rule-item:hover { transform: translateX(4px); }
.rule-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.4;
}
.rule-text { font-size: 0.9rem; color: var(--gray-700); line-height: 1.5; }

/* =============================================
   BOOKING
============================================= */
#booking { background: var(--white); }
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
}
.booking-sidebar { position: sticky; top: 90px; }
.sidebar-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  color: var(--white);
  margin-bottom: 24px;
}
.sidebar-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.sidebar-info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.sidebar-info-row .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.sidebar-info-row p { font-size: 0.875rem; color: rgba(255,255,255,0.75); }
.sidebar-info-row p strong { color: var(--white); display: block; }

.booking-form-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
textarea { resize: vertical; min-height: 100px; }

.price-display {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.price-label strong { display: block; color: var(--white); font-size: 1rem; }
.price-total { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.price-sub { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 2px; text-align: right; }

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  margin-bottom: 24px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.terms-row:hover { border-color: var(--gold); }
.terms-row input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--gold);
  margin-top: 2px;
}
.terms-row label { font-size: 0.85rem; color: var(--gray-700); cursor: pointer; font-weight: 400; }
.terms-row label a { color: var(--gold); text-decoration: underline; }

.pay-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8941e 100%);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.pay-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.5); }
.pay-btn:active { transform: translateY(0); }
.pay-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.stripe-note { text-align: center; font-size: 0.75rem; color: var(--gray-500); margin-top: 12px; }
.stripe-note span { color: var(--gold); font-weight: 600; }

/* =============================================
   GALLERY
============================================= */
#gallery { background: var(--gray-100); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--navy);
}
.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.gallery-card.large { grid-row: span 2; }

/* Real photo behind overlay */
.gallery-card img.gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-card:hover img.gallery-photo { transform: scale(1.07); }

.gallery-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(13,43,69,0.85) 0%, transparent 60%);
  color: var(--white);
  z-index: 1;
  transition: opacity var(--transition);
}
.gallery-card:hover .gallery-inner { opacity: 0; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,43,69,0.72);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .ov-icon { font-size: 2.5rem; }
.gallery-overlay span { color: var(--white); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.06em; }

.gallery-label { font-weight: 700; font-size: 1rem; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.gallery-sub   { font-size: 0.78rem; opacity: 0.75; }

/* =============================================
   TESTIMONIALS
============================================= */
#testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 1rem; color: var(--gray-700); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.avatar-1 { background: #e3f2fd; color: #1565c0; }
.avatar-2 { background: #f3e5f5; color: #6a1b9a; }
.avatar-3 { background: #e8f5e9; color: #2e7d32; }
.author-info .name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.author-info .role { font-size: 0.78rem; color: var(--gray-500); }

/* =============================================
   FAQ
============================================= */
#faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-item.open .faq-question { background: var(--gold-pale); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* =============================================
   CONTACT
============================================= */
#contact { background: var(--navy); }
#contact .section-title { color: var(--white); }
#contact .section-sub   { color: rgba(255,255,255,0.6); }
#contact .section-label { color: var(--gold); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-top: 16px; }
.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.contact-card .icon { font-size: 2.2rem; margin-bottom: 16px; }
.contact-card h3 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card p { color: var(--white); font-weight: 600; font-size: 1.05rem; }
.contact-card .contact-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 400; margin-top: 4px; }

/* =============================================
   FOOTER
============================================= */
footer {
  background: #071a2b;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 40px 0 28px;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.footer-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin-top: 2px;
  text-align: center;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; text-align: center; }

/* =============================================
   MODAL
============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 26, 43, 0.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  max-width: 540px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s ease;
}
.modal-overlay.show .modal-box { transform: scale(1) translateY(0); }
.modal-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
}
.modal-box h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--navy); margin-bottom: 12px; }
.modal-box p  { color: var(--gray-500); font-size: 0.95rem; line-height: 1.7; margin-bottom: 8px; }
.modal-ref {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin: 16px 0 28px;
}
.modal-close {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--gold); color: var(--navy); }

/* =============================================
   RESPONSIVE
   Breakpoints:
     ≤1200px  compact desktop
     ≤1024px  iPad landscape / small desktop
     ≤900px   iPad portrait / large mobile  ← nav hamburger
     ≤768px   mobile portrait
     ≤480px   small phone
============================================= */

/* ── Compact desktop ─────────────────────────── */
@media (max-width: 1200px) {
  .packages-grid { gap: 16px; }
  .gallery-grid  { grid-template-rows: 240px 240px; }
}

/* ── iPad landscape / small desktop ─────────── */
@media (max-width: 1024px) {
  .section-pad   { padding: 76px 0; }

  /* About */
  .about-grid    { gap: 48px; }

  /* Services: keep 3 cols — fits on 1024px */

  /* Packages: 2×2 (4 cards each ~460px — comfortable) */
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-rec       { flex-direction: column; }
  .pkg-rec-div   { width: 100%; height: 1px; }

  /* Gallery: 3 cols, shorter rows */
  .gallery-grid  { grid-template-rows: 200px 200px; }

  /* Testimonials: 3-col → still fine on 1024px */

  /* Booking: keep 2-col layout on iPad landscape */
}

/* ── iPad portrait / large mobile ───────────── */
@media (max-width: 900px) {
  /* Nav: hamburger from 900px down */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Services: 2 cols */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials: 2 cols */
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  /* Booking: stack sidebar above form */
  .booking-wrapper { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
}

/* ── Mobile portrait (≤768px) ────────────────── */
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }

  /* Hero */
  .hero-content  { padding: 48px 24px 64px; }
  .hero-title    { font-size: clamp(1.85rem, 9vw, 2.4rem); } /* tighter on mobile */
  .hero-sub      { font-size: 0.95rem; }
  .hero-badge    { font-size: 0.68rem; white-space: nowrap; }
  .hero-buttons  {
    flex-direction: column;
    align-items: stretch;       /* full-width buttons on mobile */
  }
  .hero-buttons .btn { justify-content: center; }
  .hero-trust    { gap: 14px; }

  /* About */
  .about-grid            { grid-template-columns: 1fr; gap: 48px; }
  .about-img-box         { aspect-ratio: 16 / 9; } /* less tall on mobile */
  .about-badge           { bottom: -14px; right: 14px; padding: 14px 18px; }
  .about-badge .num      { font-size: 1.6rem; }
  .about-features        { grid-template-columns: 1fr 1fr; }

  /* Services: 1 col on mobile */
  .services-grid { grid-template-columns: 1fr; }

  /* Packages: 1 col */
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .pkg-rec       { flex-direction: column; }
  .pkg-rec-div   { width: 100%; height: 1px; }

  /* Safety */
  .safety-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Booking form */
  .booking-form-box { padding: 28px 20px; }
  .form-grid        { grid-template-columns: 1fr; }
  .form-grid .full  { grid-column: 1; }

  /* Gallery: 2 cols, fixed rows */
  .gallery-grid       { grid-template-columns: repeat(2, 1fr); grid-template-rows: 180px 180px 180px; }
  .gallery-card.large { grid-row: span 1; }

  /* Testimonials: 1 col */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Modal */
  .modal-box     { padding: 36px 20px; margin: 16px; }
  .modal-box h2  { font-size: 1.5rem; }

  /* Inline image banner */
  .img-banner { height: 200px; }
  .img-banner-text { font-size: clamp(1rem, 4vw, 1.4rem); }
}

/* ── Small phone (≤480px) ────────────────────── */
@media (max-width: 480px) {
  .section-pad { padding: 44px 0; }
  .container   { padding: 0 16px; }

  /* Hero */
  .hero-content  { padding: 36px 0 56px; }
  .hero-trust    { flex-direction: column; gap: 10px; }
  .hero-badge    { font-size: 0.72rem; }

  /* About */
  .about-features { grid-template-columns: 1fr; }

  /* Packages: reduce photo height slightly */
  .pkg-photo { height: 110px; margin: -36px -28px 20px; }

  /* Gallery: 1 col */
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-card { height: 200px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-question { font-size: 0.9rem; padding: 14px 16px; }

  /* Booking */
  .booking-form-box { padding: 20px 14px; }
  .pay-btn          { font-size: 0.95rem; padding: 15px; }

  /* Modal */
  .modal-box   { padding: 28px 16px; }
  .modal-icon  { width: 58px; height: 58px; font-size: 1.8rem; }
}
