﻿/* ============================================
   Bahamas Adventure Guides — base styles
   Palette: turquoise ocean + warm sand + deep navy
   Type: Fraunces (display) + Inter (body)
   ============================================ */

:root {
  --c-ocean: #0a8aa8;
  --c-ocean-deep: #075f74;
  --c-sand: #f5e6c8;
  --c-sand-warm: #e8c98a;
  --c-navy: #0d2538;
  --c-ink: #1a2e3b;
  --c-muted: #5a6c78;
  --c-line: #e3dccd;
  --c-bg: #fbf8f2;
  --c-white: #ffffff;
  --c-warn: #d96c2c;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(13, 37, 56, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 37, 56, 0.08);
  --shadow-lg: 0 24px 48px rgba(13, 37, 56, 0.12);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--c-ocean-deep); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--c-ocean); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--c-navy);
  margin: 0 0 0.5em;
}

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ocean-deep);
  font-weight: 600;
  margin: 0 0 0.8em;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 0.4em; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--c-ocean-deep); color: var(--c-white); }
.btn-primary:hover { background: var(--c-navy); color: var(--c-white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--c-white); }

.btn-outline { background: transparent; color: var(--c-ocean-deep); border-color: var(--c-ocean-deep); }
.btn-outline:hover { background: var(--c-ocean-deep); color: var(--c-white); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 16px; padding-bottom: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--c-navy); }
/* Compass needle gentle oscillation */
@keyframes compass-sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* ===== BRAND COMPASS NEEDLE ===== */
.brand-mark {
  animation: compass-sway 4s ease-in-out infinite;
  transform-origin: center center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Outer ring — compass housing */
.brand-mark::before {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2.5px solid var(--c-ocean-deep, #0A8AA8);
  border-radius: 50%;
  box-sizing: border-box;
}

/* Inner ring detail */
.brand-mark .compass-ring {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(10, 138, 168, 0.3);
  border-radius: 50%;
  box-sizing: border-box;
}

/* Compass needle — the N/S pointer */
.brand-mark .compass-needle {
  position: relative;
  width: 0;
  height: 0;
  z-index: 1;
}

/* North pointer (blue) — upward triangle */
.brand-mark .compass-needle::before {
  content: '';
  position: absolute;
  left: -4.5px;
  top: -11px;
  width: 0;
  height: 0;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-bottom: 11px solid var(--c-ocean-deep, #0A8AA8);
}

/* South pointer (lighter) — downward triangle */
.brand-mark .compass-needle::after {
  content: '';
  position: absolute;
  left: -4.5px;
  top: 0px;
  width: 0;
  height: 0;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-top: 11px solid rgba(10, 138, 168, 0.5);
}

/* Cardinal dot in center */
.brand-mark .compass-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--c-gold, #D96C2C);
  border-radius: 50%;
  z-index: 2;
}

/* N label */
.brand-mark .compass-n {
  position: absolute;
  top: -6px;
  font-family: 'Inter', sans-serif;
  font-size: 6px;
  font-weight: 700;
  color: var(--c-ocean-deep, #0A8AA8);
  letter-spacing: 0;
  z-index: 3;
}
.primary-nav { display: flex; gap: 16px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.primary-nav::-webkit-scrollbar { display: none; }
.primary-nav a { color: var(--c-ink); font-weight: 500; font-size: 0.85rem; white-space: nowrap; }
.primary-nav a:hover { color: var(--c-ocean-deep); }
@media (max-width: 900px) { .primary-nav { display: none; } }

/* ========== HERO ========== */
  .hero {
    position: relative;
    min-height: 88vh;
    display: flex; align-items: center;
    background-image:
      linear-gradient(135deg, rgba(13, 37, 56, 0.55), rgba(10, 138, 168, 0.35)),
      url('https://images.pexels.com/photos/163236/luxury-yacht-boat-speed-water-163236.jpeg?auto=compress&cs=tinysrgb&w=2000');
    background-size: cover; background-position: center;
    color: var(--c-white);
    padding: 120px 0 80px;
  }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,37,56,0.2), rgba(13,37,56,0.55));
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  color: var(--c-white);
  margin: 0 0 0.5em;
  line-height: 1.05;
}
.hero .eyebrow { color: var(--c-sand); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); margin-bottom: 32px; max-width: 560px; color: rgba(255,255,255,0.92); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-note { font-size: 0.9rem; color: rgba(255,255,255,0.78); margin: 0; }

/* ========== TRUST STRIP ========== */
.trust-strip { background: var(--c-white); border-bottom: 1px solid var(--c-line); padding: 32px 0; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item strong { display: block; color: var(--c-navy); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; }
.trust-item span { font-size: 0.85rem; color: var(--c-muted); }
@media (max-width: 720px) { .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; } }

/* ========== EXPERIENCES ========== */
.experiences { padding: 96px 0; }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.exp-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
  border: 1px solid var(--c-line);
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--c-sand); }
.exp-img {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  background-color: var(--c-sand);
}
.exp-img--yacht   { background-image: url('/images/yacht-01.jpg'); }
.exp-img--boat    { background-image: url('https://images.pexels.com/photos/10344325/pexels-photo-10344325.jpeg?auto=compress&cs=tinysrgb&w=900'); }
.exp-img--dinner  { background-image: url('https://images.pexels.com/photos/12625327/pexels-photo-12625327.jpeg?auto=compress&cs=tinysrgb&w=900'); }
.exp-img--jetski  { background-image: url('https://images.pexels.com/photos/15414980/pexels-photo-15414980.jpeg?auto=compress&cs=tinysrgb&w=900'); }
.exp-img--taxi    { background-image: url('https://images.pexels.com/photos/5834914/pexels-photo-5834914.jpeg?auto=compress&cs=tinysrgb&w=900'); }
.exp-img--massage { background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=900&q=80'); }
.exp-body { padding: 24px 24px 28px; }
.exp-body h3 { font-size: 1.35rem; margin: 0 0 0.4em; }
.exp-body p { color: var(--c-muted); margin: 0 0 16px; font-size: 0.95rem; }
.exp-cta { color: var(--c-ocean-deep); font-weight: 600; font-size: 0.92rem; }

/* ========== HOW IT WORKS ========== */
.how { padding: 96px 0; background: var(--c-sand); background: linear-gradient(180deg, var(--c-sand) 0%, var(--c-bg) 100%); }
.how-steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: howstep; }
.how-steps li { background: var(--c-white); padding: 32px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.how-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-ocean-deep); color: var(--c-white);
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  margin-bottom: 16px;
}
.how-steps h3 { font-size: 1.2rem; margin-bottom: 8px; }
.how-steps p { color: var(--c-muted); margin: 0; font-size: 0.95rem; }
@media (max-width: 820px) { .how-steps { grid-template-columns: 1fr; } }

