/* ============================================
   Big Fish Energy Charters — Tropical Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
  --ocean-deep: #0a3d62;
  --ocean-mid: #1e6f9f;
  --ocean-light: #38a3d5;
  --ocean-pale: #b8e4f7;
  --sand: #f5e6c8;
  --sand-light: #faf3e6;
  --coral: #e8734a;
  --coral-hover: #d45f38;
  --sunset: #f2a541;
  --sunset-light: #ffd699;
  --seafoam: #48c9a8;
  --white: #ffffff;
  --off-white: #fafbfc;
  --text-dark: #1a2a3a;
  --text-mid: #3d5a72;
  --text-light: #6b8fa8;
  --shadow: rgba(10, 61, 98, 0.12);
  --shadow-strong: rgba(10, 61, 98, 0.25);
  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --nav-height: 72px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--ocean-mid);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--coral);
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--ocean-deep);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.section-title {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--coral-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--ocean-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ocean-mid);
  border: 2px solid var(--ocean-mid);
}

.btn-outline:hover {
  background: var(--ocean-mid);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 12px var(--shadow);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Transparent navbar over hero (home page) */
.navbar.navbar-transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.navbar.navbar-transparent .nav-logo {
  color: var(--white);
}

.navbar.navbar-transparent .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.navbar.navbar-transparent .nav-links a:hover {
  color: var(--white);
}

.navbar.navbar-transparent .nav-links a::after {
  background: var(--white);
}

.navbar.navbar-transparent .nav-toggle span {
  background: var(--white);
}

/* When scrolled, revert to solid */
.navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px var(--shadow);
}

.navbar.navbar-scrolled .nav-logo {
  color: var(--ocean-deep);
}

.navbar.navbar-scrolled .nav-links a {
  color: var(--text-dark);
}

.navbar.navbar-scrolled .nav-toggle span {
  background: var(--ocean-deep);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ocean-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .logo-icon {
  font-size: 1.8rem;
}

.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 4px;
}

/* --- Card real images --- */
.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--ocean-light), var(--seafoam));
}

/* --- Gallery video items --- */
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-video-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ocean-deep);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* --- About real images --- */
.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* --- Captain's personal note --- */
.captain-note {
  background: var(--white);
  border-left: 4px solid var(--ocean-mid);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 32px;
  box-shadow: 0 4px 20px var(--shadow);
}

.captain-note h3 {
  color: var(--ocean-deep);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.captain-note p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

.captain-note p:last-child {
  margin-bottom: 0;
}

.captain-note-signature {
  font-weight: 700;
  color: var(--ocean-deep);
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.photo-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px var(--shadow);
}

/* --- Footer logo --- */
.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}

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

.nav-links a:hover {
  color: var(--coral);
}

.nav-links a.active {
  color: var(--coral);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--coral);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--coral-hover);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--ocean-deep);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Static fallback image (hidden on desktop, shown on mobile) */
.hero-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  display: none;
}

/* Legacy slideshow support (other pages if needed) */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 61, 98, 0.7) 0%,
    rgba(30, 111, 159, 0.5) 50%,
    rgba(56, 163, 213, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 32px;
  opacity: 0.95;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slideshow controls */
.slideshow-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.slideshow-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.slideshow-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* --- Sections --- */
section {
  padding: 80px 0;
}

.section-light {
  background: var(--white);
}

.section-sand {
  background: var(--sand-light);
}

.section-ocean {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
  color: var(--white);
}

.section-ocean h2,
.section-ocean h3 {
  color: var(--white);
}

.section-ocean .section-subtitle {
  color: var(--ocean-pale);
}

/* --- Wave Section Dividers --- */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider.flip svg {
  transform: scaleY(-1);
}

/* Color variants — fill matches the section BELOW the wave */
.wave-divider.wave-to-white svg { fill: var(--white); }
.wave-divider.wave-to-sand svg { fill: var(--sand-light); }
.wave-divider.wave-to-ocean svg { fill: var(--ocean-deep); }
.wave-divider.wave-to-off-white svg { fill: var(--off-white); }

/* Background behind the wave — matches section ABOVE */
.wave-divider.wave-from-white { background: var(--white); }
.wave-divider.wave-from-sand { background: var(--sand-light); }
.wave-divider.wave-from-ocean { background: var(--ocean-deep); }
.wave-divider.wave-from-off-white { background: var(--off-white); }
.wave-divider.wave-from-transparent { background: transparent; }

@media (max-width: 768px) {
  .wave-divider svg {
    height: 36px;
  }
}

/* --- Blog / Fishing Reports --- */
.blog-post {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 320px 1fr;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-strong);
}

