/* Lighthouse Parking – lightweight design system */
@font-face {
  font-family: "Soehne breit web buch";
  src: url("fonts/soehne.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --teal: #007B9E;
  --teal-dark: #006078;
  --teal-light: #0088b0;
  --green-dark: #0d4a3a;
  --blue-light: #007B9E;
  --yellow-pale: #f5f6c4;
  --red: #c53030;
  --green-savings: #0d7a3a;
  --yellow: #EAEC5B;
  --yellow-bright: #eef06e;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #e0e0e0;
  --gray-500: #757575;
  --gray-800: #2d2d2d;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Soehne breit web buch", sans-serif;
  --header-h: 112px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: var(--header-h);
}
[id] {
  scroll-margin-top: var(--header-h);
}

/* Scroll-reveal: content and images inside sections fade in on scroll */
.scroll-reveal .section-title,
.scroll-reveal .section-title-light,
.scroll-reveal .section-text,
.scroll-reveal .container > *,
.scroll-reveal .stats-inner > *,
.scroll-reveal .premium-images,
.scroll-reveal .premium-content,
.scroll-reveal .col-content,
.scroll-reveal .col-compare,
.scroll-reveal .step-image {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-reveal .container > *:nth-child(1),
.scroll-reveal .col-content { transition-delay: 0s; }
.scroll-reveal .container > *:nth-child(2),
.scroll-reveal .col-compare { transition-delay: 0.08s; }
.scroll-reveal .container > *:nth-child(3) { transition-delay: 0.16s; }
.scroll-reveal .container > *:nth-child(4) { transition-delay: 0.24s; }
.scroll-reveal .container > *:nth-child(5) { transition-delay: 0.32s; }
.scroll-reveal .container > *:nth-child(n+6) { transition-delay: 0.4s; }
.scroll-reveal .stats-inner > *:nth-child(1) { transition-delay: 0s; }
.scroll-reveal .stats-inner > *:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal .premium-images { transition-delay: 0s; }
.scroll-reveal .premium-content { transition-delay: 0.12s; }
/* Stagger the 3 step images in "Reserving Your Spot is easy..." */
.scroll-reveal .steps-list .step:nth-child(1) .step-image { transition-delay: 0.1s; }
.scroll-reveal .steps-list .step:nth-child(2) .step-image { transition-delay: 0.25s; }
.scroll-reveal .steps-list .step:nth-child(3) .step-image { transition-delay: 0.4s; }

.scroll-reveal.is-visible .section-title,
.scroll-reveal.is-visible .section-title-light,
.scroll-reveal.is-visible .section-text,
.scroll-reveal.is-visible .container > *,
.scroll-reveal.is-visible .stats-inner > *,
.scroll-reveal.is-visible .premium-images,
.scroll-reveal.is-visible .premium-content,
.scroll-reveal.is-visible .col-content,
.scroll-reveal.is-visible .col-compare,
.scroll-reveal.is-visible .step-image {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal .section-title,
  .scroll-reveal .section-title-light,
  .scroll-reveal .section-text,
  .scroll-reveal .container > *,
  .scroll-reveal .stats-inner > *,
  .scroll-reveal .premium-images,
  .scroll-reveal .premium-content,
  .scroll-reveal .col-content,
  .scroll-reveal .col-compare,
  .scroll-reveal .step-image {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

h1, h2, h3, h4, h5, h6,
.hero-title, .hero-title-line,
.booking-title,
.section-title, .section-title-light,
.premium-feature-title,
.stats-title {
  font-family: var(--font-heading);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
}
main {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.btn-primary {
  background: var(--yellow);
  color: var(--text);
}
.btn-primary:hover { background: var(--yellow-bright); }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  padding-top: 24px;
  padding-bottom: 16px;
  background: transparent;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease;
}
.header.is-scrolled {
  background: rgba(0, 96, 120, 0.95);
  backdrop-filter: blur(8px);
  padding-top: 32px;
  padding-bottom: 28px;
  height: auto;
  min-height: 148px;
}
.header-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  grid-column: 1;
  justify-self: start;
}
.logo:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.logo-icon {
  height: 88px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.header-menu {
  display: contents;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  grid-column: 2;
  justify-self: center;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  grid-column: 3;
  justify-self: end;
}
.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
}
.nav a:hover { color: var(--yellow); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}
.header-phone:hover { color: var(--yellow); }
.header-phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--yellow);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--yellow);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-header:hover { background: var(--yellow-bright); color: var(--teal-dark); }
.btn-header .btn-arrow { font-size: 1.1em; }
.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--white);
  position: relative;
  padding: 0;
}
.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}
.menu-toggle::before { top: 12px; }
.menu-toggle span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  background: currentColor;
}
.menu-toggle::after { bottom: 12px; }
.menu-toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span { opacity: 0; }
.menu-toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 900px) {
  .header-cta { gap: 16px; }
  .header-phone span:not(.header-phone-icon) { font-size: 0.9rem; }
  .logo-icon { height: 64px; }
  .header-menu {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 24px;
    background: var(--teal-dark);
    gap: 20px;
    align-items: stretch;
  }
  .header.menu-open .header-menu { display: flex; }
  .header.menu-open .nav { display: flex; }
  .nav { display: none; grid-column: unset; justify-self: unset; flex-direction: column; align-items: stretch; gap: 12px; }
  .header-cta { grid-column: unset; justify-self: unset; flex-direction: column; align-items: stretch; }
  .header-phone { justify-content: center; }
  .btn-header { justify-content: center; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; grid-column: 3; justify-self: end; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 32px) 24px 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #007B9E;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 123, 158, 0.7);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1440px;
  margin: 60px auto 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 480px;
  grid-template-rows: auto auto auto;
  column-gap: 120px;
  row-gap: 0;
  align-items: start;
}
.booking-card { grid-column: 2; grid-row: 1 / 3; align-self: center; margin-top: -60px; }
.booking-logos { grid-column: 2; grid-row: 3; justify-self: center; margin-top: 20px; }
.hero-copy { grid-row: 1; }
.hero-features { grid-row: 2; align-self: start; }
.hero-copy { color: var(--white); max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 8px 16px;
  background: #EAEC5B;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 24px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3FA0FF;
  flex-shrink: 0;
}
.hero-title {
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}
.hero-title-line { display: block; }
.hero-subtitle {
  margin: 0 0 4px;
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
}
.hero-subtitle strong { font-weight: 700; color: var(--white); }
.hero-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--yellow);
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px 48px;
  max-width: 500px;
}
.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
  gap: 6px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero-feature > *:first-child {
  min-height: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-feature-icon-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
}
.hero-feature-icon-row .hero-feature-icon { margin-bottom: 0; }
.hero-feature-main { font-weight: 700; font-size: 1.5rem; color: var(--white); line-height: 1.2; }
.hero-feature-label { color: rgba(255, 255, 255, 0.75); }
.hero-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
  margin-bottom: 0;
}
.hero-feature-icon-security {
  background-color: transparent;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/security-camera%202.svg');
  mask: none;
  -webkit-mask: none;
}
.hero-feature-icon-clock {
  background-color: transparent;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/rush%201.svg');
  mask: none;
  -webkit-mask: none;
}
.hero-feature-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; line-height: 1; }
.hero-feature-star-partial { opacity: 0.85; }
.hero-feature--rating { margin-top: -12px; }

