/* Global styles */
:root {
  --primary: #00bcd4;
  --primary-dark: #008ba3;
  --accent: #ffca28;
  --accent-dark: #ffb300;
  --bg: #021019;
  --bg-light: #031e2d;
  --text: #f5f9ff;
  --muted: #9fb3c8;
  --danger: #ff5252;
  --success: #4caf50;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --transition-fast: 0.2s ease-out;
  --transition-med: 0.35s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Poppins", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #04314e 0, #01070c 40%, #000 100%);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

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

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

main {
  min-height: calc(100vh - 200px);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Background animated waves */
.bg-waves {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 188, 212, 0.18), transparent 55%),
    radial-gradient(circle at 100% 20%, rgba(255, 202, 40, 0.18), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(0, 188, 212, 0.12), transparent 60%);
  opacity: 0.65;
  pointer-events: none;
  z-index: -2;
}

.bg-waves::before,
.bg-waves::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 60%);
  animation: waveDrift 36s linear infinite alternate;
  mix-blend-mode: screen;
}

.bg-waves::after {
  animation-duration: 54s;
  animation-direction: alternate-reverse;
}

@keyframes waveDrift {
  0% {
    transform: translate3d(-6%, -4%, 0) scale(1.05);
  }
  50% {
    transform: translate3d(4%, 2%, 0) scale(1.1);
  }
  100% {
    transform: translate3d(-3%, 4%, 0) scale(1.02);
  }
}

/* Glass card utility */
.glass {
  background: linear-gradient(135deg, rgba(3, 33, 52, 0.9), rgba(3, 46, 74, 0.92));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, #ffecb3 35%, #00bcd4 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00121c;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.4),
    transparent 20%,
    rgba(0, 188, 212, 0.4),
    transparent 60%,
    rgba(255, 202, 40, 0.5),
    rgba(255, 255, 255, 0.4)
  );
  mix-blend-mode: screen;
  opacity: 0.25;
  animation: spinHalo 18s linear infinite;
}