.blog-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.blog-post-body {
  padding: 28px;
}

.blog-post-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

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

.blog-tag {
  display: inline-block;
  background: var(--ocean-pale);
  color: var(--ocean-deep);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-post-body h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-post-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.blog-read-more {
  display: inline-block;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 4px;
}

.blog-read-more:hover {
  color: var(--coral-hover);
}

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

  .blog-post-image {
    height: 200px;
    min-height: auto;
  }

  .blog-post-body {
    padding: 20px;
  }

  .blog-post-body h2 {
    font-size: 1.15rem;
  }
}

/* --- The Fish page: Hero --- */
.fish-hero {
  padding-top: calc(var(--nav-height) + 56px);
  padding-bottom: 56px;
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
  text-align: center;
  color: var(--white);
}

.fish-avatar-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.fish-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  margin: 0 -8px;
  transition: transform var(--transition);
}

.fish-avatar:hover {
  transform: translateY(-6px) scale(1.08);
  z-index: 1;
}

.fish-avatar-up {
  transform: translateY(-14px);
}

.fish-avatar-up:hover {
  transform: translateY(-20px) scale(1.08);
}

.fish-hero h1 {
  color: var(--white);
}

.fish-hero p {
  color: var(--ocean-pale);
  font-size: 1.1rem;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .fish-avatar {
    width: 40px;
    height: 40px;
    margin: 0 -6px;
  }
}

/* --- The Fish page: Disclaimer --- */
.reg-disclaimer {
  background: #fff3cd;
  border: 1px solid #ffe69c;
  color: #664d03;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.reg-disclaimer a {
  color: #533f02;
  font-weight: 600;
  text-decoration: underline;
}

/* --- The Fish page: Month Selector --- */
.month-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.month-btn {
  padding: 10px 18px;
  border-radius: 50px;
  border: 2px solid var(--ocean-mid);
  background: transparent;
  color: var(--ocean-mid);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}

.month-btn:hover {
  background: var(--ocean-pale);
}

.month-btn.active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.month-hint {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 14px;
  min-height: 1.4em;
}

/* --- The Fish page: Fish Grid --- */
.fish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.fish-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all var(--transition);
}

.fish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-strong);
}

.fish-card.hidden {
  display: none;
}

.fish-card.out-of-season {
  opacity: 0.4;
  filter: grayscale(70%);
}

.fish-photo-wrap {
  position: relative;
  height: 180px;
}

.fish-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fish-mgmt-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--white);
  background: var(--ocean-deep);
}

.mgmt-federal {
  background: var(--ocean-deep);
}

.mgmt-joint {
  background: var(--coral);
}

.mgmt-state {
  background: #2e7d32;
}

.fish-in-season-ribbon {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(46, 125, 50, 0.95);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.fish-card.in-season .fish-in-season-ribbon {
  display: inline-block;
}

.fish-card-body {
  padding: 20px;
}

.fish-sci-name {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.fish-desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.fish-regs {
  margin-bottom: 12px;
}

.fish-reg-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.85rem;
}

.fish-reg-row .label {
  color: var(--text-light);
  font-weight: 500;
}

.fish-reg-row .value {
  color: var(--text-dark);
  font-weight: 600;
  text-align: right;
}

.fish-variable-note {
  color: var(--coral);
}

.fish-source-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ocean-mid);
}

.fish-source-link:hover {
  color: var(--ocean-deep);
}

.fish-photo-credit {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 8px;
}

.fish-grid-footnote {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 24px;
}

.sources-list {
  color: var(--text-mid);
  line-height: 2;
  padding-left: 20px;
}

.sources-list a {
  color: var(--ocean-mid);
  font-weight: 600;
}