/* Booking card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}
.booking-title {
  margin: 0 0 4px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
}
.booking-subtitle {
  margin: 0 0 20px;
  font-size: 1rem;
  color: var(--gray-500);
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 0;
}
.booking-form select,
.booking-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 1rem;
  color: #6C6C6C;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: #F7F7F7;
  box-sizing: border-box;
}
.booking-form select {
  height: 48px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.booking-form select:focus,
.booking-form input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 92, 99, 0.15);
}
.booking-cruise-wrap,
.booking-date-wrap {
  position: relative;
}
.booking-cruise-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/cruise-2%201.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.booking-cruise-wrap select {
  padding-left: 44px;
}
.booking-promo-wrap {
  position: relative;
}
.booking-promo-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/coupon-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.booking-promo-wrap input {
  padding-left: 46px;
}
.booking-date-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/date-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.booking-date-wrap select {
  padding-left: 42px;
}
.booking-form input::placeholder {
  color: #6C6C6C;
}
.btn-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--yellow);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-booking:hover { background: var(--yellow-bright); }
.btn-booking .btn-arrow { font-size: 1.1em; }
.booking-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: -8px;
}
.booking-logos img {
  display: block;
  height: 80px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.booking-partners {
  margin: 20px 0 0;
  font-size: 0.85rem;
  color: var(--gray-500);
  text-align: center;
}

/* Features bar */
.features-bar {
  position: relative;
  background: var(--yellow);
  padding: 18px 24px 20px;
  overflow: hidden;
}
.features-inner {
  padding: 10px 0;
  overflow: hidden;
}
.features-track {
  display: flex;
  width: max-content;
  animation: features-scroll 35s linear infinite;
}
.features-track:hover {
  animation-play-state: paused;
}
@keyframes features-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.features-set {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-shrink: 0;
  padding: 0 40px;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--white);
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  flex-shrink: 0;
}
.feature-pill-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background-color: var(--blue-light);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.feature-pill-bus {
  background-color: transparent;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/free-shuttle.png?updatedAt=1771422837025');
  mask: none;
  -webkit-mask: none;
}
.feature-pill-shield {
  background-color: transparent;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/secured-parking.png?updatedAt=1771422836928');
  mask: none;
  -webkit-mask: none;
}
.feature-pill-elevated {
  background-color: transparent;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/elevated-lots.png?updatedAt=1771422836964');
  mask: none;
  -webkit-mask: none;
}
.feature-pill-covered {
  background-color: transparent;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/covered-parking.png?updatedAt=1771422836884');
  mask: none;
  -webkit-mask: none;
}
.feature-pill-value {
  background-color: transparent;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/best-value.png?updatedAt=1771422836917');
  mask: none;
  -webkit-mask: none;
}
.feature-pill-monitor {
  background-color: transparent;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/24-7-monitoring.png?updatedAt=1771422836445');
  mask: none;
  -webkit-mask: none;
}
/* Sections */
.section { padding: 96px 24px; }
.container { max-width: 1440px; margin-left: auto; margin-right: auto; width: 100%; padding-left: 0; padding-right: 0; box-sizing: border-box; }
.section-title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--teal-dark);
}
.section-text { margin: 0 0 20px; color: var(--text-muted); max-width: 560px; }
.section-text-center { max-width: none; text-align: center; }

/* Two column + compare */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1440px;
}
.why-section {
  padding-top: 200px;
  padding-bottom: 200px;
  background-color: #F7F7F7;
}
.why-section .section-title { color: var(--teal); font-size: clamp(1.9rem, 3.2vw, 2.4rem); }
.why-section .section-text { color: var(--text-muted); margin-bottom: 24px; font-size: 1.0625rem; }
.why-section .check-list li { font-size: 1.0625rem; }
.why-section .btn-rates { font-size: 1.0625rem; }
.check-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  max-width: 560px;
}
.check-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 0;
  color: var(--text-muted);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/contain no-repeat;
}
.btn-rates {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--yellow);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, filter 0.2s;
}
.btn-rates:hover { filter: brightness(0.98); color: var(--teal-dark); }

/* Value card (service & convenience pillars) */
.col-compare { min-width: 0; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 28px 28px 32px;
  position: relative;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--teal);
}
.value-card-heading {
  margin: 0 0 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.value-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}
