/* ============================================================
   components.css — buttons, cards, faq, contact list, FAB
   ============================================================ */

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: var(--fs-base);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  transition: transform var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              color var(--dur) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--c-white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--c-white);
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: var(--fs-sm); }

/* ---------------- Cards ---------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: var(--fs-xl); margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: var(--fs-sm); }

/* ---------------- Service cards ---------------- */
.service-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.service-media { position: relative; }
.service-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  line-height: 1;
  background: rgba(4, 26, 36, 0.5);
  border-radius: 50%;
  backdrop-filter: blur(3px);
  pointer-events: none;
}
.service-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.3rem 1.4rem 1.4rem;
}
.service-icon { font-size: 2.1rem; line-height: 1; }
.service-meta {
  margin-top: auto;
  padding-top: 0.4rem;
  font-weight: 800;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-ocean);
}
.service-link {
  align-self: flex-start;
  margin-top: 0.15rem;
  padding: 0;
  background: none;
  border: 0;
  font-weight: 800;
  font-size: var(--fs-sm);
  color: var(--accent);
  cursor: pointer;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.service-link:hover { color: var(--accent-hover); transform: translateX(2px); }

.price-note {
  margin-top: 1.4rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-style: italic;
}

/* ---------------- Catch & cook add-on card ---------------- */
.addon-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 1fr;
  align-items: center;
  gap: clamp(1.3rem, 3vw, 2.4rem);
  margin-top: 1.8rem;
  padding: clamp(1.2rem, 2.4vw, 1.9rem);
  background: var(--surface);
  border: 1px dashed var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.addon-media { margin: 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.addon-media .reel { aspect-ratio: 16 / 9; }

.addon-icon { font-size: 2.3rem; line-height: 1; flex: none; }
.addon-body { min-width: 0; }
.addon-title { display: flex; align-items: center; gap: 0.5rem; }
.addon-emoji { font-size: 1.5rem; line-height: 1; }
.addon-body .addon-cta { margin-top: 1.2rem; }
.addon-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.55rem;
  font-weight: 800;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-ocean);
  background: var(--c-aqua-soft);
  border-radius: var(--radius-pill);
}
.addon-body h3 { font-size: var(--fs-xl); margin-bottom: 0.2rem; }
.addon-body p { color: var(--text-muted); font-size: var(--fs-sm); }
.addon-cta { flex: none; white-space: nowrap; }
@media (max-width: 760px) {
  .addon-card { grid-template-columns: 1fr; align-items: stretch; }
}
@media (max-width: 600px) {
  .addon-body .addon-cta { width: 100%; }
}

/* ---------------- Trip details modal ---------------- */
body.has-modal { overflow: hidden; }
.trip-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}
.trip-modal[hidden] { display: none; }
.trip-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 26, 36, 0.6);
  backdrop-filter: blur(3px);
  animation: qa-fade var(--dur) var(--ease);
}
.trip-modal-card {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(1.4rem, 4vw, 2.1rem);
  background: var(--surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: qa-pop var(--dur) var(--ease);
}
.trip-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--heading);
  background: var(--surface);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.trip-modal-close:hover { color: var(--accent); transform: rotate(90deg); }
.trip-modal-close svg { width: 18px; height: 18px; }
.tm-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding-right: 2rem;
}
.tm-icon { font-size: 2.3rem; line-height: 1; flex: none; }
.tm-title { font-size: var(--fs-2xl); color: var(--heading); }
.tm-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}
.tm-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  padding: 0.85rem 0.5rem;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
}
.tm-meta-ico { color: var(--c-ocean); line-height: 0; }
.tm-meta-ico svg { width: 20px; height: 20px; }
.tm-meta-label {
  font-weight: 800;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-ocean);
}
.tm-meta-val { font-weight: 700; font-size: var(--fs-sm); color: var(--heading); }

/* Modal photo slider slot */
.tm-slider { margin-bottom: 1.3rem; }
.tm-slider:empty { display: none; }
.tm-desc { margin-bottom: 1.3rem; color: var(--text-muted); line-height: 1.6; }
.tm-desc p + p { margin-top: 0.8rem; }
.tm-includes-title {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--heading);
}
#tmIncludes { display: grid; gap: 0.4rem; margin-bottom: 1.5rem; list-style: none; }
#tmIncludes li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: var(--fs-sm);
}
#tmIncludes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--c-ocean);
}
.tm-book { width: 100%; }