/* ========== WHY US ========== */
.why { padding: 96px 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.why-copy p { color: var(--c-muted); font-size: 1.02rem; margin: 0 0 1em; }
.why-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80');
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 820px) { .why-inner { grid-template-columns: 1fr; gap: 40px; } .why-visual { aspect-ratio: 4 / 3; } }

/* ========== CTA BAND ========== */
.cta-band {
  background: var(--c-navy);
  background-image: linear-gradient(135deg, var(--c-navy) 0%, var(--c-ocean-deep) 100%);
  color: var(--c-white);
  padding: 80px 0;
  text-align: center;
}
.cta-inner h2 { color: var(--c-white); font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.85); margin: 0 auto 32px; max-width: 540px; font-size: 1.05rem; }
.cta-band .btn-primary { background: var(--c-sand-warm); color: var(--c-navy); }
.cta-band .btn-primary:hover { background: var(--c-sand); color: var(--c-navy); }

/* ========== FOOTER ========== */
.site-footer { background: #08202e; color: rgba(255,255,255,0.78); padding: 64px 0 28px; }
.footer-inner { display: flex; flex-direction: column; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--c-white); flex-wrap: wrap; }
.footer-brand .brand-mark {
  animation: compass-sway 4s ease-in-out infinite;
  transform-origin: center center; color: var(--c-sand-warm); }
.footer-tag { flex-basis: 100%; font-size: 0.85rem; margin: 8px 0 0; color: rgba(255,255,255,0.55); font-family: var(--font-body); font-weight: 400; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-links h4 { color: var(--c-white); font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 16px; font-weight: 600; }
.footer-links a { display: block; color: rgba(255,255,255,0.7); font-size: 0.92rem; padding: 6px 0; }
.footer-links a:hover { color: var(--c-sand-warm); }
.footer-fine { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 600px) { .footer-links { grid-template-columns: 1fr; gap: 24px; } }

/* ========== PAGE HERO (interior pages) ========== */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  color: var(--c-white);
  padding: 140px 0 80px;
}
.page-hero--yachts {
  background-image:
    linear-gradient(135deg, rgba(13, 37, 56, 0.6), rgba(10, 138, 168, 0.3)),
    url('/images/yacht-01.jpg');
}
.page-hero .hero-content { max-width: 720px; }