.value-pillar {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 162, 154, 0.09);
  color: var(--teal);
  flex-shrink: 0;
  margin-bottom: 6px;
}
.value-icon svg {
  width: 22px;
  height: 22px;
}
.value-pillar-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.value-pillar-desc {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Premium section */
.premium-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}
.premium-images {
  min-width: 0;
}
.img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.img-main img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  vertical-align: middle;
}
.premium-section {
  padding-top: 160px;
  padding-bottom: 160px;
}
.premium-section .section-title { color: var(--teal); }
.premium-intro {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}
.premium-features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.premium-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.premium-feature:last-child { margin-bottom: 0; }
.premium-feature-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: var(--teal);
  border-radius: var(--radius);
}
.premium-icon-shuttle {
  background-color: transparent;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/free-shuttle.png?updatedAt=1771422837025');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.premium-icon-lock {
  background-color: transparent;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/secured-parking.png?updatedAt=1771422836928');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.premium-icon-covered {
  background-color: transparent;
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/covered-parking.png?updatedAt=1771422836884');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.premium-feature-text { min-width: 0; }
.premium-feature-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
}
.premium-feature-desc {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Stats */
.stats-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--teal-dark);
  padding: 32px 24px 40px;
  color: var(--white);
}
.stats-inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.stats-title {
  margin: 0 0 24px;
  font-size: 3.25rem;
  font-weight: 400;
  text-align: center;
  color: var(--yellow);
}
.stats-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.stats-item {
  display: grid;
  grid-template-rows: auto auto auto;
  align-items: start;
  justify-items: center;
  text-align: center;
}
.stats-row-placeholder {
  display: block;
  height: 1.5em;
  min-height: 1.5em;
}
.stats-stars {
  display: block;
  color: var(--yellow);
  font-size: 1.25rem;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 2px;
  min-height: 1.5em;
  box-sizing: border-box;
}
.stats-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  line-height: 1.2;
}
.stats-label {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

/* Steps */
.steps-section {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
}
.steps-bg {
  position: absolute;
  inset: 0;
  background: #015B75;
}
.steps-section .container { position: relative; }
.section-title-light { color: var(--yellow); text-align: center; margin-bottom: 40px; font-size: clamp(2rem, 4vw, 2.75rem); opacity: 1; }
.steps-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.steps-list li {
  margin: 0;
  padding: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
  gap: 0;
  margin: 0;
  padding: 0;
}
.step-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.step-1 {
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/step-1.png?updatedAt=1771422837637');
}
.step-2 {
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/step-2.png?updatedAt=1771422837410');
}
.step-3 {
  background-image: url('https://ik.imagekit.io/primo/Lighthouse/step-3.png?updatedAt=1771422837524');
}
.step-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.step-heading {
  margin: 0 0 4px;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1.2;
}
.step p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.2;
}
.steps-cta { text-align: center; }
.steps-cta .btn { color: #007B9E; }
.steps-cta .btn-arrow { margin-left: 8px; }

/* Testimonials */
.testimonials-section .section-title { text-align: center; }
.testimonials-section .section-text.section-text-center { font-size: 1.125rem; }
.testimonials-section {
  overflow-x: hidden;
  padding-top: 128px;
  padding-bottom: 128px;
}
.testimonials-tracks {
  margin-top: 32px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.testimonials-track {
  overflow: hidden;
  width: 100%;
}
.testimonials-track-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  animation-duration: 35s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
.testimonials-track--top .testimonials-track-inner {
  animation-name: testimonials-scroll-left;
}
.testimonials-track--bottom .testimonials-track-inner {
  animation-name: testimonials-scroll-right;
}
@keyframes testimonials-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 3)); }
}
@keyframes testimonials-scroll-right {
  0% { transform: translateX(calc(-100% / 3)); }
  100% { transform: translateX(0); }
}
.testimonials-track .testimonial-card {
  flex: 0 0 420px;
  min-width: 420px;
}
.testimonial-card {
  background: var(--teal);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  min-height: 180px;
}
.quote-icon {
  font-size: 3.25rem;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stars { color: var(--yellow); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { margin: 0 0 16px; font-size: 1.25rem; opacity: 0.95; line-height: 1.5; }
.testimonial-card cite { font-size: 1.125rem; font-style: normal; font-weight: 700; color: #EAEC5B; opacity: 1; }

/* CTA section – discount codes */
.cta-section {
  position: relative;
  padding: 80px 24px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1583157048761-ac1dba033233?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center 85%;
  background-repeat: no-repeat;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 123, 158, 0.5) 0%, rgba(0, 123, 158, 0.45) 50%, rgba(0, 123, 158, 0.55) 100%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: left;
  max-width: 1100px;
  width: 100%;
}
.cta-title {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  text-align: left;
}
.cta-title br { display: block; }
.btn-cta {
  display: inline-flex;
  background: var(--yellow);
  color: #007B9E;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.1s;
}
.btn-cta:hover { background: var(--yellow-bright); }
.btn-cta .btn-arrow { margin-left: 6px; }

/* FAQ */
.faq-section { background-color: #F7F7F7; }
.faq-section .section-title,
.faq-section .section-text-center { text-align: center; }
.faq-container { max-width: 980px; margin-left: auto; margin-right: auto; }
.accordion { margin-top: 24px; }
.accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.accordion-item summary {
  padding: 18px 20px;
  font-weight: 600;
  color: var(--teal-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: '';
  width: 24px;
  height: 24px;
  background: var(--teal);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
}
.accordion-item[open] summary::after { transform: rotate(180deg); }
.accordion-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid var(--gray-300);
  padding-top: 14px;
  margin-top: 0;
}

/* Footer */
.footer {
  background: var(--teal-dark);
  color: var(--white);
  padding: 64px 24px;
}
.footer-inner { text-align: center; }
.logo-footer { justify-content: center; margin-bottom: 20px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}
.footer-nav a:hover { color: var(--yellow); opacity: 1; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--yellow); color: var(--teal-dark); }
.footer-social-icon {
  width: 20px;
  height: 20px;
  background: currentColor;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.footer-social-icon-fb {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}
.footer-social-icon-insta {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.766 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C8.333.014 7.904 0 7.611 0H12zM5.838 12a6.162 6.162 0 1112.324 0 6.162 6.162 0 01-12.324 0zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.766 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C8.333.014 7.904 0 7.611 0H12zM5.838 12a6.162 6.162 0 1112.324 0 6.162 6.162 0 01-12.324 0zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E");
}
.footer-social-icon-x {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}
.footer-tagline { margin: 0 0 8px; opacity: 0.9; font-size: 0.95rem; }
.footer-copy { margin: 0; font-size: 0.85rem; opacity: 0.8; }

/* Responsive */
@media (max-width: 900px) {
  .section { padding: 64px 24px; }
  .hero { min-height: auto; padding: calc(var(--header-h) + 48px) 24px 48px; }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
  }
  .booking-card { order: -1; max-width: 500px; width: 100%; padding: 24px 20px; }
  .hero-copy { max-width: none; order: 0; }
  .hero-features { flex-wrap: wrap; justify-content: space-between; gap: 16px 24px; margin-top: 0; padding-top: 0; order: 1; max-width: none; width: 100%; }
  .booking-logos { order: 2; }
  .hero-feature { flex: 1 1 0; min-width: 80px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .col-compare { order: -1; max-width: 100%; }
  .compare-card { max-width: 320px; margin: 0 auto; }
  .compare-boxes { grid-template-columns: 1fr; }
  .compare-box-other { border-right: none; border-bottom: 1px solid var(--gray-300); }
  .compare-box { padding: 20px 20px 40px; }
  .why-section { padding-top: 64px; padding-bottom: 64px; }
  .check-list { grid-template-columns: 1fr; max-width: none; }
  .premium-grid { grid-template-columns: 1fr; gap: 40px; }
  .premium-section { padding-top: 64px; padding-bottom: 64px; }
  .steps-list { grid-template-columns: 1fr; }
  .steps-section { padding: 64px 24px; }
  .section-title-light { margin-bottom: 24px; }
  .testimonials-tracks { margin-top: 24px; padding-top: 16px; }
  .testimonials-section { padding-top: 96px; padding-bottom: 96px; }
  .faq-section .section-title { font-size: 1.75rem; }
}

@media (max-width: 640px) {
  .section { padding: 48px 16px; }
  .cta-section { padding: 64px 20px; min-height: 280px; }
  .cta-title { margin-bottom: 24px; }
  .hero { padding: calc(var(--header-h) + 40px) 16px 40px; }
  .hero-title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-features { gap: 12px 16px; }
  .hero-feature-main { font-size: 1.25rem; }
  .booking-card { padding: 20px 16px; margin-left: 0; margin-right: 0; max-width: none; }
  .booking-form select,
  .booking-form input { min-width: 0; }
  .features-bar { padding: 14px 16px 16px; }
  .features-set { gap: 40px; padding: 0 24px; }
  .feature-pill { font-size: 1rem; padding: 10px 18px; }
  .feature-pill-icon { width: 28px; height: 28px; }
  .booking-logos img { max-width: 140px; height: 74px; }
  .booking-logos { gap: 14px; margin-top: -8px; }
  .header-inner { padding-left: 16px; padding-right: 16px; }
  .why-section { padding-top: 48px; padding-bottom: 48px; }
  .compare-card { max-width: none; margin-left: 0; margin-right: 0; }
  .compare-box { padding: 18px 16px 36px; }
  .compare-savings { padding: 14px 16px 18px; font-size: 0.9rem; }
  .stats-section { padding: 24px 16px 32px; }
  .stats-title { font-size: 2.5rem; margin-bottom: 20px; }
  .stats-list { grid-template-columns: 1fr; gap: 32px; }
  .stats-value { font-size: 2.85rem; }
  .steps-section { padding: 48px 16px; }
  .step-image { aspect-ratio: 4 / 3; }
  .testimonials-tracks { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); padding-left: 16px; padding-right: 16px; }
  .testimonials-track .testimonial-card { flex: 0 0 380px; min-width: 380px; }
  .testimonial-card { padding: 24px; min-height: 160px; }
  .testimonials-section { padding-top: 80px; padding-bottom: 80px; }
  .faq-container { padding: 0; }
  .accordion-item summary { padding: 16px 18px; font-size: 0.95rem; }
  .accordion-item p { padding: 12px 18px 16px; }
  .footer { padding: 48px 16px; }
  .section-title { font-size: 1.5rem; margin-bottom: 12px; }
  .faq-section .section-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 40px 12px; }
  .header-inner { padding-left: 12px; padding-right: 12px; }
  .hero { padding: calc(var(--header-h) + 32px) 12px 32px; }
  .booking-card { padding: 18px 14px; }
  .booking-form select,
  .booking-form input { min-width: 0; }
  .booking-logos img { max-width: 120px; height: 66px; }
  .booking-logos { gap: 12px; margin-top: -8px; }
  .logo-icon { height: 56px; }
  .compare-box { padding: 16px 14px 32px; }
  .stats-value { font-size: 2.5rem; }
  .stats-title { font-size: 2.25rem; }
  .steps-section { padding: 40px 12px; }
  .step-heading { font-size: 1.2rem; }
  .steps-cta .btn { width: 100%; }
  .testimonials-track .testimonial-card { flex: 0 0 320px; min-width: 320px; }
  .testimonial-card { padding: 22px; min-height: 150px; }
  .testimonial-text { font-size: 1.1rem; }
}

/* Booking card hours indicator */
.booking-hours {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 0.8rem;
  color: var(--teal-dark);
  background: rgba(0, 123, 158, 0.08);
  border: 1px solid rgba(0, 123, 158, 0.18);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 18px;
  font-weight: 500;
}
.booking-hours-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.25); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0.1); }
}