/* ---------------- Boat & gear ---------------- */
.boat-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.2rem;
  align-items: start;
}
.boat-copy p { color: var(--text-muted); }

.feats-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--heading);
  margin-top: 1.4rem;
  margin-bottom: 0.2rem;
}

.feature-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.8rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--c-aqua-soft);
  color: var(--c-deep);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
}

.boat-panel { padding: 1.6rem 1.8rem; }

/* Specs shown as a full-width strip below the boat two-column block */
.boat-specs { margin-top: clamp(1.6rem, 4vw, 2.4rem); padding: 1.5rem 1.7rem; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem 2rem;
  margin-top: 0.6rem;
}
.spec-cell {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--c-line);
}
.spec-cell dt { font-weight: 700; color: var(--heading); }
.spec-cell dd { color: var(--text-muted); text-align: right; }
@media (max-width: 760px) { .spec-grid { grid-template-columns: repeat(2, 1fr); gap: 0.2rem 1.6rem; } }
@media (max-width: 460px) { .spec-grid { grid-template-columns: 1fr; } }

/* Right column of the boat grid: slideshow stacked above the "At a glance" card,
   so the photos fill the space beside the copy instead of sitting full-width below. */
.boat-aside {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 3vw, 1.8rem);
}

/* ---------------- Boat photo slideshow ---------------- */
.boat-slider { position: relative; max-width: 860px; margin: clamp(1.8rem, 4vw, 2.8rem) auto 0; }
/* In the two-column layout the slider fills its column (no centering / top gap). */
.boat-aside .boat-slider { max-width: none; margin: 0; }
.bs-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.bs-track {
  display: flex;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.bs-slide {
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-deep);
  cursor: zoom-in;
}
.bs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Video slide inside the boat slideshow — a portrait clip, letterboxed on the
   deep background so it fits the 16/9 frame without a harsh crop. */
.bs-slide--video { cursor: default; position: relative; }
.bs-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--c-deep);
  cursor: pointer;
}
.bs-video-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.2rem 0.9rem 0.7rem;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent);
  pointer-events: none;
}
.bs-sound {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition: background var(--dur) var(--ease);
}
.bs-sound:hover { background: rgba(0, 0, 0, 0.68); }
.bs-sound svg { width: 17px; height: 17px; }
.bs-sound .ico-on { display: none; }
.bs-sound.is-on .ico-off { display: none; }
.bs-sound.is-on .ico-on { display: block; }
.bs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--heading);
  z-index: 3;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.bs-arrow:hover { color: var(--accent); }
.bs-arrow.prev { left: 12px; }
.bs-arrow.next { right: 12px; }
.bs-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 0.9rem; }
.bs-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-line);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.bs-dot.is-active { background: var(--c-ocean); transform: scale(1.3); }

@media (max-width: 560px) {
  .bs-arrow { width: 38px; height: 38px; font-size: 1.3rem; }
  .bs-arrow.prev { left: 6px; }
  .bs-arrow.next { right: 6px; }
}
.spec-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  margin-bottom: 0.4rem;
}
.spec-list { display: grid; }
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--c-line);
}
.spec-row:last-child { border-bottom: none; }
.spec-row dt { font-weight: 700; color: var(--heading); }
.spec-row dd { color: var(--text-muted); text-align: right; }

/* ---------------- What to bring ---------------- */
.bring-box { margin-top: 2.4rem; }
.bring-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.5rem 1.6rem;
  margin-top: 0.6rem;
}
.bring-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
}
.bring-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-ocean);
  font-weight: 800;
}

/* ---------------- FAQ accordion ---------------- */
.faq-list { margin-top: 2rem; max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--heading);
}
.faq-q::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--dur) var(--ease);
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  transition: max-height var(--dur) var(--ease),
              padding var(--dur) var(--ease);
}
.faq-item.is-open .faq-a { padding-bottom: 1.1rem; }

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2rem;
  align-items: start;
}
.contact-list { display: grid; gap: 1rem; }
/* Align "Find us" (right column) with the first contact row on the left */
.contact-map-wrap .feats-title { margin-top: 0; }
.contact-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-ico {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--c-ocean);
  background: var(--c-aqua-soft);
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-body { display: flex; flex-direction: column; }
.contact-body strong {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-ocean);
}
.contact-val { color: var(--text); font-weight: 600; }
a.contact-val { transition: color var(--dur) var(--ease); }
a.contact-val:hover { color: var(--accent); }