.sources-list a:hover {
  color: var(--ocean-deep);
}

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

/* --- Species Guide --- */
.species-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.species-filter {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--ocean-mid);
  background: transparent;
  color: var(--ocean-mid);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.species-filter:hover,
.species-filter.active {
  background: var(--ocean-mid);
  color: var(--white);
}

/* --- FAQ Accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow);
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: 0 4px 16px var(--shadow-strong);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ocean-deep);
  text-align: left;
  line-height: 1.4;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--coral);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ocean-mid);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}

.trips-price-note {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.95rem;
  background: var(--ocean-pale);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  margin-bottom: 32px;
}

/* --- Book Direct banner --- */
.book-direct-banner {
  background: linear-gradient(135deg, var(--ocean-light), var(--seafoam));
  padding: 14px 20px;
  text-align: center;
}

.book-direct-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.book-direct-banner strong {
  color: var(--white);
  font-size: 1.05rem;
}

.book-direct-banner span {
  color: var(--white);
  opacity: 0.95;
  font-size: 0.95rem;
}

.book-direct-banner a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.book-direct-banner a:hover {
  opacity: 0.85;
}

/* --- Trip term glossary toggle --- */
.term-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  margin: -8px 0 16px;
  color: var(--ocean-mid);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.term-toggle:hover {
  color: var(--coral);
}

.term-toggle-icon {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.term-toggle[aria-expanded="true"] .term-toggle-icon {
  transform: rotate(45deg);
}

.term-glossary {
  background: var(--ocean-pale);
  border-radius: var(--radius-md, 10px);
  padding: 14px 16px;
  margin: -8px 0 16px;
}

.term-glossary-compare {
  color: var(--ocean-deep);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}

.term-glossary dl {
  margin: 0;
}

.term-glossary dt {
  color: var(--ocean-deep);
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 8px;
}

.term-glossary dt:first-child {
  margin-top: 0;
}

.term-glossary dd {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 2px 0 0;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-strong);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--ocean-light), var(--seafoam));
}

.card-image-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--ocean-light), var(--seafoam));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  margin-bottom: 8px;
}

.card-body p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

/* Trip "What's Included" lists */
.trip-includes-heading {
  margin-top: 16px;
  font-size: 0.95rem;
  text-align: center;
}

.trip-includes-list {
  list-style: none;
  color: var(--text-mid);
  margin-top: 8px;
  margin-bottom: 16px;
  padding: 0;
  text-align: center;
}

.trip-includes-list li {
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.trip-includes-list li::before {
  content: "✓ ";
  color: var(--seafoam);
  font-weight: 700;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--ocean-pale);
  margin-top: auto;
}

.card-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--coral);
}

.card-detail {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* --- Featured Trips (Home) --- */
.trip-highlights {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.trip-highlight {
  background: var(--ocean-pale);
  color: var(--ocean-deep);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--ocean-pale);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial p {
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 16px;
  padding-top: 24px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--ocean-deep);
}

.testimonial-stars {
  color: var(--sunset);
  margin-bottom: 8px;
}

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--ocean-mid), var(--seafoam));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
}

.about-text h2 {
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

.stats-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--coral);
  display: block;
}

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

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img,
.gallery-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
}

.gallery-item:nth-child(6n+1) .gallery-placeholder { background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid)); }
.gallery-item:nth-child(6n+2) .gallery-placeholder { background: linear-gradient(135deg, var(--coral), var(--sunset)); }
.gallery-item:nth-child(6n+3) .gallery-placeholder { background: linear-gradient(135deg, var(--seafoam), var(--ocean-light)); }
.gallery-item:nth-child(6n+4) .gallery-placeholder { background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-light)); }
.gallery-item:nth-child(6n+5) .gallery-placeholder { background: linear-gradient(135deg, var(--sunset), var(--coral)); }
.gallery-item:nth-child(6n+6) .gallery-placeholder { background: linear-gradient(135deg, var(--ocean-light), var(--seafoam)); }

.gallery-item:hover img,
.gallery-item:hover .gallery-placeholder {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 61, 98, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-size: 2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.form-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--ocean-deep);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--ocean-pale);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ocean-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--ocean-mid);
}