/* Loyalty / Email Signup Section */
.loyalty-section {
  background: linear-gradient(135deg, #012a38 0%, var(--teal-dark) 50%, #015a72 100%);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.loyalty-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.loyalty-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.loyalty-eyebrow {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.loyalty-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.1;
  margin: 0 0 16px;
}
.loyalty-subtitle {
  font-family: var(--font);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 28px;
}
.loyalty-subtitle strong { color: var(--yellow); }
.loyalty-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loyalty-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.loyalty-perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loyalty-form-wrap {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(8px);
}
.loyalty-form-label {
  display: block;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.loyalty-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.loyalty-form-input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.loyalty-form-input::placeholder { color: var(--gray-500); }
.loyalty-form-input:focus { border-color: var(--yellow); }
.loyalty-form-btn { white-space: nowrap; flex-shrink: 0; }
.loyalty-form-note {
  font-family: var(--font);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.loyalty-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.loyalty-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.loyalty-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
}
.loyalty-badge-label {
  font-family: var(--font);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.loyalty-badge-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 900px) {
  .loyalty-inner { grid-template-columns: 1fr; gap: 40px; }
  .loyalty-form-wrap { padding: 28px 24px; }
}
@media (max-width: 640px) {
  .loyalty-section { padding: 64px 16px; }
  .loyalty-form-row { flex-direction: column; }
  .loyalty-form-btn { width: 100%; justify-content: center; }
  .loyalty-badge-num { font-size: 1.5rem; }
}

/* =====================================================
   SUB-PAGE STYLES
   ===================================================== */

/* Page Hero – used on all sub-pages */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
  padding: calc(var(--header-h) + 72px) 24px 80px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.page-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
}
.page-hero-subtitle {
  font-family: var(--font);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 32px;
}
.page-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  justify-content: center;
}
.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumb-current { color: var(--yellow); font-weight: 500; }

/* ---- Pricing Page ---- */
.pricing-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--teal);
  border-width: 2px;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-type {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text);
  margin: 0 0 6px;
}
.pricing-desc {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  min-height: 40px;
}
.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text);
  line-height: 1;
}
.pricing-price-unit {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-note {
  font-family: var(--font);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pricing-divider {
  height: 1px;
  background: var(--gray-300);
  margin-bottom: 24px;
}
.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
}
.pricing-check {
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-check::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}
.pricing-cross {
  width: 20px;
  height: 20px;
  background: var(--gray-300);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-cross::after {
  content: '×';
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1;
}
.pricing-features-list li.unavailable { color: var(--gray-500); }
.btn-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-pricing-primary {
  background: var(--yellow);
  color: var(--text);
  border: none;
}
.btn-pricing-primary:hover { background: var(--yellow-bright); box-shadow: var(--shadow); }
.btn-pricing-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-pricing-secondary:hover { background: var(--teal); color: #fff; }

/* Rate table */
.rate-table-section { background: var(--gray-100); }
.rate-table-wrap { overflow-x: auto; }
.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font);
  font-size: 0.95rem;
}
.rate-table th {
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
}
.rate-table th:first-child { border-radius: var(--radius) 0 0 0; }
.rate-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.rate-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-300);
  color: var(--text);
}
.rate-table tr:last-child td { border-bottom: none; }
.rate-table tr:nth-child(even) td { background: #f0f0f0; }
.rate-table tr:hover td { background: #e8f4f8; }
.rate-highlight { color: var(--teal); font-weight: 700; }

/* ---- Cruises Page ---- */
.cruise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.cruise-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.cruise-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.cruise-card-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.cruise-card-logo img { max-width: 70px; max-height: 60px; object-fit: contain; }
.cruise-card-body { flex: 1; }
.cruise-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text);
  margin: 0 0 8px;
}
.cruise-card-desc {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.cruise-card--with-image {
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.cruise-card-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  height: 260px;
}
.cruise-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.08);
  transition: transform 0.4s ease;
}
.cruise-card--with-image:hover .cruise-card-image {
  transform: scale(1.14);
}
.cruise-card-logo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cruise-card-logo-badge img {
  max-width: 80px;
  max-height: 36px;
  object-fit: contain;
  display: block;
}
.cruise-card-logo-badge--dark {
  background: #1a1a2e;
}
.cruise-card-logo-badge--dark span {
  color: #c8a96e;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.72rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.cruise-card--with-image .cruise-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cruise-card-terminals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.terminal-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--yellow-pale);
  color: var(--teal-dark);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

/* Feature split (image + copy, alternating) */
.feature-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split-image { grid-column: 1; grid-row: 1; }
.feature-split-copy  { grid-column: 2; grid-row: 1; }
.feature-split--reverse .feature-split-image { grid-column: 2; }
.feature-split--reverse .feature-split-copy  { grid-column: 1; }
.feature-split-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.feature-split-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--yellow);
  border-radius: 100px;
  padding: 4px 14px;
  margin: 0 0 14px;
}
.feature-split-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.2;
}
.feature-split-body {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0 0 28px;
}
.feature-split-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-split-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 1rem;
  font-family: var(--font);
}
.feature-split-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
@media (max-width: 900px) {
  .feature-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-split-image,
  .feature-split-copy,
  .feature-split--reverse .feature-split-image,
  .feature-split--reverse .feature-split-copy { grid-column: 1; grid-row: auto; }
  .feature-split-image img { height: 280px; }
}