.social-links { display: flex; gap: 0.7rem; margin-top: 0.9rem; }
.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--c-line);
  color: var(--heading);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.social-links a:hover { transform: translateY(-3px); color: #fff; }
.social-links .s-ig:hover { background: #E1306C; border-color: #E1306C; }
.social-links .s-tt:hover { background: #010101; border-color: #010101; }
.social-links .s-fb:hover { background: #1877F2; border-color: #1877F2; }
.social-links .s-ta:hover { background: #34E0A1; border-color: #34E0A1; }

/* ---------------- WhatsApp FAB ---------------- */
.fab-stack {
  position: fixed;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.fab {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--c-white);
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur) var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }
.fab-whatsapp { background: #25D366; }
.fab-email    { background: var(--c-ocean); }

/* ---------------- Quick-question dialog ---------------- */
.quick-ask { position: fixed; inset: 0; z-index: 1000; }
.quick-ask[hidden] { display: none; }
.quick-ask-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 26, 36, 0.5);
  backdrop-filter: blur(2px);
  animation: qa-fade var(--dur) var(--ease);
}
.quick-ask-card {
  position: absolute;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: calc(clamp(1rem, 3vw, 1.6rem) + 74px);
  width: min(92vw, 360px);
  max-height: min(80vh, 620px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.4rem 1.5rem;
  animation: qa-pop var(--dur) var(--ease);
}
.quick-ask-title {
  font-size: var(--fs-xl);
  color: var(--heading);
  margin-bottom: 1rem;
  padding-right: 1.6rem;
}
.quick-ask-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--dur) var(--ease);
}
.quick-ask-close:hover { color: var(--heading); }
.quick-ask-form { display: grid; gap: 0.9rem; }
.quick-ask-form .btn { margin-top: 0.2rem; }
.quick-ask-status { font-weight: 700; font-size: var(--fs-sm); min-height: 1.2em; }
.quick-ask-status.is-success { color: var(--c-ocean); }
.quick-ask-status.is-error   { color: var(--accent-hover); }

@keyframes qa-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes qa-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 520px) {
  .quick-ask-card {
    left: clamp(1rem, 3vw, 1.6rem);
    right: clamp(1rem, 3vw, 1.6rem);
    width: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .quick-ask-backdrop, .quick-ask-card { animation: none; }
}

/* ---------------- Reviews ---------------- */
.reviews-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.1rem;
  box-shadow: var(--shadow-sm);
  font-size: var(--fs-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.stat-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-plat { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 800; color: var(--heading); }
.src-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex: none; }
.stat-figures { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.stat-rating { font-weight: 800; color: var(--heading); }
.stat-star { color: #FFB020; margin-left: 2px; }
.stat-count { color: var(--text-muted); font-size: var(--fs-xs); }

.dot-fishingbooker { background: #1f9fd6; }
.dot-tripadvisor  { background: #34e0a1; }
.dot-google       { background: #4285F4; }

/* ---- Reviews slideshow (one at a time) ---- */
.reviews-slider { position: relative; margin-top: 2.2rem; }
.slider-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.slides-track {
  display: flex;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.review-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}

.review-photo {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  background: linear-gradient(155deg, var(--c-aqua), var(--c-ocean));
  box-shadow: var(--shadow-sm);
}
.review-photo img { width: 100%; height: 100%; object-fit: cover; }
.review-photo.src-bg-tripadvisor  { background: linear-gradient(155deg, #43e6ab, #0E7C8B); }
.review-photo.src-bg-fishingbooker { background: linear-gradient(155deg, #24c9da, #1f7fb8); }

.review-body { display: flex; flex-direction: column; gap: 0.7rem; }
.review-slide .review-title { font-size: var(--fs-xl); }
.review-slide .review-text { font-size: var(--fs-lg); color: var(--text); }

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--heading);
  z-index: 2;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.slider-arrow:hover { color: var(--accent); }
.slider-arrow.prev { left: -10px; }
.slider-arrow.next { right: -10px; }

.review-stars { color: #FFB020; letter-spacing: 2px; font-size: 1.05rem; }
.review-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--heading);
}
.review-text { color: var(--text); font-size: var(--fs-sm); line-height: var(--lh-body); }
.review-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--c-line);
}
.review-byline { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.review-avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  background: linear-gradient(155deg, var(--c-aqua), var(--c-ocean));
  box-shadow: var(--shadow-sm);
}
.review-avatar.src-bg-tripadvisor  { background: linear-gradient(155deg, #43e6ab, #0E7C8B); }
.review-avatar.src-bg-fishingbooker { background: linear-gradient(155deg, #24c9da, #1f7fb8); }
.review-name { display: block; font-weight: 800; color: var(--heading); font-size: var(--fs-sm); }
.review-loc  { display: block; color: var(--text-muted); font-size: var(--fs-xs); }
.review-src {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: var(--fs-xs);
  white-space: nowrap;
}
.review-src::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex: none; }
.review-src.src-fishingbooker { color: #1483b0; }
.review-src.src-tripadvisor  { color: #1a9e6f; }
.review-src.src-google       { color: #2b6cd4; }

/* ---- Google map embed (contact "find us") ---- */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow);
}
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }
.contact-map { margin-top: 0.8rem; }

@media (max-width: 600px) {
  .map-embed iframe { height: 320px; }
}

/* ============================================================
   Content blocks added from the 2026 site brief
   (social-proof strip, pricing, about, info cards, callouts,
   merch, WhatsApp CTAs, contact response)
   ============================================================ */

/* ---------------- WhatsApp button ---------------- */
.btn-wa { background: #25D366; color: #fff; box-shadow: var(--shadow-sm); }
.btn-wa:hover { background: #1EBE5A; }
.btn-wa svg { width: 22px; height: 22px; }

/* ---------------- Social-proof strip (under hero) ---------------- */
.proof-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--c-line);
  padding-block: 0.85rem;
}
.proof-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.4rem;
}
.proof-label { font-weight: 800; font-size: var(--fs-sm); color: var(--text-muted); }
.proof-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  background: var(--bg);
  font-size: var(--fs-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.proof-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.proof-plat { font-weight: 800; color: var(--heading); }
.proof-rating { font-weight: 800; color: var(--heading); }
.proof-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: var(--fs-sm);
  color: var(--c-ocean);
  transition: color var(--dur) var(--ease);
}
.proof-insta:hover { color: var(--accent); }
@media (max-width: 560px) {
  .proof-label { flex-basis: 100%; text-align: center; }
}

/* ---------------- Pricing & payment ---------------- */
.pricing-panel {
  margin-top: 2.6rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: var(--surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.pricing-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.pricing-head .section-eyebrow { margin-bottom: 0.3rem; }
.pricing-title { font-size: var(--fs-2xl); color: var(--heading); margin: 0.1rem 0 0.3rem; }
.pricing-sub { color: var(--text-muted); max-width: 52ch; }
.pricing-badge {
  flex: none;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-pill);
  background: var(--c-aqua-soft);
  color: var(--c-deep);
  font-weight: 800;
  font-size: var(--fs-sm);
  white-space: nowrap;
}
.pricing-badge::before { content: "★"; color: var(--c-sun); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: start;
}
.price-list { display: grid; align-content: start; }
.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--c-line);
}
.price-list li:last-child { border-bottom: none; }
.price-list span { color: var(--text); font-weight: 600; }
.price-list b { color: var(--heading); font-family: var(--font-display); font-size: var(--fs-lg); }
.pay-box {
  background: var(--bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}
.pay-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--heading);
  margin-bottom: 0.6rem;
}
.pay-list { display: grid; gap: 0.5rem; }
.pay-list li { position: relative; padding-left: 1.4rem; color: var(--text-muted); font-size: var(--fs-sm); }
.pay-list li::before { content: "✓"; position: absolute; left: 0; color: var(--c-ocean); font-weight: 800; }
@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------------- About / captain ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 1.6rem;
  align-items: start;
}
.about-body { display: grid; gap: 1rem; }
.about-body p { color: var(--text-muted); line-height: var(--lh-body); }
.about-photo-wrap { position: sticky; top: calc(var(--header-h) + 1rem); }
.about-photo {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
/* Captain quick-facts — a full-width strip under the two-column block */
.about-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(1.6rem, 4vw, 2.4rem);
}
.about-fact {
  flex: 1 1 200px;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  background: var(--surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-weight: 700;
  font-size: var(--fs-sm);
}
.about-fact-txt {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.about-fact-sub {
  font-weight: 500;
  font-size: 0.82em;
  color: var(--text-muted);
}
.about-fact-ico {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: var(--c-aqua-soft);
  border-radius: 12px;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; max-width: 420px; }
}

/* ---------------- Videos ("See it in action") ---------------- */
.video-section { background: var(--c-deep); color: #fff; }
.video-section .section-eyebrow { color: var(--c-aqua); }
.video-section .section-title { color: #fff; }
.video-section .section-lead { color: rgba(255, 255, 255, 0.82); }
/* Horizontal video carousel — all reels in one row, paged with side arrows */
.video-slider {
  position: relative;
  margin: 2.2rem auto 0;
  max-width: 900px;
  padding-inline: 56px;
}
.video-track {
  display: flex;
  gap: clamp(0.7rem, 2.5vw, 1.6rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px;
  scroll-padding: 6px;
}
.video-track::-webkit-scrollbar { display: none; }
.video-slider .video-card {
  flex: 0 0 calc((100% - 2 * clamp(0.7rem, 2.5vw, 1.6rem)) / 3);
  scroll-snap-align: start;
}
.video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--heading);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.video-arrow:hover { background: var(--c-aqua-soft); }
.video-arrow.prev { left: 4px; }
.video-arrow.next { right: 4px; }
.video-arrow[disabled] { opacity: 0; pointer-events: none; }
.video-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.reel {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  cursor: pointer;
}
.reel-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 0.8rem 0.7rem;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}
.reel-sound {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
  z-index: 2;
  transition: background var(--dur) var(--ease);
}
.reel-sound:hover { background: rgba(0, 0, 0, 0.65); }
.reel-sound svg { width: 17px; height: 17px; }
.reel-sound .ico-on { display: none; }
.reel-sound.is-on .ico-off { display: none; }
.reel-sound.is-on .ico-on { display: block; }
.reel-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.reel-play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-card.is-playing .reel-play { opacity: 0; }
.video-insta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin: 1.7rem auto 0;
  font-weight: 800;
  font-size: var(--fs-sm);
  color: var(--c-aqua);
  transition: color var(--dur) var(--ease);
}
.video-insta:hover { color: var(--c-sun); }
@media (max-width: 760px) {
  .video-slider { padding-inline: 40px; max-width: 100%; }
  .video-track { gap: 0.6rem; }
  .video-slider .video-card { flex-basis: calc((100% - 0.6rem) / 2); }
  .video-arrow { width: 38px; height: 38px; font-size: 1.4rem; }
  .reel-cap { padding: 1.2rem 0.55rem 0.55rem; font-size: var(--fs-xs); }
  .reel-sound { width: 30px; height: 30px; top: 7px; right: 7px; }
  .reel-play { width: 44px; height: 44px; }
  .reel-play svg { width: 22px; height: 22px; }
}
@media (max-width: 480px) {
  .video-slider .video-card { flex-basis: 78%; }
}

/* ---------------- Catch & Cook restaurant links (add-on card) ---------------- */
.addon-card .addon-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.9rem;
  margin-top: 0.7rem;
  font-size: var(--fs-xs);
}
.addon-links-label { font-weight: 800; color: var(--heading); }
.addon-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  color: var(--c-ocean);
  transition: color var(--dur) var(--ease);
}
.addon-links a:hover { color: var(--accent); }

/* ---------------- Info cards (included / not / not recommended) ---------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.info-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--heading);
  margin-bottom: 0.7rem;
}
.info-card-title::before { font-weight: 800; }
.info-card-title.yes::before { content: "✓"; color: #2E9E5B; }
.info-card-title.no::before { content: "✕"; color: var(--accent); }
.info-card-title.warn::before { content: "⚠"; color: #C98A00; }
.info-list { display: grid; gap: 0.45rem; }
.info-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.5;
}
.info-list li::before { position: absolute; left: 0; font-weight: 800; }
.info-list.yes li::before { content: "✓"; color: #2E9E5B; }
.info-list.no li::before { content: "–"; color: var(--accent); }
.info-list.warn li::before { content: "–"; color: #C98A00; }

/* ---------------- Callouts (nature fee, fish sharing, etc.) ---------------- */
.callout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.callout {
  display: flex;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.callout-accent { border-color: var(--c-aqua); background: var(--c-aqua-soft); }
:root[data-theme="dark"] .callout-accent { background: rgba(23, 195, 212, 0.09); }
.callout-wide { grid-column: 1 / -1; }
.callout-ico { font-size: 1.8rem; line-height: 1; flex: none; }
.callout-body { min-width: 0; }
.callout-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--heading);
  margin-bottom: 0.35rem;
}
.callout-text { color: var(--text-muted); font-size: var(--fs-sm); line-height: var(--lh-body); }
.callout-accent .callout-text { color: var(--c-deep); }
:root[data-theme="dark"] .callout-accent .callout-text { color: var(--text); }
.callout-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-weight: 800;
  font-size: var(--fs-sm);
  color: var(--accent);
  transition: color var(--dur) var(--ease);
}
.callout-link:hover { color: var(--accent-hover); }

/* ---------------- FAQ sub-heading ---------------- */
.faq-heading { margin-top: 2.8rem; font-size: var(--fs-2xl); color: var(--heading); }
.faq-heading + .faq-list { margin-top: 1.2rem; }

/* ---------------- Merch coming soon ---------------- */
.merch-soon { margin-top: 1.6rem; display: flex; align-items: center; flex-wrap: wrap; gap: 0.9rem 1.1rem; }
.merch-badge {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--c-sun);
  color: var(--c-deep);
  font-weight: 800;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.merch-note { color: var(--text-muted); }

/* ---------------- Booking WhatsApp CTA ---------------- */
.booking-wa {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1rem;
  margin-top: 1.6rem;
}
.booking-wa-note { color: var(--text-muted); font-size: var(--fs-sm); flex: 1 1 220px; }
.booking-or { color: var(--text-muted); font-size: var(--fs-sm); font-style: italic; }

/* ---------------- Contact WhatsApp / response ---------------- */
.contact-wa {
  margin-bottom: 1.4rem;
  padding: 1.2rem 1.3rem;
  background: var(--c-aqua-soft);
  border-radius: var(--radius);
}
:root[data-theme="dark"] .contact-wa { background: rgba(23, 195, 212, 0.09); }
.contact-wa-note { color: var(--c-deep); font-weight: 600; font-size: var(--fs-sm); margin-bottom: 0.8rem; }
:root[data-theme="dark"] .contact-wa-note { color: var(--text); }
.contact-wa .btn-wa { width: 100%; }
.contact-response {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-weight: 800;
  font-size: var(--fs-sm);
  color: var(--c-ocean);
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25D366;
  flex: none;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) { .pulse-dot { animation: none; } }

/* ---------------- Footer registration ---------------- */
.footer-coc { margin-top: 0.45rem; color: rgba(255, 255, 255, 0.6); font-size: var(--fs-xs); }

/* ---------------- Per-adventure photo slider (cards + modal) ---------------- */
.ts-slider { position: relative; }
.ts-viewport { overflow: hidden; background: var(--c-deep); }
.service-media .ts-viewport { border-radius: 0; }
.tm-slider .ts-viewport { border-radius: var(--radius); }
.ts-track { display: flex; transition: transform 0.45s var(--ease); will-change: transform; }
.ts-img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: var(--c-deep);
  cursor: zoom-in;
}
.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(4, 26, 36, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 1.3rem;
  line-height: 1;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--dur) var(--ease), background var(--dur) var(--ease);
}
.ts-slider:hover .ts-arrow,
.ts-slider:focus-within .ts-arrow { opacity: 1; }
.ts-arrow:hover { background: rgba(4, 26, 36, 0.78); }
.ts-arrow.prev { left: 8px; }
.ts-arrow.next { right: 8px; }
.ts-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 2;
}
.ts-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width var(--dur) var(--ease), background var(--dur) var(--ease);
}
.ts-dot.is-active { background: #fff; width: 16px; border-radius: 4px; }
@media (hover: none) { .ts-arrow { opacity: 1; } }

/* Trip-photo lightbox must sit above the trip modal (z 1200) */
.lightbox.ts-lightbox { z-index: 1400; }

/* ---------------- Contact map fills the right column (no empty gap) ---------------- */
.contact-grid { align-items: stretch; }
.contact-map-wrap { display: flex; flex-direction: column; }
.contact-map { flex: 1; }
.contact-map iframe { height: 100%; min-height: 420px; }