.form-checkbox label {
  font-weight: 400;
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-checkbox label a {
  color: var(--ocean-mid);
  font-weight: 600;
}

.contact-info-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--ocean-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-info-item p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* --- Calendar --- */
.calendar-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.calendar-header h3 {
  font-size: 1.5rem;
}

.calendar-nav {
  background: var(--ocean-mid);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.calendar-nav:hover {
  background: var(--ocean-deep);
}

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

.calendar-weekday {
  text-align: center;
  font-weight: 700;
  color: var(--ocean-deep);
  padding: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

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

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: default;
  transition: all var(--transition);
  position: relative;
  font-size: 0.95rem;
}

.calendar-day.other-month {
  color: var(--text-light);
  opacity: 0.4;
}

.calendar-day.today {
  border: 2px solid var(--ocean-mid);
  font-weight: 700;
}

.calendar-day.available {
  background: var(--seafoam);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
}

.calendar-day.available:hover {
  background: var(--ocean-mid);
  transform: scale(1.1);
}

.calendar-day.booked {
  background: var(--text-light);
  color: var(--white);
  opacity: 0.5;
  cursor: not-allowed;
}

.calendar-day.limited {
  background: var(--sunset);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
}

.calendar-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.legend-color.available { background: var(--seafoam); }
.legend-color.limited { background: var(--sunset); }
.legend-color.booked { background: var(--text-light); opacity: 0.5; }

/* Calendar detail popup */
.calendar-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px var(--shadow-strong);
  z-index: 1500;
  max-width: 420px;
  width: 90%;
}

.calendar-popup.active {
  display: block;
}

.calendar-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1499;
}

.calendar-popup-overlay.active {
  display: block;
}

.calendar-popup h3 {
  margin-bottom: 8px;
}

.calendar-popup p {
  color: var(--text-mid);
  margin-bottom: 12px;
}

.calendar-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-light);
}

/* --- Booking Steps (Calendar page) --- */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 48px;
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.page-header p {
  color: var(--ocean-pale);
  font-size: 1.1rem;
}

/* --- Footer --- */
.footer {
  background: var(--ocean-deep);
  color: var(--ocean-pale);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer ul li {
  margin-bottom: 8px;
  white-space: nowrap;
}

.footer-contact-icon {
  display: inline-block;
  width: 1.4em;
  text-align: center;
}

.footer ul a {
  color: var(--ocean-pale);
  font-size: 0.95rem;
}

.footer ul a:hover {
  color: var(--coral);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ocean-pale);
  font-size: 1.1rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: var(--coral);
  color: var(--white);
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-legal-links {
  margin-top: 8px;
}

.footer-legal-links a {
  color: var(--ocean-pale);
  opacity: 0.8;
}

.footer-legal-links a:hover {
  color: var(--coral);
  opacity: 1;
}

.footer-legal-links span {
  margin: 0 8px;
  opacity: 0.5;
}

/* --- Legal content pages (Privacy, Terms, Cookie Policy) --- */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content .legal-updated {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: var(--ocean-deep);
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  color: var(--ocean-mid);
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.legal-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal-content ul {
  color: var(--text-mid);
  margin: 0 0 16px 20px;
  line-height: 1.7;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--ocean-mid);
  font-weight: 600;
}

/* --- Social proof bar --- */
.social-proof-bar {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.social-proof-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px var(--shadow);
}

.social-proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-strong);
}

.social-proof-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.social-proof-icon.google {
  background: #e8f0fe;
  color: #4285f4;
}

.social-proof-icon.fishingbooker {
  background: #e6f4ea;
  color: #0d7c3f;
}

.social-proof-icon.facebook {
  background: #e7f0ff;
  color: #1877f2;
}

.social-proof-text {
  display: flex;
  flex-direction: column;
}