/* Terminal guide */
.terminals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.terminal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
  transition: box-shadow 0.2s, transform 0.2s;
}
.terminal-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.terminal-pier {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 4px;
}
.terminal-lines {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- About Page ---- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-story-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--teal);
  transition: box-shadow 0.2s, transform 0.2s;
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { fill: #fff; }
.value-title {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.value-desc {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---- FAQ Page ---- */
.faq-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.faq-cat-btn {
  background: var(--white);
  border: 2px solid var(--gray-300);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.faq-cat-btn:hover,
.faq-cat-btn.is-active {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 123, 158, 0.06);
}
.faq-group { margin-bottom: 48px; }
.faq-group-title {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}

/* ---- Coupons Page ---- */
.coupon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 24px;
  max-width: 880px;
  margin: 0 auto 64px;
  justify-content: center;
}
.coupon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-300);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.coupon-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.coupon-card-header {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 24px;
  position: relative;
}
.coupon-card-header::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 24px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 95% 50%, 90% 0, 85% 50%, 80% 0, 75% 50%, 70% 0, 65% 50%, 60% 0, 55% 50%, 50% 0, 45% 50%, 40% 0, 35% 50%, 30% 0, 25% 50%, 20% 0, 15% 50%, 10% 0, 5% 50%, 0 0);
}
.coupon-discount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.coupon-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.coupon-card-body {
  padding: 36px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.coupon-desc {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.coupon-code-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px dashed var(--teal);
  border-radius: var(--radius);
  overflow: hidden;
}
.coupon-code {
  flex: 1;
  padding: 10px 14px;
  font-family: 'Inter', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal-dark);
  background: var(--yellow-pale);
}
.coupon-copy-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.coupon-copy-btn:hover { background: var(--teal-dark); }
.coupon-expires {
  font-family: var(--font);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.coupon-terms {
  font-family: var(--font);
  font-size: 0.75rem;
  color: var(--gray-500);
  font-style: italic;
}
.coupon-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  counter-reset: coupon-steps;
}
.coupon-step {
  text-align: center;
  counter-increment: coupon-steps;
}
.coupon-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.coupon-step-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.coupon-step-desc {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text);
  margin: 0 0 8px;
}
.contact-form-sub {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-field label {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 123, 158, 0.12);
}
.contact-field textarea {
  resize: vertical;
  min-height: 130px;
}
.btn-contact {
  background: var(--yellow);
  color: var(--text);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-contact:hover { background: var(--yellow-bright); box-shadow: var(--shadow); }
.contact-info-col { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--teal);
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { fill: #fff; width: 22px; height: 22px; }
.contact-info-label {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.contact-info-value {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.contact-info-note {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.contact-info-value a {
  color: var(--text);
  text-decoration: none;
}
.contact-info-value a:hover { color: var(--teal); }
.contact-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin-top: 6px;
}
.contact-hours-row {
  display: contents;
}
.contact-hours-day {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.contact-hours-time {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 600;
}

/* Sub-page inline booking bar */
.booking-bar {
  background: var(--teal-dark);
  padding: 32px 24px;
}
.booking-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.booking-bar-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 160px;
}
.booking-bar-field label {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.booking-bar-field select,
.booking-bar-field input {
  padding: 12px 14px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.booking-bar-field select:focus,
.booking-bar-field input:focus {
  border-color: var(--yellow);
}
.booking-bar-field select option { background: #fff; color: var(--text); }
.booking-bar .btn { white-space: nowrap; padding: 12px 28px; align-self: flex-end; }

/* Success/info banners */
.info-banner {
  background: var(--yellow-pale);
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--teal-dark);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Sub-page responsive */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .terminals-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-img img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .coupon-grid { grid-template-columns: repeat(2, minmax(0, 420px)); }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .cruise-grid { grid-template-columns: 1fr; }
  .cruise-card { flex-direction: column; }
  .terminals-grid { grid-template-columns: repeat(2, 1fr); }
  .coupon-grid { grid-template-columns: 1fr; max-width: 480px; }
  .coupon-steps { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--header-h) + 40px) 16px 56px; }
}
@media (max-width: 640px) {
  .booking-bar-inner { flex-direction: column; align-items: stretch; }
  .booking-bar .btn { width: 100%; justify-content: center; }
  .terminals-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 28px 20px 24px; }
  .coupon-card-header { padding: 20px; }
  .coupon-card-body { padding: 28px 20px 22px; }
}

/* =====================================================
   MOBILE RESPONSIVENESS – ENHANCEMENTS
   ===================================================== */

/* Shrink header height on mobile so hero content starts higher */
@media (max-width: 768px) {
  :root { --header-h: 96px; }
  .header { padding-top: 16px; padding-bottom: 12px; }
  .header.is-scrolled { padding-top: 16px; padding-bottom: 12px; min-height: auto; }
}
@media (max-width: 480px) {
  :root { --header-h: 80px; }
  .header { padding-top: 12px; padding-bottom: 8px; }
  .header.is-scrolled { padding-top: 12px; padding-bottom: 8px; min-height: auto; }
}

/* Add-on services responsive grid (used on rates.html) */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .addons-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* CTA section: center-align text on mobile */
@media (max-width: 640px) {
  .cta-inner { text-align: center; }
  .cta-title { text-align: center; }
}

/* Booking hours pill: allow text to wrap on very small screens */
@media (max-width: 400px) {
  .booking-hours { flex-wrap: wrap; line-height: 1.5; }
}

/* Page hero: reduce bottom padding on small screens */
@media (max-width: 480px) {
  .page-hero { padding-bottom: 44px; }
  .page-hero-cta { flex-direction: column; align-items: center; }
  .page-hero-cta .btn,
  .page-hero-cta .btn-outline-white { width: 100%; text-align: center; justify-content: center; }
}

/* Check-in hours banner (rates page): fix margin-left:auto wrapping on mobile */
@media (max-width: 640px) {
  .rates-checkin-inner { gap: 8px 16px; font-size: 0.8rem; }
  .rates-checkin-link { margin-left: 0 !important; width: 100%; display: block; }
}

/* Loyalty section: extra small screen tweaks */
@media (max-width: 400px) {
  .loyalty-section { padding: 48px 14px; }
  .loyalty-form-wrap { padding: 24px 16px; }
  .loyalty-badge-num { font-size: 1.25rem; }
}

/* Stats section: reduce title size on extra small screens */
@media (max-width: 400px) {
  .stats-title { font-size: 2rem; }
  .stats-value { font-size: 2.25rem; }
}

/* Footer logo on mobile */
@media (max-width: 480px) {
  .logo-footer .logo-icon { width: 100px; height: auto; }
}

/* Coupon grid: ensure single column fits nicely on small screens */
@media (max-width: 480px) {
  .coupon-grid { max-width: none; }
  .coupon-steps { gap: 24px; }
}

/* Contact form: full-width button on mobile */
@media (max-width: 640px) {
  .btn-contact { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 28px 16px; }
}

/* Accordion: better touch targets */
@media (max-width: 640px) {
  .accordion-item summary { min-height: 52px; }
}

/* About values grid: ensure cards don't overflow */
@media (max-width: 480px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 24px 20px; }
}

/* Hero: tighten booking card on very small screens */
@media (max-width: 360px) {
  .booking-card { padding: 16px 12px; }
  .booking-title { font-size: 1.4rem; }
  .hero-feature-main { font-size: 1.1rem; }
  .hero-feature { font-size: 0.8rem; }
}

/* ── Results Page ─────────────────────────────────────────── */

/* Results page: header is normally transparent — hero content showed through it (read as “overlap”). */
body.page-results .header,
body.page-results .header.is-scrolled {
  background: rgba(0, 96, 120, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.results-hero {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--teal-dark) 0%, #004a5c 55%, var(--teal-dark) 100%);
  color: #fff;
  padding-top: 0;
  padding-bottom: 22px;
  padding-left: 0;
  padding-right: 0;
}

/* Fixed header is out of flow; this in-flow block reserves the same vertical space (JS may increase height). */
.results-hero-spacer {
  flex-shrink: 0;
  width: 100%;
  min-height: calc(var(--header-h) + 80px);
  height: calc(var(--header-h) + 80px);
  pointer-events: none;
}

@media (max-width: 600px) {
  .results-hero-spacer {
    min-height: calc(var(--header-h) + 40px);
    height: calc(var(--header-h) + 40px);
  }
}

.page-results .results-hero .container {
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 480px) {
  .page-results .results-hero .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.results-step {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.results-summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.results-summary-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  flex: 1;
  min-width: min(100%, 520px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.results-datum {
  padding: 14px 18px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.results-datum:last-child { border-right: 0; }

.results-datum-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.results-datum-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  word-break: break-word;
}

.results-datum-placeholder {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

@media (max-width: 560px) {
  .results-summary-card {
    grid-template-columns: 1fr;
  }
  .results-datum {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .results-datum:last-child { border-bottom: 0; }
}

/* Inline edit panel */
.edit-search-panel {
  margin-top: 16px;
  animation: edit-panel-in .25s ease;
}

@keyframes edit-panel-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.edit-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  backdrop-filter: blur(8px);
}

.edit-search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 180px;
}

.edit-search-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.edit-search-select {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 10px 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M3 4.5L6 7.5l3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  transition: border-color .15s;
}
.edit-search-select:focus { outline: none; border-color: var(--yellow); }
.edit-search-select:disabled { opacity: .55; cursor: default; }

.edit-search-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.edit-search-submit { white-space: nowrap; }

.edit-search-cancel {
  background: none;
  border: none;
  color: rgba(255,255,255,.75);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 4px;
  transition: color .15s;
}
.edit-search-cancel:hover { color: #fff; }

@media (max-width: 560px) {
  .edit-search-form { flex-direction: column; }
  .edit-search-field { min-width: 0; width: 100%; }
  .edit-search-actions { width: 100%; flex-direction: column; }
  .edit-search-submit { width: 100%; text-align: center; }
}

/* "Edit search" toggle active state */
.results-edit-link.is-active {
  background: rgba(234,236,91,.15);
  border-color: rgba(234,236,91,.65);
}

.results-edit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  color: var(--yellow);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(234, 236, 91, 0.45);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.results-edit-link:hover {
  background: rgba(234, 236, 91, 0.12);
  border-color: rgba(234, 236, 91, 0.65);
}
.results-edit-link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.results-edit-icon {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 2px solid currentColor;
  position: relative;
  opacity: 0.95;
}
.results-edit-icon::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 8px;
  height: 8px;
  background: var(--teal-dark);
  border: 2px solid currentColor;
  border-radius: 2px;
  transform: rotate(-12deg);
}

.results-section {
  padding: 28px 0 56px;
  background: linear-gradient(180deg, var(--gray-100) 0%, #ececec 100%);
}

.results-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.results-head-text {
  max-width: 640px;
}

.results-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.results-subtitle {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow);
}

.results-count {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

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

.results-sort-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.results-sort-select {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--gray-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M3 4.5L6 7.5l3-3'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 12px;
  appearance: none;
  cursor: pointer;
  min-width: 200px;
}
.results-sort-select:hover {
  border-color: var(--teal-light);
}
.results-sort-select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.results-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Lot card */
.lot-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.lot-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(0, 123, 158, 0.15);
}

.lot-card-photo-wrap {
  position: relative;
  overflow: hidden;
  width: 340px;
  flex-shrink: 0;
  min-height: 200px;
}

.lot-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.lot-card:hover .lot-card-photo {
  transform: scale(1.03);
}

.lot-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.lot-card-badge--covered {
  background: var(--teal);
  color: #fff;
}
.lot-card-badge--open {
  background: var(--yellow);
  color: var(--green-dark);
}

.lot-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--green-savings);
  color: #fff;
  box-shadow: 0 2px 8px rgba(13, 122, 58, 0.35);
}

.lot-card-body {
  padding: 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  min-width: 0;
}

.lot-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.lot-card-name-group {
  flex: 1;
  min-width: 0;
}

.lot-card-location {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-bottom: 10px;
}

.lot-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}

.lot-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text);
  margin: 0 0 4px;
  line-height: 1.25;
}

.lot-card-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

.lot-card-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.lot-card-address-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23757575'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.lot-card-perks {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lot-card-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
}

