/* ================================================================
   Waihi Beach Surf & Ocean Adventure Camp — Stylesheet
   Colour palette:
     Navy:   #0A1628
     Ocean:  #0077B6
     Teal:   #00B4D8
     Sky:    #90E0EF
     Sand:   #F4E4C1
     Cream:  #FDFAF5
     White:  #FFFFFF
   ================================================================ */

/* ── Reset & base ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0A1628;
  --navy-soft:  #152340;
  --ocean:      #0077B6;
  --ocean-dark: #005A8E;
  --teal:       #00B4D8;
  --sky:        #90E0EF;
  --sky-light:  #CAF0F8;
  --sand:       #F4E4C1;
  --sand-dark:  #E8D5A8;
  --cream:      #FDFAF5;
  --white:      #FFFFFF;
  --text-dark:  #111827;
  --text-mid:   #374151;
  --text-light: #6B7280;
  --border:     #E5E7EB;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 24px 60px rgba(0,0,0,.18);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 68px;

  font-size: 16px;
  scroll-behavior: smooth;
}

html { scroll-padding-top: calc(var(--nav-height) + 8px); }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

[hidden] { display: none !important; }

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

ul { list-style: none; }

/* ── Utilities ────────────────────────────────────────────────── */
.container {
  width: min(1160px, 100% - 2rem);
  margin-inline: auto;
}

.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section__heading {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.section__heading--center { text-align: center; }

.section__subheading {
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--full { width: 100%; }

.btn--primary {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--ocean-dark);
  border-color: var(--ocean-dark);
  box-shadow: 0 8px 24px rgba(0,119,182,0.35);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover, .btn--outline-white:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Scroll reveal animations ─────────────────────────────────── */
.reveal, .fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible, .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered delays for card grids */
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }

/* ── Navigation ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1160px, 100% - 2rem);
  margin-inline: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav__link--cta {
  background: var(--ocean);
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  margin-left: 0.5rem;
}
.nav__link--cta:hover {
  background: var(--teal);
  color: var(--navy) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav__links.open { transform: translateX(0); }

  .nav__link {
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .nav__link--cta { margin: 0.5rem 0 0; text-align: center; }
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,22,40,0.72) 0%,
    rgba(10,22,40,0.58) 50%,
    rgba(0,77,120,0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 4rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
  transition-delay: 0.1s;
}

.hero__headline {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.25rem;
  transition-delay: 0.2s;
}

.hero__headline--accent {
  color: var(--teal);
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 56ch;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  transition-delay: 0.3s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  transition-delay: 0.4s;
}

/* Video placeholder */
.hero__video-wrap {
  width: min(700px, 90vw);
  transition-delay: 0.5s;
}

.hero__video-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
}

.hero__video-placeholder:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.hero__video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero__video-placeholder:hover .hero__video-thumb img {
  transform: scale(1.04);
}

.hero__video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background var(--transition);
}

.hero__video-placeholder:hover .hero__video-play {
  background: rgba(0,119,182,0.55);
}

.hero__video-play svg {
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform var(--transition);
}

.hero__video-placeholder:hover .hero__video-play svg {
  transform: scale(1.12);
}

.hero__video-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  white-space: nowrap;
}

/* Scroll hint arrow */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  animation: bounce 2.4s ease-in-out infinite;
}

.hero__scroll-arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2.5px solid rgba(255,255,255,0.7);
  border-bottom: 2.5px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Trust bar ────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding-block: 1.25rem;
}

.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  align-items: center;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-bar__icon { font-size: 1.1rem; }

/* ── About ────────────────────────────────────────────────────── */
.about {
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

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

.about__images {
  position: relative;
}

.about__img--main {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about__img--accent {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .about__img--accent { right: -0.5rem; bottom: -1rem; }
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.75;
}

.about__text p { color: var(--text-mid); }

/* ── Included ─────────────────────────────────────────────────── */
.included {
  background: var(--white);
}

.included__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.included__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}

.included__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky);
}

.included__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--teal) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.included__icon svg {
  width: 24px;
  height: 24px;
}

.included__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.included__card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Gallery strip ────────────────────────────────────────────── */
.gallery {
  overflow: hidden;
  padding-block: 0;
  background: var(--navy);
}

.gallery__track {
  display: flex;
  gap: 0;
}

.gallery__track img {
  flex: 0 0 calc(100% / 3);
  height: 260px;
  object-fit: cover;
  filter: brightness(0.75) saturate(1.1);
  transition: filter var(--transition), transform var(--transition);
}

.gallery__track img:hover {
  filter: brightness(0.9) saturate(1.3);
  transform: scale(1.03);
  z-index: 1;
}

@media (max-width: 600px) {
  .gallery__track img { flex: 0 0 50%; height: 180px; }
}

/* ── Who It's For ─────────────────────────────────────────────── */
.who {
  background: var(--cream);
}

.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 768px) {
  .who__grid { grid-template-columns: 1fr; }
  .who__image { order: -1; }
}