.social-proof-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.social-proof-rating {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.social-proof-stars {
  color: #f5a623;
  font-size: 0.85rem;
  margin-top: 1px;
}

/* --- Photo-backed sections --- */
.section-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Disable fixed attachment on mobile (causes rendering issues on iOS) */
@media (max-width: 768px) {
  .section-photo {
    background-attachment: scroll;
  }
}

.section-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-photo > .container {
  position: relative;
  z-index: 1;
}

/* Light overlay — for sections with dark text */
.section-photo.overlay-light::before {
  background: rgba(255, 255, 255, 0.88);
}

/* Dark overlay — for sections with white text */
.section-photo.overlay-dark::before {
  background: rgba(10, 61, 98, 0.8);
}

/* Medium overlay */
.section-photo.overlay-medium::before {
  background: rgba(10, 61, 98, 0.65);
}

.section-photo.overlay-dark h2,
.section-photo.overlay-dark h3,
.section-photo.overlay-medium h2,
.section-photo.overlay-medium h3 {
  color: var(--white);
}

.section-photo.overlay-dark .section-subtitle,
.section-photo.overlay-medium .section-subtitle {
  color: var(--ocean-pale);
}

/* Sand-tinted overlay */
.section-photo.overlay-sand::before {
  background: rgba(250, 243, 230, 0.9);
}

/* Faint overlay — just enough for text contrast, background stays vivid */
.section-photo.overlay-faint::before {
  background: rgba(255, 255, 255, 0.35);
}

/* --- Location Slideshow --- */
.location-slideshow-section {
  padding: 80px 0;
  background: var(--ocean-deep);
}

.location-slideshow-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.location-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.location-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.location-slide.active {
  opacity: 1;
}

.location-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  font-size: 0.95rem;
}

.location-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.location-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.location-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

@media (pointer: coarse) {
  .location-dot {
    min-width: 44px;
    min-height: 44px;
    /* Visual dot stays small but tap area is large */
    background-clip: content-box;
    padding: 16px;
  }

  .location-dot.active {
    transform: none;
  }
}

@media (max-width: 768px) {
  .location-slideshow-section {
    padding: 48px 0;
  }

  .location-slideshow {
    aspect-ratio: 4 / 3;
  }

  .location-slideshow-wrapper {
    border-radius: var(--radius);
    margin: 0 8px;
  }
}

/* --- Responsive --- */

/* Ensure all interactive elements meet 44px min tap target */
@media (pointer: coarse) {
  .btn,
  .nav-links a,
  .calendar-nav,
  .slideshow-dot,
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next,
  .calendar-popup-close {
    min-height: 44px;
    min-width: 44px;
  }

  /* Disable hover effects that don't apply on touch */
  .card:hover {
    transform: none;
  }

  .gallery-item-overlay {
    display: none;
  }
}

/* --- Today's Conditions Widget --- */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.conditions-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
  padding: 24px;
}

.conditions-card h3 {
  color: var(--ocean-deep);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.conditions-loading {
  color: var(--text-mid);
  font-style: italic;
}

.conditions-error {
  color: var(--text-mid);
  font-size: 0.9rem;
}

.conditions-error a {
  color: var(--ocean-mid);
}

.conditions-stat {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ocean-deep);
  margin-bottom: 4px;
}