.lot-card-perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: rgba(0, 123, 158, 0.1);
  background-repeat: no-repeat;
  background-position: center;
}
.lot-card-perk-shuttle {
  background-image: url("https://ik.imagekit.io/primo/Lighthouse/free-shuttle.png?updatedAt=1771422837025");
  background-size: 14px;
}
.lot-card-perk-secure {
  background-image: url("https://ik.imagekit.io/primo/Lighthouse/secured-parking.png?updatedAt=1771422836928");
  background-size: 14px;
}
.lot-card-perk-mail {
  background-image: url("https://ik.imagekit.io/primo/Lighthouse/step-3.png?updatedAt=1771422837524");
  background-size: 14px;
}
.lot-card-perk-walk {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007b9e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='4' r='1.5'/%3E%3Cpath d='M9 9l1.5 4.5L8 18'/%3E%3Cpath d='M15 9l-1.5 4.5L16 18'/%3E%3Cpath d='M9 9h6'/%3E%3C/svg%3E");
  background-size: 14px;
}

.lot-card-maplink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  line-height: 1.45;
  border-radius: var(--radius);
  white-space: nowrap;
}
.lot-card-maplink:hover {
  text-decoration: underline;
}
.lot-card-maplink:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.lot-card-maplink-arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath stroke='%23007B9E' stroke-width='1.5' d='M6 3h7v7M13 3L3 13'/%3E%3C/svg%3E") center / contain no-repeat;
}

.lot-card-price-panel {
  flex-shrink: 0;
  text-align: right;
}

.lot-card-price-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}