.who__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.who__text > p { color: var(--text-mid); }

.who__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.who__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.who__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

.who__item strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.who__item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.who__image {
  position: relative;
}

.who__image img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.who__badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.who__badge-num {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.who__badge-range {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ocean);
}

@media (max-width: 768px) {
  .who__badge { left: 1rem; }
}

/* ── Dates & Pricing ──────────────────────────────────────────── */
.dates {
  background: var(--white);
}

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

@media (max-width: 900px) { .dates__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

.dates__card {
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.dates__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dates__card--featured {
  border-color: var(--ocean);
  background: linear-gradient(160deg, rgba(0,119,182,0.04) 0%, rgba(0,180,216,0.06) 100%);
  position: relative;
}

.dates__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean);
  background: rgba(0,119,182,0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.dates__badge--featured {
  background: var(--ocean);
  color: var(--white);
}

.dates__name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}

.dates__range {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mid);
}

.dates__duration {
  font-size: 0.85rem;
  color: var(--text-light);
}

.dates__price {
  margin-top: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.dates__price-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.dates__price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.dates__note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  flex: 1;
}

.dates__group-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 60ch;
  margin-inline: auto;
}

.dates__group-note a {
  color: var(--ocean);
  font-weight: 600;
}
.dates__group-note a:hover { text-decoration: underline; }

/* ── Enquiry section ──────────────────────────────────────────── */
.enquiry {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
}

.enquiry .section__eyebrow { color: var(--sky); }
.enquiry .section__heading { color: var(--white); }

.enquiry__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

@media (max-width: 860px) {
  .enquiry__grid { grid-template-columns: 1fr; }
}

.enquiry__intro > p { color: rgba(255,255,255,0.78); margin-bottom: 1.5rem; }

.enquiry__promises {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.enquiry__promises li {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.enquiry__contact {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.enquiry__contact p { color: rgba(255,255,255,0.78); font-size: 0.9rem; line-height: 1.9; }
.enquiry__contact strong { color: var(--white); }
.enquiry__contact a { color: var(--sky); }
.enquiry__contact a:hover { text-decoration: underline; }

/* Form */
.enquiry__form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-xl);
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.form-success__icon svg { width: 32px; height: 32px; }

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.form-success p {
  color: var(--text-mid);
  max-width: 36ch;
}

.enquiry__form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

fieldset {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__legend {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 0.5rem;
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) { .form__row--2 { grid-template-columns: 1fr; } }

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form__label span { color: var(--ocean); }

.form__input {
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form__input::placeholder { color: #A0AAB4; }

.form__input:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(0,119,182,0.15);
}

.form__input.invalid {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.12);
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
}

.form__error {
  font-size: 0.78rem;
  color: #DC2626;
  font-weight: 500;
  min-height: 1.1em;
}

.form__submit {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form__privacy {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
}

.btn__spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-block: 4rem;
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__logo img { width: 28px; height: 28px; }

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
}

.footer__links ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a,
.footer__contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover { color: var(--white); }

.footer__contact li { font-size: 0.9rem; line-height: 1.7; }

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: border-color var(--transition), color var(--transition),
              background var(--transition);
}

.footer__social-link:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0,180,216,0.08);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.5rem;
}

.footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── Focus visible (accessibility) ───────────────────────────── */
:focus-visible {
  outline: 2.5px solid var(--teal);
  outline-offset: 3px;
}

/* ── Additional styles for booking system ─────────────────────── */

/* Teal button variant */
.btn--teal {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
  font-weight: 700;
}
.btn--teal:hover, .btn--teal:focus-visible {
  background: #00c8f0;
  border-color: #00c8f0;
  box-shadow: 0 8px 24px rgba(0,180,216,0.40);
  transform: translateY(-2px);
}

/* Outline ocean button */
.btn--outline-ocean {
  background: transparent;
  color: var(--ocean);
  border-color: var(--ocean);
  font-weight: 600;
}
.btn--outline-ocean:hover, .btn--outline-ocean:focus-visible {
  background: rgba(0,119,182,0.06);
  transform: translateY(-2px);
}

/* Spots remaining indicator */
.dates__spots {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  min-height: 1.4em;
}

.spots-loading {
  color: var(--text-light);
  font-weight: 400;
  font-style: italic;
}

.spots-available {
  color: #16a34a;
}

.spots-low {
  color: #d97706;
}

.spots-soldout {
  color: #dc2626;
}

/* Sold-out state for book button */
.btn--soldout {
  background: var(--border);
  color: var(--text-light);
  border-color: var(--border);
  cursor: not-allowed;
  pointer-events: none;
}

/* Enquiry section Book Now nudge box */
.enquiry__cta-box {
  background: rgba(0,180,216,0.1);
  border: 1.5px solid rgba(0,180,216,0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.enquiry__cta-box p {
  color: rgba(255,255,255,0.82) !important;
  margin: 0 !important;
  font-size: 0.92rem;
}