.conditions-sub {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.conditions-seas-summary {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.conditions-tone-calm { color: var(--seafoam, #2a9d8f); }
.conditions-tone-caution { color: #c77b1f; }
.conditions-tone-warning { color: var(--coral); }

.conditions-detail-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  margin-top: 4px;
  color: var(--ocean-mid);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.conditions-detail-toggle:hover {
  color: var(--coral);
}

.conditions-detail-toggle[aria-expanded="true"] .term-toggle-icon {
  transform: rotate(45deg);
}

.conditions-detail {
  margin-top: 10px;
}

.conditions-tide-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(10, 61, 98, 0.08);
  color: var(--text-mid);
}

.conditions-tide-row:last-child {
  border-bottom: none;
}

.conditions-tide-row strong {
  color: var(--ocean-deep);
}

.conditions-alert {
  background: #fdecea;
  border: 1px solid var(--coral);
  color: #a33b1e;
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-weight: 600;
}

.conditions-meta {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.85rem;
  margin-top: 20px;
}

.conditions-disclaimer {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.8rem;
  margin-top: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.conditions-disclaimer a {
  color: var(--ocean-mid);
}

.fishing-report-link {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 700px;
  margin: 24px auto 0;
  background: var(--ocean-pale);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  text-decoration: none;
  transition: box-shadow var(--transition);
}

.fishing-report-link:hover {
  box-shadow: 0 4px 16px var(--shadow-strong);
}

.fishing-report-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.fishing-report-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fishing-report-text strong {
  color: var(--ocean-deep);
  font-size: 0.98rem;
}

.fishing-report-text span {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .fishing-report-link {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Quiz Hero (Trips page, video background behind the quiz card) --- */
.quiz-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.quiz-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
}

.quiz-hero-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
  display: none;
}

.quiz-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 61, 98, 0.55) 0%,
    rgba(30, 111, 159, 0.4) 50%,
    rgba(56, 163, 213, 0.25) 100%
  );
  z-index: 1;
}

.quiz-hero-container {
  position: relative;
  z-index: 2;
}

.quiz-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
  padding: 40px;
  text-align: center;
}

.quiz-title {
  color: var(--ocean-deep);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.quiz-subtitle {
  color: var(--text-mid);
  margin-bottom: 24px;
}

.quiz-question {
  font-weight: 700;
  color: var(--ocean-deep);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.quiz-option {
  background: var(--sand-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ocean-deep);
  cursor: pointer;
  transition: all var(--transition);
}

.quiz-option:hover {
  border-color: var(--ocean-mid);
  background: var(--ocean-pale);
}

.quiz-result-label {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.quiz-result-trip {
  color: var(--coral);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.quiz-result-note {
  color: var(--text-mid);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-result-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.quiz-result-actions .btn {
  font-family: inherit;
}

.quiz-highlight {
  animation: quizPulse 2s ease;
}

@keyframes quizPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--shadow); }
  30% { box-shadow: 0 0 0 6px var(--coral); }
}

.fish-teaser {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.fish-teaser-photos {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.fish-teaser-photos img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px var(--shadow);
}

.fish-teaser-photos img:nth-child(2) {
  transform: translateY(-12px);
}

.fish-teaser-text {
  flex: 1;
  min-width: 260px;
}

.fish-teaser-text h3 {
  color: var(--ocean-deep);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.fish-teaser-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .fish-teaser {
    flex-direction: column;
    text-align: center;
  }

  .fish-teaser-photos {
    justify-content: center;
  }

  .fish-teaser-photos img:nth-child(2) {
    transform: none;
  }

  .quiz-card {
    padding: 28px 20px;
  }
}

.cal-popup-forecast {
  background: var(--sand-light);
  border-radius: var(--radius);
  padding: 4px 16px;
  margin-top: 8px;
}

.cal-popup-forecast:empty {
  display: none;
}

.cal-popup-forecast-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
}

.cal-popup-forecast-row + .cal-popup-forecast-row {
  border-top: 1px solid rgba(10, 61, 98, 0.08);
}

.cal-popup-forecast-row span {
  color: var(--text-mid);
}

.cal-popup-forecast-row strong {
  color: var(--ocean-deep);
  text-align: right;
}

.cal-popup-forecast-note {
  color: var(--text-mid);
  font-size: 0.85rem;
  font-style: italic;
  padding: 8px 0;
  margin-bottom: 0;
}

.conditions-teaser-section {
  background: var(--ocean-deep);
  padding: 18px 0;
}

.conditions-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  text-align: center;
  font-size: 0.95rem;
}

.conditions-teaser-label {
  font-weight: 700;
  color: var(--ocean-pale);
}

.conditions-teaser-link {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
  white-space: nowrap;
}

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

  /* Fix the RTL hack — use proper ordering on single column */
  .about-grid[style*="rtl"] {
    direction: ltr !important;
  }
  .about-grid[style*="rtl"] > * {
    direction: ltr !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stats-row {
    justify-content: flex-start;
  }

  .about-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--nav-height));
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 24px var(--shadow);
    transform: translateY(-120%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  /* Mobile dropdown always uses dark text, even on transparent navbar.
     Selector specificity must match the desktop transparent-navbar rule
     (.navbar.navbar-transparent, not just .navbar-transparent) or it loses the cascade. */
  .navbar.navbar-transparent .nav-links a,
  .navbar.navbar-transparent .nav-links a:hover {
    color: var(--text-dark);
  }

  .navbar.navbar-transparent .nav-links a::after {
    background: var(--coral);
  }

  .nav-toggle {
    display: flex;
  }

  /* Hide video background on mobile, show fallback image */
  .hero-video {
    display: none;
  }

  .hero-fallback {
    display: block;
  }

  .quiz-hero-video {
    display: none;
  }

  .quiz-hero-fallback {
    display: block;
  }

  /* Smaller nav logo on mobile */
  .nav-logo img {
    height: 36px;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  section {
    padding: 48px 0;
  }

  .page-header {
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 32px;
  }

  /* Calendar: remove aspect-ratio and use padding for taller tap targets */
  .calendar-day {
    aspect-ratio: auto;
    padding: 10px 0;
    font-size: 0.85rem;
    min-height: 44px;
  }

  .calendar-weekday {
    font-size: 0.75rem;
    padding: 6px 2px;
  }

  .calendar-days {
    gap: 3px;
  }

  .calendar-weekdays {
    gap: 3px;
  }

  /* Lightbox: tighter padding, smaller controls */
  .lightbox {
    padding: 16px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  .lightbox-close {
    top: 8px;
    right: 12px;
    font-size: 2rem;
  }

  /* Contact form: stack name fields */
  .contact-grid .form-group:first-child {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Booking steps: stack on mobile */
  .booking-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 360px;
    margin: 0 auto;
  }

  /* Slideshow dots: larger for touch */
  .slideshow-dot {
    width: 14px;
    height: 14px;
  }

  .slideshow-dots {
    bottom: 20px;
  }

  .footer-brand img {
    height: 44px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .stats-row {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 220px;
  }

  .form-name-row {
    grid-template-columns: 1fr;
  }

  /* Calendar popup: full-width on small screens */
  .calendar-popup {
    width: 95%;
    padding: 24px 20px;
    max-height: 85vh;
    overflow-y: auto;
  }

  /* Lightbox: hide arrows, rely on swipe */
  .lightbox-prev,
  .lightbox-next {
    display: none;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  section {
    padding: 40px 0;
  }

  .social-proof-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .social-proof-card {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================================
   Animations & Micro-interactions
   ============================================ */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Card hover lift */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--shadow-strong);
}

/* Scroll fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered fade-in for grid children */
.fade-in-stagger .card,
.fade-in-stagger .testimonial,
.fade-in-stagger .social-proof-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-stagger.visible .card,
.fade-in-stagger.visible .testimonial,
.fade-in-stagger.visible .social-proof-card {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-stagger.visible .card:nth-child(1),
.fade-in-stagger.visible .testimonial:nth-child(1),
.fade-in-stagger.visible .social-proof-card:nth-child(1) { transition-delay: 0s; }

.fade-in-stagger.visible .card:nth-child(2),
.fade-in-stagger.visible .testimonial:nth-child(2),
.fade-in-stagger.visible .social-proof-card:nth-child(2) { transition-delay: 0.15s; }

.fade-in-stagger.visible .card:nth-child(3),
.fade-in-stagger.visible .testimonial:nth-child(3),
.fade-in-stagger.visible .social-proof-card:nth-child(3) { transition-delay: 0.3s; }

/* Reel sound toggle */
.reel-sound-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--ocean-deep);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.reel-sound-toggle:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .reel-sound-toggle {
    bottom: 86px;
    right: 16px;
  }
}

/* Floating mobile CTA */
.floating-cta {
  display: none;
}

@media (max-width: 768px) {
  .floating-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--ocean-deep);
    padding: 12px 20px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  }

  .floating-cta a {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .floating-cta a:first-child {
    background: var(--coral);
    color: var(--white);
    flex: 1.2;
  }

  .floating-cta a:nth-child(2),
  .floating-cta a:last-child {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .floating-cta a {
    font-size: 0.82rem;
    padding: 12px 4px;
  }

  /* Add padding to body so content isn't hidden behind floating CTA */
  body {
    padding-bottom: 70px;
  }
}