.lot-card-total {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lot-card-total-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.lot-card-qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lot-card-qty-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lot-card-qty-stepper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--gray-300, #d1d5db);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}

.qty-btn:hover:not(:disabled) {
  border-color: var(--teal-dark);
  color: var(--teal-dark);
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-display {
  font-size: 1rem;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
  color: var(--text);
}

.lot-card-rate-single {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.lot-card-rate-unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.lot-card-btn {
  margin-top: 0;
  flex: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lot-card-btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.lot-card-btn-label {
  flex: 0 1 auto;
}

/* Sold-out state */
.lot-card--sold-out {
  opacity: 0.65;
  filter: grayscale(0.3);
}
.lot-card--sold-out:hover {
  transform: none;
  box-shadow: var(--shadow);
}
.lot-card-btn--sold {
  background: var(--gray-300);
  color: var(--gray-500);
  cursor: not-allowed;
  pointer-events: none;
}

/* Availability badge (overlaid on photo) */
.lot-card-avail {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.lot-card-avail--sold {
  background: var(--red);
  color: #fff;
}
.lot-card-avail--low {
  background: #f97316;
  color: #fff;
}

/* ── Checkout info modal ───────────────────────────────────── */

.co-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.co-overlay.is-open { opacity: 1; pointer-events: auto; }

.co-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.co-modal.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.co-modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--gray-300);
  flex-shrink: 0;
  position: relative;
}
.co-modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 4px;
  color: var(--text);
}
.co-modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.co-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gray-500);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.co-modal-close:hover { background: var(--gray-100); color: var(--text); }

.co-form {
  padding: 20px 24px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.co-row {
  display: flex;
  gap: 12px;
}
.co-row .co-field { flex: 1; }
.co-field--grow { flex: 2; }
.co-field--shrink { flex: 1; min-width: 60px; }

.co-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.co-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .03em;
}
.co-label span { color: var(--red); }

.co-input {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 10px 12px;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  box-sizing: border-box;
}
.co-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,123,158,.12);
}
.co-input:invalid:not(:placeholder-shown) {
  border-color: var(--red);
}

.co-submit {
  width: 100%;
  text-align: center;
  margin-top: 4px;
}

.co-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  margin: 0;
}

@media (max-width: 480px) {
  .co-row { flex-direction: column; }
  .co-field--shrink { min-width: 0; }
}

/* ── (cart removed) ───────────────────────────────────────── */
/* Photo carousel */
.lot-card-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.lot-card-carousel .lot-card-photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}
.lot-card-carousel .lot-card-photo.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lot-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 2;
}
.lot-card-photo-wrap:hover .lot-carousel-btn { opacity: 1; }
.lot-carousel-btn:hover { background: rgba(0, 0, 0, 0.7); }
.lot-carousel-prev { left: 10px; }
.lot-carousel-next { right: 10px; }

.lot-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.lot-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lot-carousel-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

/* Loading skeleton */
.lot-card-loading { pointer-events: none; }

.lot-card-photo-skeleton {
  width: 340px;
  flex-shrink: 0;
  min-height: 200px;
  background: linear-gradient(90deg, var(--gray-300) 25%, #ebebeb 50%, var(--gray-300) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
}

.lot-card-loading .lot-card-body {
  padding: 20px 22px 24px;
  gap: 10px;
}

.skeleton-line {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gray-300) 25%, #ebebeb 50%, var(--gray-300) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
}
.skeleton-line-wide { width: 70%; }
.skeleton-line-mid { width: 50%; }
.skeleton-line-narrow { width: 35%; }

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 600px) {
  .lot-card { flex-direction: column; }
  .lot-card-photo-wrap { width: 100%; min-height: unset; aspect-ratio: 16 / 9; }
  .lot-card-photo-skeleton { width: 100%; min-height: unset; aspect-ratio: 16 / 9; }
  .lot-card-body { padding: 16px 16px 18px; }
  .lot-card-header { gap: 10px; }
  .lot-card-price-panel { text-align: right; flex-shrink: 0; }
  .lot-card-price-main { align-items: flex-end; }
  .lot-card-total { font-size: 1.45rem; }
  .lot-card-footer { flex-wrap: wrap; }
  .lot-card-btn { flex: none; width: 100%; }
  .results-section { padding: 20px 0 40px; }
  .results-section .container { padding-left: 14px; padding-right: 14px; }
}

@media (max-width: 400px) {
  .lot-card-body { padding: 14px 14px 16px; }
  .lot-card-header { flex-direction: column; gap: 2px; }
  .lot-card-price-panel { text-align: left; }
  .lot-card-price-main { align-items: flex-start; }
}

@media (max-width: 520px) {
  .results-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 14px;
  }
  .results-sort { justify-content: space-between; }
  .results-sort-select { min-width: 0; flex: 1; }
  .results-count { font-size: 0.875rem; }
}

@media (prefers-reduced-motion: reduce) {
  .lot-card-photo-skeleton,
  .skeleton-line {
    animation: none;
    background: var(--gray-300);
  }
  .lot-card,
  .lot-card-photo {
    transition: none;
  }
  .lot-card:hover {
    transform: none;
  }
  .lot-card:hover .lot-card-photo {
    transform: none;
  }
}

/* Error / empty */
.results-error {
  color: var(--red);
  font-size: 0.95rem;
  margin-top: 20px;
  padding: 16px 18px;
  background: #fff5f5;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 48, 48, 0.2);
  max-width: 520px;
}
.results-error a {
  color: var(--teal);
  font-weight: 600;
}

.results-empty {
  margin-top: 20px;
  padding: 18px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300);
  max-width: 520px;
}
.results-empty a {
  color: var(--teal);
  font-weight: 600;
}

/* Trust bar */
.results-trust {
  background: #fff;
  border-top: 1px solid var(--gray-300);
  padding: 24px 0;
}

.results-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 48px);
  flex-wrap: wrap;
}

.results-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}

.results-trust-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: no-repeat center / contain;
  flex-shrink: 0;
}
.results-trust-icon-shuttle {
  background-image: url("https://ik.imagekit.io/primo/Lighthouse/free-shuttle.png?updatedAt=1771422837025");
}
.results-trust-icon-secure {
  background-image: url("https://ik.imagekit.io/primo/Lighthouse/secured-parking.png?updatedAt=1771422836928");
}
.results-trust-icon-confirm {
  background-image: url("https://ik.imagekit.io/primo/Lighthouse/step-3.png?updatedAt=1771422837524");
}

/* ── Reserve page (reserve.html) ─────────────────────────── */

.page-reserve {
  background: var(--gray-50, #f8f9fa);
  min-height: 100vh;
}

.reserve-header {
  background: rgba(0, 96, 120, 0.98);
  border-bottom: 1px solid var(--teal-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.reserve-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.reserve-header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.reserve-header-phone:hover { color: var(--yellow); }

.reserve-main {
  padding: 48px 0 72px;
}

.reserve-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

/* Steps indicator */
.reserve-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.reserve-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-400);
}

.reserve-step--active {
  color: var(--teal);
}

.reserve-step--done {
  color: var(--green-dark, #276749);
}

.reserve-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--gray-200);
  color: var(--gray-500);
  flex-shrink: 0;
}

.reserve-step--active .reserve-step-num {
  background: var(--teal);
  color: #fff;
}

.reserve-step--done .reserve-step-num {
  background: var(--green-dark, #276749);
  color: #fff;
}

.reserve-step-divider {
  flex: 1;
  height: 1px;
  background: var(--gray-300);
  margin: 0 8px;
  min-width: 20px;
}

/* Spot summary card */
.reserve-spot-card {
  background: #fff;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: sticky;
  top: 80px;
}

.reserve-spot-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.reserve-spot-badge--covered {
  background: #e8f4f8;
  color: var(--teal-dark);
}
.reserve-spot-badge--open {
  background: #fef9e7;
  color: #7a6200;
}

.reserve-spot-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}

.reserve-spot-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.reserve-spot-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 16px 0;
}