/* ========== PACKAGE CARDS ========== */
.packages { padding: 96px 0; }
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-card--featured { border-color: var(--c-ocean-deep); border-width: 2px; position: relative; }
.package-card--featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--c-ocean-deep), var(--c-ocean));
}
.package-img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; }
.package-img--sunset   { background-image: url('/images/yacht-02.jpg'); }
.package-img--fullday  { background-image: url('/images/yacht-03.jpg'); }
.package-img--islandhop { background-image: url('/images/yacht-04.jpg'); }
.package-body { padding: 28px; display: flex; flex-direction: column; flex-grow: 1; }
.package-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--c-sand); color: var(--c-navy);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
  font-weight: 600;
}
.package-tag--featured { background: var(--c-ocean-deep); color: var(--c-white); }
.package-body h3 { font-size: 1.45rem; margin: 0 0 0.5em; }
.package-body > p { color: var(--c-muted); font-size: 0.95rem; margin: 0 0 20px; }
.package-includes { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.package-includes li { padding: 6px 0 6px 24px; position: relative; font-size: 0.92rem; color: var(--c-ink); }
.package-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--c-ocean-deep); font-weight: 700; }
.package-card .btn { width: 100%; }
@media (max-width: 920px) { .package-grid { grid-template-columns: 1fr; } }