@keyframes spinHalo {
  to {
    transform: rotate(360deg);
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #e0f7fa;
}

.brand-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 999px;
  transition: width var(--transition-med);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #e3f2fd;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast),
    color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #202020;
  box-shadow: 0 12px 25px rgba(255, 202, 40, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(255, 202, 40, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.23);
}

.btn-outline:hover {
  background: rgba(0, 188, 212, 0.16);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(3, 46, 74, 0.9);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.23s ease-out, opacity 0.2s ease-out;
}

.nav-toggle span::before {
  transform: translateY(-4px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.nav-toggle.is-open span {
  transform: rotate(45deg);
}

.nav-toggle.is-open span::before {
  transform: rotate(-90deg);
}

.nav-toggle.is-open span::after {
  opacity: 0;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 64px 1.25rem auto 1.25rem;
    padding: 1.2rem 1.2rem 1.4rem;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(3, 22, 36, 0.96);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    transform-origin: top center;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    margin: 0;
  }

  .nav-links.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.22s ease-out, transform 0.22s ease-out;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* Hero section (home): full-screen video + left copy + pick your pace + splash */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

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

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 100vh;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  margin-right: auto;
  margin-left: max(1.25rem, 5vw);
  padding-right: 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 420px;
  gap: 1.8rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem 0.35rem;
  border-radius: 999px;
  background: rgba(0, 188, 212, 0.18);
  border: 1px solid rgba(0, 188, 212, 0.45);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b2ebf2;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00e676;
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.9);
}

.hero-title {
  font-size: clamp(2.4rem, 3.3vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, var(--accent), #fff, var(--primary));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 30rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-copy {
  transform: translateY(calc(var(--hero-scroll) * -40px));
  opacity: calc(1 - var(--hero-scroll) * 0.65);
  transition: opacity 0.15s linear, transform 0.15s linear;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-meta strong {
  color: #e3f2fd;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(3, 33, 52, 0.7);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero-pill span {
  color: #fff59d;
}

/* Hero bottom: Pick your pace + scroll arrow + offerings (over video) */
.hero-pick-pace {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
}

.hero-pick-pace-label {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* Splash panel: appears on hover, slowly reveals and stays transparent */
.hero-offer-splash {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(2, 20, 32, 0.38), rgba(3, 35, 55, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transform-origin: bottom center;
  max-height: 0;
  opacity: 0;
  padding: 0 1.25rem;
  margin: 0;
  border-width: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.25s ease, margin 0.25s ease, border-width 0.15s ease, visibility 0s linear 0.3s;
}

.hero-offer-splash.is-visible {
  max-height: 220px;
  opacity: 1;
  padding: 1rem 1.25rem 1.25rem;
  border-width: 1px;
  margin-bottom: 0.25rem;
  visibility: visible;
  transition: visibility 0s;
  animation: splashUp 1s ease-out forwards;
}

.hero-offer-splash.is-visible .hero-splash-btn {
  animation: splashBtnIn 0.5s ease-out 0.4s both;
}

.hero-splash-inner {
  opacity: 1;
  min-height: 80px;
}

.hero-splash-title {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.hero-splash-desc {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.hero-splash-btn {
  display: inline-block;
  animation: splashBtnIn 0.4s ease-out 0.2s both;
}

@keyframes splashUp {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes splashBtnIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-offerings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.hero-offer-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.hero-offer-pill:hover {
  background: rgba(0, 188, 212, 0.5);
  border-color: rgba(0, 188, 212, 0.8);
  transform: translateY(-2px);
}

.hero-offer-pill.is-active {
  background: rgba(0, 188, 212, 0.45);
  border-color: rgba(0, 188, 212, 0.9);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.35);
}

.hero-scroll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 202, 56, 0.95);
  color: #1a1a1a;
  box-shadow: 0 8px 28px rgba(255, 202, 56, 0.5);
  animation: bounceArrow 1.8s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-scroll-arrow:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(255, 202, 56, 0.7);
}

.hero-scroll-arrow svg {
  width: 28px;
  height: 28px;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.hero-pick-pace-tagline {
  margin: 0.5rem 0 0;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  width: 100%;
  animation: taglineReveal 1.2s ease-out 0.4s both;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

@keyframes taglineReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .hero-pick-pace {
    bottom: 1.25rem;
  }

  .hero-pick-pace-label {
    font-size: 1.1rem;
  }

  .hero-pick-pace-tagline {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .hero-offer-splash {
    max-width: 100%;
    padding: 0.85rem 1rem 1rem;
  }

  .hero-splash-title {
    font-size: 1rem;
  }

  .hero-splash-desc {
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
  }

  .hero-offer-pill {
    padding: 0.4rem 0.85rem;
    font-size: 0.72rem;
  }
}

.video-shell {
  display: none;
}

.video-frame {
  /* unused after hero redesign – kept for backward compatibility */
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.28), transparent 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(1, 11, 17, 0.9));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.video-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e0f2f1;
}

.video-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff5252;
  box-shadow: 0 0 12px rgba(255, 82, 82, 0.85);
}

.floating-chip {
  position: absolute;
  right: -10px;
  top: 14%;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  background: rgba(3, 33, 52, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
  max-width: 11rem;
}

.floating-chip-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.floating-chip-stars {
  color: #ffeb3b;
  font-size: 0.7rem;
}

.floating-pills {
  position: absolute;
  right: -4px;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.floating-pill {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.68rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .video-shell {
    order: -1;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }
}

/* Utility sections & titles */
.section {
  padding: 3.5rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.5rem;
  margin: 0;
}

.section-subtitle {
  max-width: 22rem;
  font-size: 0.86rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Feature cards (home) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-card {
  position: relative;
  padding: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(3, 33, 52, 0.95), rgba(3, 46, 74, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med),
    background var(--transition-med);
}

.feature-card-img {
  height: 140px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -1px -1px 0 -1px;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

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

.feature-card > .feature-icon,
.feature-card > .feature-title,
.feature-card > .feature-text,
.feature-card > .feature-tag {
  padding-left: 1rem;
  padding-right: 1rem;
}

.feature-card > .feature-icon {
  margin-top: 1rem;
}

.feature-card > .feature-tag {
  padding-bottom: 1.2rem;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.22), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease-out, transform 0.5s ease-out;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9);
  border-color: rgba(0, 188, 212, 0.6);
  background: linear-gradient(145deg, rgba(3, 33, 52, 1), rgba(3, 46, 74, 1));
}

.feature-card:hover::before {
  opacity: 1;
  transform: translate3d(8%, 8%, 0);
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--accent), var(--accent-dark));
  color: #202020;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.feature-title {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.feature-text {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.feature-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b3e5fc;
}

@media (max-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Booking page */
.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero-title {
  font-size: 1.9rem;
  margin: 0 0 0.25rem;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 3.5rem;
}

.card {
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem 1.7rem;
  background: linear-gradient(145deg, rgba(3, 22, 36, 0.96), rgba(3, 33, 52, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.card-title {
  margin: 0;
  font-size: 1.05rem;
}

.card-subtitle {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 188, 212, 0.13);
  border: 1px solid rgba(0, 188, 212, 0.55);
  font-size: 0.7rem;
  color: #b2ebf2;
}

/* Availability calendar */
.calendar-card {
  max-width: 560px;
  margin: 0 auto;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.calendar-nav {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.calendar-nav:hover {
  background: rgba(0, 188, 212, 0.2);
  border-color: rgba(0, 188, 212, 0.5);
}

.calendar-legend {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.cal-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.cal-dot-available {
  background: var(--success);
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.cal-dot-booked {
  background: var(--muted);
  opacity: 0.8;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 1rem;
}

.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
}

.cal-head {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  aspect-ratio: auto;
  padding: 0.25rem 0;
}

.cal-empty {
  visibility: hidden;
}

.cal-day {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cal-day.cal-past {
  color: var(--muted);
  opacity: 0.5;
  cursor: default;
}

.cal-day.cal-booked {
  background: rgba(159, 179, 200, 0.15);
  color: var(--muted);
  cursor: not-allowed;
}

.cal-day.cal-available {
  background: rgba(76, 175, 80, 0.25);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #a5d6a7;
}

a.cal-day.cal-available:hover {
  background: rgba(76, 175, 80, 0.4);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.calendar-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Booking page inline calendar */
.booking-calendar {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.booking-calendar-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.booking-calendar .calendar-legend {
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
}

.booking-calendar .calendar-grid {
  gap: 3px;
  margin-bottom: 0;
}

.booking-calendar .cal-cell {
  aspect-ratio: 1;
  font-size: 0.8rem;
  min-width: 0;
}

.booking-calendar .cal-day.cal-booked {
  background: rgba(159, 179, 200, 0.2);
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.9;
}

.booking-calendar .cal-day.cal-selected {
  background: rgba(0, 188, 212, 0.4);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.5);
}

form {
  display: grid;
  gap: 0.9rem;
}

/* Booking form: sectioned, professional layout */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
}

.booking-form-section {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-form-section:last-of-type {
  border-bottom: none;
}

.booking-form-section-title {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.booking-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

.booking-form-section .booking-calendar {
  margin-top: 0.25rem;
}

.booking-form-section .weather-forecast {
  margin-top: 0;
}

/* Group size: one row, two fields side by side; no extra space */
#booking-activity-options .field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 0;
  align-items: start;
}

#booking-activity-options .field-row[hidden] {
  display: none !important;
}

/* Boat-only row: "max 5" and boat guest fields only when boat activity is selected */
#booking-activity-options .booking-option-boat {
  display: none !important;
}
#booking-activity-options.activity-boat .booking-option-boat {
  display: flex !important;
}

#booking-activity-options .field {
  min-width: 0;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  min-height: 2.6rem;
  box-sizing: border-box;
}

.booking-form textarea {
  min-height: 72px;
}

.booking-form .price-row,
.booking-form .waiver-block {
  margin: 0;
  padding-top: 1rem;
}

.field {
  display: grid;
  gap: 0.3rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.55);
  color: var(--text);
  font-size: 0.84rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(0, 188, 212, 0.5);
  background: rgba(3, 33, 52, 0.95);
}

input::placeholder,
textarea::placeholder {
  color: rgba(177, 196, 214, 0.7);
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.help-text {
  font-size: 0.7rem;
  color: var(--muted);
}

.field-error {
  font-size: 0.78rem;
  color: var(--danger);
  margin: 0.35rem 0 0;
  display: none;
}

.field-error.is-visible {
  display: block;
}

.field-error a {
  color: var(--accent);
  text-decoration: underline;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.82rem;
}

.price-main {
  font-size: 1.2rem;
  font-weight: 600;
}

.price-note {
  color: var(--muted);
}

/* Waiver block on booking page */
.waiver-block {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.waiver-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.waiver-scroll {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}

.waiver-scroll p {
  margin: 0 0 0.6rem;
}

.waiver-scroll p:last-child {
  margin-bottom: 0;
}

.waiver-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.waiver-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text);
}

.waiver-checkbox {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.waiver-confirm-msg {
  margin: 0;
  font-size: 0.85rem;
  color: var(--success);
  display: none;
}

.waiver-confirm-msg[aria-hidden="false"],
.waiver-confirm-msg:not([hidden]) {
  display: block;
}

/* Payment page */
.payment-hero .section-subtitle a {
  color: var(--primary);
}

.payment-message {
  text-align: center;
  padding: 2rem;
}

.payment-message a {
  color: var(--primary);
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: start;
}

.payment-summary-card {
  position: sticky;
  top: 6rem;
}

.payment-summary-list .summary-item {
  margin-bottom: 0.5rem;
}

.payment-total-row {
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.payment-options-title {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.payment-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, rgba(3, 28, 45, 0.9), rgba(4, 38, 58, 0.9));
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 140px;
}

.payment-option:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 188, 212, 0.5);
  box-shadow: 0 12px 32px rgba(0, 188, 212, 0.2);
}

.payment-option-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.payment-option-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.payment-option-desc {
  font-size: 0.8rem;
  color: var(--muted);
}

.payment-option-inperson {
  cursor: default;
}

.payment-option-phone {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(0, 188, 212, 0.25);
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.payment-option-phone:hover {
  background: rgba(0, 188, 212, 0.4);
}

.payment-confirm-block {
  padding: 1.5rem;
}

.payment-confirm-text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.payment-confirm-status {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  min-height: 1.4em;
  color: var(--muted);
}

.btn-confirm-booking {
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

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

  .payment-options-grid {
    grid-template-columns: 1fr;
  }
}

.badge-soft {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(76, 175, 80, 0.18);
  color: #c8e6c9;
  font-size: 0.68rem;
}

.summary-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.summary-item {
  display: flex;
  justify-content: space-between;
}

.summary-item strong {
  color: #e3f2fd;
}

.divider {
  border: 0;
  border-bottom: 1px dashed rgba(158, 185, 210, 0.4);
  margin: 0.6rem 0 0.8rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 1.7fr);
  gap: 1rem;
}

.card-icons {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.card-icon {
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(255, 255, 255, 0.08);
  color: #e3f2fd;
}

.payment-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.secure-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.68rem;
  color: #a5d6a7;
}

.secure-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4caf50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.85);
}

.status-toast {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(3, 33, 52, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.75);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  z-index: 50;
}

.status-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.status-dot--success {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.9);
}

.status-dot--error {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--danger);
  box-shadow: 0 0 10px rgba(255, 82, 82, 0.9);
}

@media (max-width: 960px) {
  .page-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .payment-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Gallery / What we provide */
.gallery-hero {
  padding: 3.3rem 0 1.5rem;
}

.dive-title {
  font-size: 2rem;
  margin: 0.3rem 0 0.6rem;
}

.dive-text {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 30rem;
}

.dive-animated-text {
  display: inline-block;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: pre;
  margin-top: 0.8rem;
  color: #e0f7fa;
}

.dive-animated-text span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  min-height: 180px;
  background: radial-gradient(circle at 50% 0, #006064, #000);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.8s ease-out, filter 0.8s ease-out;
}

.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #e3f2fd;
}

.gallery-item:hover img {
  transform: scale(1.15);
  filter: saturate(1.3) brightness(1.08);
}

.gallery-strip {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.gallery-strip-pill {
  flex: 1;
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  background: rgba(3, 33, 52, 0.95);
  font-size: 0.78rem;
  color: var(--muted);
}

.gallery-strip-pill strong {
  color: #e3f2fd;
}

.gallery-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.gallery-link:hover .gallery-item {
  box-shadow: 0 20px 50px rgba(0, 188, 212, 0.35);
}

/* Tour / service detail page (single-out) */
.tour-detail-hero {
  position: relative;
  padding: 2rem 0 2.5rem;
}

.tour-detail-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.tour-detail-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}

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

.tour-detail-heading {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}

.tour-detail-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.tour-detail-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.tour-detail-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.tour-detail-cta .btn {
  margin-top: 0.25rem;
}

.tour-detail-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .tour-detail-hero .container {
    grid-template-columns: minmax(0, 1fr);
  }

  .tour-detail-image {
    max-height: 280px;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dive-title {
    font-size: 1.7rem;
  }

  .dive-animated-text {
    font-size: 1.2rem;
  }
}

/* Rates */
.rate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.rate-card {
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(3, 22, 36, 0.98), rgba(3, 33, 52, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.75);
}

.rate-card-img {
  height: 120px;
  overflow: hidden;
  margin: -1px -1px 0 -1px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.rate-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.rate-card:hover .rate-card-img img {
  transform: scale(1.06);
}

.rate-card .rate-header,
.rate-card .rate-list,
.rate-card .rate-note {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

.rate-card .rate-header {
  padding-top: 1rem;
}

.rate-card .rate-note {
  padding-bottom: 1.2rem;
}

.rate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.rate-title {
  margin: 0;
  font-size: 1rem;
}

.rate-chip {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(0, 188, 212, 0.12);
  color: #b2ebf2;
}

.rate-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0.2rem;
  font-size: 0.84rem;
}

.rate-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.25rem 0;
  border-bottom: 1px dashed rgba(158, 185, 210, 0.35);
}

.rate-list li:last-child {
  border-bottom: 0;
}

.rate-label {
  color: var(--muted);
}

.rate-amount {
  font-weight: 600;
}

.rate-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

@media (max-width: 800px) {
  .rate-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2rem;
  align-items: center;
}

.about-tagline {
  font-size: 1.3rem;
  margin: 0.4rem 0 0.8rem;
}

.about-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.about-stat {
  min-width: 120px;
}

.about-stat-value {
  font-size: 1.4rem;
  font-weight: 700;
}

.about-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.about-card {
  border-radius: 24px;
  padding: 1.3rem 1.3rem 1.4rem;
  background: radial-gradient(circle at 0 0, rgba(0, 188, 212, 0.32), transparent 60%),
    linear-gradient(145deg, rgba(3, 22, 36, 0.98), rgba(3, 33, 52, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
}

.about-card-title {
  margin: 0 0 0.5rem;
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.about-pill {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.72rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 2fr);
  gap: 2rem;
}

.contact-details {
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-detail {
  margin-bottom: 0.7rem;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.contact-tag {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.7rem;
}

.map-placeholder {
  border-radius: 20px;
  min-height: 200px;
  background: radial-gradient(circle at 20% 10%, #00bcd4, transparent 55%),
    radial-gradient(circle at 90% 90%, #ffca28, transparent 55%), #001018;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Footer */
.site-footer {
  padding: 1.6rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 50% -40%, rgba(0, 188, 212, 0.2), transparent 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-main strong {
  color: #e3f2fd;
}

.footer-main a {
  color: var(--primary);
}

.footer-tagline {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #b2ebf2;
}

.footer-created {
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
}

.footer-links a {
  font-size: 0.78rem;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  filter: blur(6px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, filter 0.6s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* ========== Mobile optimization ========== */
@media (max-width: 640px) {
  .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-hero {
    padding: 2rem 0 1rem;
  }

  .page-hero-title {
    font-size: 1.5rem;
    word-wrap: break-word;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .page-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    padding-bottom: 2rem;
  }

  .field-row,
  .booking-when-row,
  .booking-form-row,
  #booking-activity-options .field-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .card {
    padding: 1.2rem 1.2rem 1.4rem;
  }

  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-inner {
    margin-left: 1rem;
    padding-right: 1rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .nav-inner {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .price-row {
    flex-direction: column;
    align-items: stretch;
  }

  .waiver-block {
    padding: 1rem;
  }

  .waiver-scroll {
    max-height: 160px;
  }

  .payment-summary-card {
    position: static;
  }

  .payment-options-grid {
    grid-template-columns: 1fr;
  }

  .btn,
  .hero-offer-pill,
  .calendar-nav {
    min-height: 44px;
    min-width: 44px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .page-hero-title {
    font-size: 1.35rem;
  }

  .hero-pick-pace-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }

  .brand-text {
    max-width: 140px;
    min-width: 0;
  }
}

/* Prevent overflow on all viewports */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* Weather forecast widget */
.weather-forecast {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-forecast-title {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.weather-forecast-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

.weather-forecast-temp {
  font-weight: 700;
  color: var(--text);
}

.weather-forecast-desc {
  color: var(--muted);
}

.weather-forecast-precip {
  color: var(--primary);
}

.weather-forecast-loading,
.weather-forecast-error {
  font-size: 0.85rem;
  color: var(--muted);
}

.weather-forecast-wind,
.weather-forecast-tide {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Booking form section animations */
.booking-form-section {
  animation: bookingReveal 0.3s ease-out both;
}

.booking-form-section:nth-child(1) { animation-delay: 0s; }
.booking-form-section:nth-child(2) { animation-delay: 0.04s; }
.booking-form-section:nth-child(3) { animation-delay: 0.08s; }
.booking-form-section:nth-child(4) { animation-delay: 0.12s; }

@keyframes bookingReveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