.reserve-spot-detail {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.reserve-spot-detail-label {
  color: var(--text-muted);
  flex-shrink: 0;
}

.reserve-spot-detail-value {
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.reserve-spot-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.reserve-spot-total-label-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.reserve-spot-total {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
}

.reserve-spot-total-values {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.reserve-spot-original {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  display: none;
}

.reserve-coupon-wrap {
  margin-top: 14px;
}

.reserve-coupon-row {
  display: flex;
  gap: 8px;
}

.reserve-coupon-input {
  flex: 1;
  font-size: 0.875rem;
  padding: 8px 12px;
  border: 1.5px solid var(--gray-300, #d1d5db);
  border-radius: 6px;
  outline: none;
  font-family: inherit;
}

.reserve-coupon-input:focus {
  border-color: var(--teal-dark);
}

.reserve-coupon-btn {
  background: var(--teal-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.reserve-coupon-btn:hover { opacity: 0.9; }
.reserve-coupon-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.reserve-coupon-msg {
  margin: 6px 0 0;
  font-size: 0.8rem;
  min-height: 1em;
}

.reserve-coupon-msg--success { color: #16a34a; }
.reserve-coupon-msg--error   { color: #dc2626; }

.reserve-spot-perks {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.reserve-spot-perks li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.reserve-back-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}
.reserve-back-link:hover { text-decoration: underline; }

/* Form section */
.reserve-form-section {
  background: #fff;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.reserve-form-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}

.reserve-form-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 28px;
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reserve-form-row {
  display: flex;
  gap: 12px;
}
.reserve-form-row .co-field { flex: 1; }
.reserve-form-row .co-field--shrink { flex: 0 0 80px; }
.reserve-form-row .co-field--grow { flex: 2; }

.reserve-form-submit {
  width: 100%;
  text-align: center;
  margin-top: 8px;
  font-size: 1rem;
  padding: 16px;
}

.co-required { color: var(--red, #c53030); }

@media (max-width: 900px) {
  .reserve-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .reserve-spot-card {
    position: static;
  }
}

@media (max-width: 540px) {
  .reserve-form-section {
    padding: 24px 16px;
  }
  .reserve-form-row {
    flex-direction: column;
  }
  .reserve-form-row .co-field--shrink { flex: 1; }
}

/* =====================================================
   MOBILE RESPONSIVENESS – COMPREHENSIVE FIXES
   ===================================================== */

/* Feature pills carousel – smaller gap, font, padding on mobile */
@media (max-width: 768px) {
  .features-set { gap: 40px; padding: 0 24px; }
  .feature-pill { font-size: 1.05rem; padding: 10px 20px; }
  .feature-pill-icon { width: 28px; height: 28px; }
}
@media (max-width: 480px) {
  .features-set { gap: 24px; padding: 0 16px; }
  .feature-pill { font-size: 0.9rem; padding: 8px 14px; }
  .feature-pill-icon { width: 24px; height: 24px; }
}

/* Rate table – reduce cell padding on mobile */
@media (max-width: 640px) {
  .rate-table th,
  .rate-table td { padding: 10px 12px; font-size: 0.875rem; }
}
@media (max-width: 480px) {
  .rate-table th,
  .rate-table td { padding: 8px 10px; font-size: 0.8rem; }
}

/* Terminals grid – single column on small screens */
@media (max-width: 480px) {
  .terminals-grid { grid-template-columns: 1fr; }
}

/* Results toolbar – stack on mobile, fix sort select width */
@media (max-width: 640px) {
  .results-toolbar { flex-direction: column; align-items: stretch; gap: 10px; }
  .results-sort { flex-direction: column; align-items: stretch; gap: 6px; }
  .results-sort-select { min-width: 0; width: 100%; }
}

/* Cruise card – tighter on mobile */
@media (max-width: 480px) {
  .cruise-card { padding: 24px 20px; gap: 16px; }
  .cruise-card-logo { width: 56px; height: 56px; }
  .cruise-card-logo img { max-width: 48px; max-height: 42px; }
  .cruise-card-image-wrap { height: 200px; }
  .cruise-card-image { transform: scale(1.08); }
  .cruise-card--with-image .cruise-card-body { padding: 20px; }
}

/* About story image – shorter on very small screens */
@media (max-width: 480px) {
  .about-story-img img { height: 240px; }
  .about-story-grid { gap: 28px; }
}

/* Pricing grid – full width on extra small, remove max-width constraint */
@media (max-width: 400px) {
  .pricing-grid { max-width: none; }
  .pricing-card { padding: 24px 16px 20px; }
}

/* Reserve page – tighter header on mobile */
@media (max-width: 480px) {
  .reserve-header-inner { padding-top: 10px; padding-bottom: 10px; }
  .reserve-main { padding: 24px 0 48px; }
}
@media (max-width: 360px) {
  .reserve-form-section { padding: 20px 12px; }
}

/* Coupon card body – tighter padding on small screens */
@media (max-width: 480px) {
  .coupon-card-body { padding: 28px 16px 20px; }
}

/* Page hero – smaller title on very small screens */
@media (max-width: 360px) {
  .page-hero { padding-left: 12px; padding-right: 12px; }
}

/* General section container padding on very small screens */
@media (max-width: 360px) {
  .section { padding: 32px 12px; }
  .booking-bar { padding: 24px 12px; }
}

/* ── Reserve drawer ────────────────────────────────────────── */

.rd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.rd-overlay.is-open { opacity: 1; pointer-events: auto; }

.rd-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(480px, 100vw);
  background: #fff;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 40px rgba(0,0,0,.2);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.rd-panel.is-open { transform: translateX(0); visibility: visible; }

@media (max-width: 540px) {
  .rd-panel {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 92dvh;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,.18);
    transform: translateY(100%);
  }
  .rd-panel.is-open { transform: translateY(0); }
  .rd-panel::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--gray-300);
    border-radius: 2px;
    margin: 10px auto 0;
    flex-shrink: 0;
  }
  .rd-header { padding: 12px 18px 14px; }
  .rd-body { padding: 16px 18px 32px; }
}

.rd-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--gray-300);
  flex-shrink: 0;
}
.rd-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 3px;
  color: var(--text);
}
.rd-subtitle { font-size: .82rem; color: var(--text-muted); margin: 0; }

.rd-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gray-500);
  cursor: pointer;
  padding: 2px 8px;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
  flex-shrink: 0;
  margin-left: 8px;
}
.rd-close:hover { background: var(--gray-100); color: var(--text); }

.rd-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-300);
  flex-shrink: 0;
}
.rd-summary-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}
.rd-summary-badge--covered { background: #e0f2fe; color: #0369a1; }
.rd-summary-badge--open    { background: #dcfce7; color: #15803d; }

.rd-summary-info { flex: 1; min-width: 0; }
.rd-summary-name { display: block; font-size: .9rem; font-weight: 700; color: var(--text); }
.rd-summary-meta { display: block; font-size: .78rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rd-summary-price { font-size: 1.05rem; font-weight: 700; color: var(--text); flex-shrink: 0; }

.rd-body {
  overflow-y: auto;
  flex: 1;
  padding: 20px;
}
.rd-body form { display: flex; flex-direction: column; gap: 14px; }
.rd-submit { width: 100%; text-align: center; margin-top: 0; }

/* Constant Contact form hidden off-screen; still renders and submits in background */
.ctct-form-offscreen {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

/* Hide reCAPTCHA badge injected by Constant Contact's form widget */
.grecaptcha-badge {
  visibility: hidden !important;
  pointer-events: none !important;
}