/* ========== ROUTES GRID ========== */
.routes { padding: 96px 0; background: var(--c-white); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.route-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.route-card:hover { border-color: var(--c-ocean); transform: translateY(-2px); }
.route-card h3 { font-size: 1.1rem; margin: 0 0 8px; color: var(--c-navy); }
.route-card p { margin: 0; font-size: 0.92rem; color: var(--c-muted); }
@media (max-width: 820px) { .route-grid { grid-template-columns: 1fr; } }

/* ========== FAQ ========== */
.faq { padding: 96px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 0;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.faq-list details[open] { border-color: var(--c-ocean-deep); }
.faq-list summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--c-navy);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--c-ocean-deep);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p {
    margin: 0;
    padding: 0 24px 20px;
    color: var(--c-muted);
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* ========== CONTACT HERO ========== */
  .page-hero--contact {
    min-height: 50vh;
    padding: 120px 0 60px;
    background-image:
      linear-gradient(135deg, rgba(13, 37, 56, 0.55), rgba(10, 138, 168, 0.4)),
      url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=80');
  }
  .contact-section { padding: 80px 0 96px; background: var(--c-bg); }
  .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }
  @media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

  /* ========== INQUIRY FORM ========== */
  .contact-form-wrap {
    background: var(--c-white);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 600px) { .contact-form-wrap { padding: 28px 22px; } }
  .inquiry-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 32px;
  }
  .inquiry-form legend {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--c-navy);
    margin-bottom: 18px;
    padding: 0;
  }
  .field { display: flex; flex-direction: column; margin-bottom: 18px; flex: 1; }
  .field-row { display: flex; gap: 16px; }
  @media (max-width: 600px) { .field-row { flex-direction: column; gap: 0; } }
  .field label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 6px;
  }
  .field .req { color: var(--c-warn); }
  .field input,
  .field select,
  .field textarea {
    font-family: var(--font-body);
    font-size: 0.98rem;
    padding: 12px 14px;
    border: 1.5px solid var(--c-line);
    border-radius: var(--radius-sm);
    background: var(--c-white);
    color: var(--c-ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--c-ocean-deep);
    box-shadow: 0 0 0 3px rgba(10, 138, 168, 0.15);
  }
  .field textarea { resize: vertical; min-height: 120px; }
  .field small { color: var(--c-muted); font-size: 0.78rem; margin-top: 6px; }

  .checkbox-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
  .checkbox-pill { cursor: pointer; }
  .checkbox-pill input { position: absolute; opacity: 0; pointer-events: none; }
  .checkbox-pill span {
    display: inline-block;
    padding: 9px 16px;
    background: var(--c-sand);
    color: var(--c-navy);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1.5px solid transparent;
    transition: all 0.15s;
    user-select: none;
  }
  .checkbox-pill input:checked + span {
    background: var(--c-ocean-deep);
    color: var(--c-white);
    border-color: var(--c-ocean-deep);
  }
  .checkbox-pill:hover span { border-color: var(--c-ocean-deep); }
  .checkbox-pill input:focus-visible + span {
    outline: 3px solid rgba(10, 138, 168, 0.3);
    outline-offset: 2px;
  }

  .form-actions { margin-top: 8px; }
  .form-actions .btn { width: 100%; position: relative; }
  .form-fine { color: var(--c-muted); font-size: 0.85rem; margin: 14px 0 0; text-align: center; }
  .btn-spinner {
    display: none;
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
  }
  .btn.is-loading .btn-spinner { display: inline-block; }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ========== SIDEBAR ========== */
  .contact-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }
  @media (max-width: 920px) { .contact-sidebar { position: static; } }
  .sidebar-card {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
  }
  .sidebar-card--accent {
    background: linear-gradient(135deg, var(--c-ocean-deep), var(--c-navy));
    color: var(--c-white);
    border-color: transparent;
  }
  .sidebar-card--accent h3 { color: var(--c-white); }
  .sidebar-card--accent p { color: rgba(255,255,255,0.85); margin: 0; }
  .sidebar-card h3 { font-size: 1.1rem; margin: 0 0 10px; }
  .sidebar-card p { font-size: 0.92rem; color: var(--c-muted); margin: 0 0 16px; }

  .btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  .btn-whatsapp:hover { background: #1ebe5d; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4); }

  .next-steps { list-style: none; padding: 0; margin: 0; counter-reset: next; }
  .next-steps li {
    position: relative;
    padding: 8px 0 8px 36px;
    font-size: 0.92rem;
    color: var(--c-ink);
    border-bottom: 1px dashed var(--c-line);
  }
  .next-steps li:last-child { border-bottom: none; }
  .next-steps li::before {
    counter-increment: next;
    content: counter(next);
    position: absolute;
    left: 0; top: 8px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--c-ocean-deep);
    color: var(--c-white);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
  }

  /* ========== THANK YOU PAGE ========== */
  .thanks-body { background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-sand) 100%); }
  .thanks-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 100px var(--pad) 96px;
    text-align: center;
  }
  .thanks-bubble {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: var(--c-ocean-deep);
    color: var(--c-white);
    font-size: 2.4rem;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 12px 28px rgba(10, 138, 168, 0.35);
    animation: bagh-pop 0.5s ease-out;
  }
  @keyframes bagh-pop {
    0% { transform: scale(0.6); opacity: 0; }
    70% { transform: scale(1.08); }
    100% { transform: scale(1); opacity: 1; }
  }
  .thanks-eyebrow { font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-ocean-deep); font-weight: 600; margin: 0 0 12px; }
  .thanks-title { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 16px; }
  .thanks-sub { font-size: 1.08rem; color: var(--c-muted); margin: 0 auto 40px; max-width: 540px; line-height: 1.6; }
  .thanks-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
    margin: 0 auto 48px;
    max-width: 540px;
    border: 1px solid var(--c-line);
  }
  .thanks-card h3 { margin: 0 0 8px; font-size: 1.3rem; }
  .thanks-card p { margin: 0 0 20px; color: var(--c-muted); font-size: 0.95rem; }
  .thanks-card .btn-whatsapp { width: 100%; justify-content: center; }

  .thanks-next h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.16em; font-family: var(--font-body); color: var(--c-ocean-deep); margin: 0 0 20px; font-weight: 600; }
  .thanks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 40px; }
  @media (max-width: 600px) { .thanks-grid { grid-template-columns: 1fr; } }
  .thanks-link {
    display: flex; align-items: center; gap: 14px;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    text-align: left;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
    color: var(--c-ink);
  }
  .thanks-link:hover { border-color: var(--c-ocean-deep); transform: translateY(-2px); color: var(--c-ink); }
  .thanks-link-icon { font-size: 1.6rem; flex-shrink: 0; }
  .thanks-link-text { display: flex; flex-direction: column; gap: 2px; }
  .thanks-link-text strong { font-family: var(--font-display); font-size: 1rem; color: var(--c-navy); font-weight: 600; }
  .thanks-link-text small { color: var(--c-muted); font-size: 0.82rem; }
  .thanks-back { display: inline-block; color: var(--c-ocean-deep); font-weight: 600; font-size: 0.92rem; }
  .thanks-back:hover { color: var(--c-ocean); }

  /* ========== ABOUT PAGE ========== */
  .page-hero--about {
    min-height: 55vh;
    padding: 120px 0 70px;
    background-image:
      linear-gradient(135deg, rgba(13, 37, 56, 0.55), rgba(10, 138, 168, 0.35)),
      url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=80');
  }
  .story-section { padding: 96px 0; }
  .story-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 56px; align-items: start; }
  @media (max-width: 920px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }
  .story-copy h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin: 32px 0 12px; }
  .story-copy h2:first-of-type { margin-top: 0; }
  .story-copy p { font-size: 1.02rem; color: var(--c-ink); line-height: 1.75; margin: 0 0 16px; }
  .story-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }
  @media (max-width: 920px) { .story-side { position: static; } }
  .story-card {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
  }
  .story-card--accent { background: linear-gradient(135deg, var(--c-ocean-deep), var(--c-navy)); color: var(--c-white); border-color: transparent; }
  .story-card--accent h3, .story-card--accent p { color: var(--c-white); }
  .story-card--accent p { color: rgba(255,255,255,0.85); }
  .story-card h3 { font-size: 1.2rem; margin: 0 0 20px; }
  .crew { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
  .crew:last-child { margin-bottom: 0; }
  .crew-photo { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }

  .crew-bio h4 { font-size: 1.15rem; margin: 0 0 2px; }
  .crew-role { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-ocean-deep); font-weight: 600; margin: 0 0 8px; }
  .crew-bio p { font-size: 0.9rem; color: var(--c-muted); margin: 0; line-height: 1.55; }

  /* ========== VALUES ========== */
  .values-section { padding: 96px 0; background: var(--c-sand); background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-sand) 100%); }
  .values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  @media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }
  .value-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
  }
  .value-num {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-ocean-deep);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }
  .value-card h3 { font-size: 1.25rem; margin: 0 0 12px; }
  .value-card p { margin: 0; color: var(--c-muted); font-size: 0.95rem; line-height: 1.65; }
  /* ========== VENDOR CATEGORY HERO BACKGROUNDS ========== */
  .page-hero--boat {
    background-image:
      linear-gradient(135deg, rgba(13, 37, 56, 0.55), rgba(10, 138, 168, 0.35)),
      url('https://images.pexels.com/photos/10344325/pexels-photo-10344325.jpeg?auto=compress&cs=tinysrgb&w=2000');
  }
  .page-hero--dinner {
    background-image:
      linear-gradient(135deg, rgba(13, 37, 56, 0.6), rgba(217, 108, 44, 0.35)),
      url('https://images.pexels.com/photos/12625327/pexels-photo-12625327.jpeg?auto=compress&cs=tinysrgb&w=2000');
  }
  .page-hero--jetski {
    background-image:
      linear-gradient(135deg, rgba(13, 37, 56, 0.55), rgba(10, 138, 168, 0.4)),
      url('https://images.pexels.com/photos/15414980/pexels-photo-15414980.jpeg?auto=compress&cs=tinysrgb&w=2000');
  }
  .page-hero--taxi {
    background-image:
      linear-gradient(135deg, rgba(13, 37, 56, 0.55), rgba(10, 138, 168, 0.35)),
      url('https://images.pexels.com/photos/5834914/pexels-photo-5834914.jpeg?auto=compress&cs=tinysrgb&w=2000');
  }
  .page-hero--massage {
    background-image:
      linear-gradient(135deg, rgba(13, 37, 56, 0.55), rgba(232, 201, 138, 0.4)),
      url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&w=2000&q=80');
  }

  /* ========== VENDOR FEATURE CARDS ========== */
  .vendor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  @media (max-width: 720px) { .vendor-grid { grid-template-columns: 1fr; } }
  .vendor-feature {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .vendor-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .vendor-feature-img { aspect-ratio: 16 / 9; background-size: cover; background-position: center; }
  .vendor-feature-body { padding: 24px; }
  .vendor-feature h3 { font-size: 1.2rem; margin: 0 0 8px; }
  .vendor-feature p { color: var(--c-muted); font-size: 0.95rem; margin: 0 0 16px; line-height: 1.6; }
  .vendor-feature ul { list-style: none; padding: 0; margin: 0; }
  .vendor-feature li { padding: 4px 0 4px 20px; position: relative; font-size: 0.88rem; color: var(--c-ink); }
  .vendor-feature li::before { content: '✓'; position: absolute; left: 0; color: var(--c-ocean-deep); font-weight: 700; }
/* ========== FAQ ========== */
.faq { padding: 5rem 0; background: #f8f6f0; }
.faq-grid { max-width: 720px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(13,37,56,0.06); }
.faq-item summary { padding: 1.25rem 1.5rem; font-weight: 600; font-size: 1.05rem; color: #0d2538; cursor: pointer; display: flex; align-items: center; justify-content: space-between; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: #b8946e; transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.5rem 1.25rem; margin: 0; color: #4a5568; line-height: 1.6; font-size: 0.95rem; }

/* Social proof ticker */
.social-proof { background: #f0ece4; padding: 0.75rem 0; border-bottom: 1px solid #e5ddd0; }
.social-proof p { font-size: 0.82rem; color: #6b5e4a; margin: 0; text-align: center; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.sp-dot { display: inline-block; width: 6px; height: 6px; background: #25D366; border-radius: 50%; margin-right: 8px; vertical-align: middle; animation: sp-pulse 2s ease-in-out infinite; }
@keyframes sp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
