/* =========================================
   BLACKBEARDS TOURS & TRAVEL
   Design system: Ocean-dark, coral-fire, legend aesthetic
   ========================================= */

:root {
  --ocean-deep: #020c1b;
  --ocean-mid: #0a1628;
  --ocean-blue: #0077b6;
  --ocean-light: #00b4d8;
  --coral: #e85d04;
  --coral-bright: #ff6b2b;
  --gold: #f4a020;
  --gold-light: #fbbf24;
  --cream: #f5f0e8;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.82);
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
  --nav-h: 80px;
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ocean-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  min-height: var(--nav-h);
  overflow: visible;
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
  padding: 0 2rem;
}

.nav.scrolled {
  background: rgba(2, 12, 27, 0.97);
  box-shadow: 0 2px 40px rgba(0,0,0,0.4);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 50px;
  width: 160px;
  object-fit: contain;
  transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-nav {
  background: var(--coral);
  color: white !important;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  transition: all var(--transition);
}
.btn-nav:hover {
  background: var(--coral-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232,93,4,0.4);
}
.btn-nav::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 0 1.5rem;
  gap: 0.5rem;
  background: rgba(2,12,27,0.98);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); }
.mobile-menu .lang-toggle { margin: 0.5rem 1rem; width: fit-content; }
.mobile-menu.open { display: flex; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--coral);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--coral-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,93,4,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: white;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  transition: all var(--transition);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  background: url('img/hero-bg.jpg') center/cover no-repeat;
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,12,27,0.55) 0%, rgba(2,12,27,0.35) 40%, rgba(2,12,27,0.75) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(0,119,182,0.2) 0%, transparent 60%);
}
@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  25%  { transform: scale(1.06) translate(-1.5%, -1%); }
  50%  { transform: scale(1.1) translate(1%, -2%); }
  75%  { transform: scale(1.06) translate(2%, 0.5%); }
  100% { transform: scale(1.0) translate(0%, 1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230077b6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Animated waves */
.waves { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; overflow: hidden; }
.wave {
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.15;
}
.wave1 {
  background: linear-gradient(180deg, var(--ocean-blue), transparent);
  animation: waveAnim 8s linear infinite;
  height: 80px;
}
.wave2 {
  background: linear-gradient(180deg, rgba(0,180,216,0.6), transparent);
  animation: waveAnim 12s linear infinite reverse;
  height: 60px;
  bottom: 10px;
  opacity: 0.1;
}
.wave3 {
  background: linear-gradient(180deg, rgba(232,93,4,0.3), transparent);
  animation: waveAnim 16s linear infinite;
  height: 40px;
  bottom: 5px;
  opacity: 0.08;
}
@keyframes waveAnim {
  0% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(25%) scaleY(1.1); }
  100% { transform: translateX(50%) scaleY(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 900px;
  animation: fadeUp 1s ease both;
}

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

.hero-logo-wrap {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-logo {
  display: block;
  width: min(300px, 70vw);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0,119,182,0.4));
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  letter-spacing: 0.3em;
  color: var(--coral);
  margin-bottom: 1rem;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 0 60px rgba(0,119,182,0.3), 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.4s ease both;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--ocean-blue);
  padding: 1.2rem 2rem;
  position: relative;
  z-index: 10;
}
.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}
.trust-icon { font-size: 1.2rem; }
.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.3);
}

/* ============ SECTIONS ============ */
.section { padding: 6rem 2rem; }

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--coral);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ EXPERIENCE CARDS ============ */
.experiences-preview {
  background: linear-gradient(180deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.exp-card.wide { grid-column: span 3; }

.exp-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
  padding: 2rem;
}

.exp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--card-color, var(--ocean-blue)), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.exp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.exp-card:hover::before { opacity: 0.1; }

.exp-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.exp-card-content { position: relative; z-index: 1; }

.exp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.exp-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.exp-cta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--coral);
  transition: color var(--transition);
}
.exp-card:hover .exp-cta { color: var(--gold); }

.wide .exp-card-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.wide .exp-icon { font-size: 4rem; margin-bottom: 0; }

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

/* ============ HOW IT WORKS ============ */
.how-it-works {
  background: linear-gradient(180deg, var(--ocean-mid) 0%, #050f1f 100%);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,119,182,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.step:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(0,119,182,0.3);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--coral);
  opacity: 0.4;
  margin-bottom: 1rem;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  color: var(--gold-light);
}
.step p { font-size: 0.9rem; color: var(--text-muted); }

.step-arrow {
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  align-self: center;
  margin-top: -1rem;
}

/* ============ TESTIMONIALS — Dynamic Reviews Carousel ============ */
.testimonials {
  background: var(--ocean-deep);
  overflow: hidden;
}
.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.reviews-track {
  display: flex;
  gap: 1.25rem;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
  padding: 1rem 0;
}
.review-card {
  flex: 0 0 calc(33.333% - 0.84rem);
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  min-width: 0;
}
.review-card:hover {
  border-color: rgba(244,160,32,0.3);
  transform: translateY(-3px);
}
.review-card .stars {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.review-card .rev-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card .reviewer {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
/* rev-source removed — no longer displayed */
.review-card .rev-category {
  display: inline-block;
  background: rgba(0,119,182,0.15);
  border: 1px solid rgba(0,119,182,0.25);
  color: var(--ocean-light);
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
/* Nav arrows */
.rev-nav {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rev-nav:hover {
  background: rgba(0,119,182,0.3);
  border-color: var(--ocean-blue);
}
/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.reviews-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.2s;
}
.reviews-dots .dot.active {
  background: var(--ocean-blue);
  transform: scale(1.3);
}
/* Source badges */
.reviews-source-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.source-badge {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
/* ── Responsive: reviews ── */
@media (max-width: 900px) {
  .review-card { flex: 0 0 calc(50% - 0.63rem); }
}
@media (max-width: 600px) {
  .review-card { flex: 0 0 100%; }
  .rev-nav { display: none; }
  .reviews-track { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .review-card { scroll-snap-align: start; }
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, #0a1f3d 0%, #051225 50%, #0a1628 100%);
  border-top: 1px solid rgba(0,119,182,0.3);
  border-bottom: 1px solid rgba(0,119,182,0.3);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,4,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.cta-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: #010911;
  padding: 5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .footer-logo { height: 80px; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); max-width: 280px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  justify-content: center;
}
.footer-bottom a { color: var(--ocean-light); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition);
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-card.wide { grid-column: span 2; }
  .step-arrow { display: none; }
  .steps-grid { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 4rem 1.5rem; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card.wide { grid-column: span 1; }
  .wide .exp-card-content { flex-direction: column; }
  .trust-inner { gap: 1rem; }
  .trust-divider { display: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* ============ EXPERIENCES PAGE ============ */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.page-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.filter-bar {
  position: -webkit-sticky;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(2,12,27,0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1rem 2rem;
}
.filter-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(232,93,4,0.1);
}

.exp-catalog {
  padding: 4rem 2rem;
  background: var(--ocean-deep);
}
.exp-catalog-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.exp-catalog-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.exp-catalog-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.exp-catalog-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.exp-catalog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.exp-catalog-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.exp-catalog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.exp-catalog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.exp-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.exp-meta-item {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.exp-catalog-card .btn-primary { width: 100%; justify-content: center; }

/* ============ QUOTE FORM PAGE ============ */
.quote-section {
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  background: linear-gradient(180deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100dvh;
}
.quote-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.quote-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 0.75rem;
}
.quote-wrap .subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 3rem;
}

.form-section-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-grid.single { grid-template-columns: 1fr; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean-blue);
  background: rgba(0,119,182,0.08);
}
.form-group select option { background: var(--ocean-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

.dive-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: none;
}
.dive-section.visible { display: block; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--coral);
}
.checkbox-group label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-group a { color: var(--ocean-light); }

.form-submit { margin-top: 2rem; width: 100%; padding: 1rem; font-size: 1rem; justify-content: center; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
}

/* ============ LEGAL PAGES ============ */
.legal-section {
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100dvh;
}
.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.legal-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.legal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin: 2.5rem 0 1rem;
  letter-spacing: 0.05em;
}
.legal-wrap p, .legal-wrap li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-wrap ul { padding-left: 1.5rem; }
.legal-wrap a { color: var(--ocean-light); }

/* ============ CONTACT PAGE ============ */
.contact-section {
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100dvh;
}
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(0,119,182,0.15);
  border: 1px solid rgba(0,119,182,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.contact-item-text a, .contact-item-text p {
  color: var(--white);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact-item-text a:hover { color: var(--ocean-light); }

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

/* ============ LANGUAGE DROPDOWN ============ */
.lang-switcher-wrap { position: relative; }
.lang-dropdown { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 0.4rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.lang-current:hover { border-color: var(--gold); color: var(--gold); }
.lang-code { letter-spacing: 0.08em; }
.lang-options {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: rgba(5, 18, 37, 0.98);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  min-width: 90px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 2000;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.lang-options.open { display: block; animation: fadeUp 0.15s ease both; }
.lang-option {
  display: flex; align-items: center; gap: 0.5rem;
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-align: left;
  letter-spacing: 0.08em;
}
.lang-option:hover { background: rgba(255,255,255,0.06); color: white; }
.lang-option.active { color: var(--gold); }

@media (max-width: 768px) {
  .weather-bar { padding: 0.35rem 1rem; }
  .weather-bar-inner { gap: 0.5rem; }
  .weather-select { max-width: 140px; font-size: 0.75rem; }
  .nav { top: 40px !important; }
}

/* ============================================================
   WEATHER + SEA CONDITIONS SECTION
   ============================================================ */
.wx-section {
  background: linear-gradient(180deg, #020c1b 0%, #0a1628 100%);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(0,119,182,0.2);
  border-bottom: 1px solid rgba(0,119,182,0.2);
}
.wx-inner { max-width: 1100px; margin: 0 auto; }

/* Header */
.wx-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.wx-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: white;
  margin: 0;
}
.wx-city-selector { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.wx-select-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.wx-city-selector select,
.wx-sea-header select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  min-width: 200px;
}
.wx-city-selector select option,
.wx-sea-header select option { background: #020c1b; }

/* Current conditions */
.wx-current {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,119,182,0.25);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.wx-current-main { display: flex; align-items: center; gap: 1.25rem; }
.wx-big-emoji { font-size: 3.5rem; line-height: 1; }
.wx-big-temp {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: white;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.wx-condition {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--ocean-blue);
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.wx-city-name {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.wx-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.wx-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
  min-width: 60px;
}
.wx-stat-icon { font-size: 1.2rem; }
.wx-stat > span:nth-child(2) {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: white;
  letter-spacing: 0.05em;
}
.wx-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Forecast */
.wx-forecast-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.wx-forecast {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.wx-day {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1rem 0.5rem;
  text-align: center;
  transition: border-color var(--transition);
}
.wx-day:hover { border-color: rgba(0,119,182,0.4); }
.wx-day-name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.wx-day-emoji { font-size: 1.8rem; margin-bottom: 0.5rem; }
.wx-day-temps { display: flex; justify-content: center; gap: 0.4rem; }
.wx-hi { color: white; font-size: 0.88rem; font-weight: 600; }
.wx-lo { color: var(--text-muted); font-size: 0.88rem; }
.wx-day-rain { font-size: 0.75rem; color: #74b9ff; margin-top: 0.3rem; min-height: 1rem; }

/* Divider */
.wx-divider {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 0 0 2rem;
  position: relative;
  text-align: center;
}
.wx-divider-label {
  position: relative;
  top: -0.7rem;
  background: #0a1628;
  padding: 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Sea section */
.wx-sea-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.wx-sea-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.wx-sea-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,119,182,0.2);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color var(--transition);
}
.wx-sea-card:hover { border-color: rgba(0,119,182,0.5); }
.wx-sea-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.wx-sea-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.wx-sea-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.wx-sea-sub { font-size: 0.75rem; color: var(--text-muted); }
.wx-sea-loading {
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .wx-header { flex-direction: column; }
  .wx-current { flex-direction: column; }
  .wx-forecast { grid-template-columns: repeat(5,1fr); gap: 0.4rem; }
  .wx-day { padding: 0.6rem 0.2rem; }
  .wx-day-emoji { font-size: 1.4rem; }
  .wx-sea-cards { grid-template-columns: repeat(2,1fr); }
  .wx-heading { font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .wx-forecast { grid-template-columns: repeat(5,1fr); gap: 0.25rem; }
  .wx-day-name { font-size: 0.75rem; }
  .wx-sea-cards { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   HERO VIDEO
   ============================================================ */
.hero { position: relative; overflow: hidden; }




/* ============================================================
   FEATURED TOURS & PACKAGES SECTION
   ============================================================ */
/* ============================================================
   FEATURED TOURS — Video Card System
   ============================================================ */
.featured-tours {
  background: #030d1e;
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.featured-inner { max-width: 1400px; margin: 0 auto; }
.featured-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: white;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
/* Infinite marquee wrapper */
.featured-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: clip;              /* clip horizontally for marquee */
  overflow-y: visible;           /* allow vertical growth on hover */
  padding: 3rem 0 4rem;          /* room for hover scale overflow */
  position: relative;
}
/* The track holds originals + clones and slides left via CSS */
.featured-scroll .marquee-track {
  display: flex;
  gap: 1.25rem;
  animation: marquee-scroll var(--marquee-dur, 60s) linear infinite;
  will-change: transform;
}
/* Our Next Adventure section — HERO PROMINENCE */
.next-adventure {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(244,160,32,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(244,160,32,0.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  padding: 3.5rem 0 4rem;
  border-top: 2px solid rgba(244,160,32,0.25);
  border-bottom: 2px solid rgba(244,160,32,0.15);
  position: relative;
}
.next-adventure::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #f4a020 30%, #f4a020 70%, transparent 100%);
  animation: shimmer-line 3s ease-in-out infinite;
}
@keyframes shimmer-line {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.next-adventure .section-label {
  color: #f4a020;
  font-size: 13px;
  letter-spacing: 3px;
  animation: pulse-label 2s ease-in-out infinite;
}
@keyframes pulse-label {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.next-adventure h2 {
  color: #f4a020;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
.next-adventure .section-sub {
  font-size: 15px;
}
/* Adventure scroll — marquee for multiple, centered for single */
#adventureScroll {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 32px 0 40px;
  position: relative;
}
#adventureScroll .adv-track {
  display: flex;
  gap: 32px;
  animation: adv-marquee var(--adv-marquee-dur, 24s) linear infinite;
  will-change: transform;
}
#adventureScroll.paused .adv-track {
  animation-play-state: paused;
}
@keyframes adv-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 16px)); }
}
@keyframes adv-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(calc(-50% - 16px)); }
}
/* Card — full-bleed flyer poster */
.adv-card {
  display: block;
  min-width: 420px;
  max-width: 480px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #fff;
  border: 2px solid rgba(244,160,32,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.adv-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 60px rgba(244,160,32,0.25);
  border-color: rgba(244,160,32,0.5);
}
/* Media fills entire card — this is the flyer */
.adv-card-media {
  width: 100%;
  height: 520px;
}
.adv-card-media img, .adv-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Overlay at bottom — glass over image */
.adv-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85) 40%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.adv-card-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.adv-card-overlay .adv-loc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.adv-card-price {
  align-self: flex-start;
  background: rgba(0,0,0,0.7);
  color: #f4a020;
  padding: 5px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  backdrop-filter: blur(4px);
  margin-bottom: 6px;
}
.adv-card-cta {
  display: inline-block;
  background: linear-gradient(135deg, #f4a020, #e69500);
  color: #000;
  padding: 11px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-top: 10px;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(244,160,32,0.3);
  transition: background 0.2s, transform 0.15s;
}
.adv-card:hover .adv-card-cta { background: linear-gradient(135deg, #e69500, #d48900); transform: scale(1.04); }
@media (max-width: 500px) {
  .adv-card { min-width: 90vw; max-width: 90vw; }
  .adv-card-media { height: 400px; }
}

.featured-scroll:hover .marquee-track,
.featured-scroll.touch-paused .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.625rem)); }
  /* -50% because cards are duplicated; -0.625rem = half the gap */
}

/* Video Card */
.featured-card.vc {
  flex: 0 0 300px;
  border-radius: 14px;
  overflow: visible;             /* let hover scale overflow */
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.35s ease,
              z-index 0s 0.35s;
  position: relative;
  z-index: 1;
}
.featured-card.vc:hover {
  transform: scale(1.6);
  box-shadow: 0 28px 60px rgba(0,0,0,0.7), 0 0 0 2px rgba(0,119,182,0.5);
  z-index: 10;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.35s ease,
              z-index 0s 0s;      /* z-index instant on hover-in */
}
.vc-media {
  position: relative;
  width: 100%;
  height: 420px;
  background: #020c1b;
  overflow: hidden;
  border-radius: 14px;           /* clip content within card shape */
}
.vc-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.vc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}
.featured-card.vc:hover .vc-video { opacity: 1; }
/* Only hide poster when a video sibling exists to replace it */
.featured-card.vc:hover .vc-media:has(.vc-video) .vc-poster { opacity: 0; }

/* Overlay — always present, info slides up on hover */
.vc-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(2,12,27,0.96) 0%,
    rgba(2,12,27,0.65) 45%,
    rgba(2,12,27,0.1) 70%,
    transparent 100%
  );
  padding: 1.25rem;
  transition: background 0.3s ease;
}
.featured-card.vc:hover .vc-overlay {
  background: linear-gradient(
    to top,
    rgba(2,12,27,0.97) 0%,
    rgba(2,12,27,0.82) 55%,
    rgba(2,12,27,0.3) 80%,
    transparent 100%
  );
}

/* Badge */
.vc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  background: rgba(0,119,182,0.85);
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 4;
}
.vc-badge.urgent {
  background: rgba(214,48,49,0.85);
  animation: urgentPulse 2s ease infinite;
}
@keyframes urgentPulse {
  0%,100% { opacity:1; }
  50% { opacity:0.7; }
}

/* Card info text */
.vc-info {
  transform: translateY(12px);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.featured-card.vc:hover .vc-info { transform: translateY(0); }
.vc-info h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.vc-info ul {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.1s ease, transform 0.3s 0.1s ease;
}
.featured-card.vc:hover .vc-info ul { opacity: 1; transform: translateY(0); }
.vc-info ul li {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1rem;
  position: relative;
}
.vc-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* CTA button on card */
.vc-btn {
  display: inline-block;
  background: var(--ocean-blue);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s 0.15s ease, transform 0.25s 0.15s ease, background 0.2s ease;
}
.featured-card.vc:hover .vc-btn { opacity: 1; transform: translateY(0); }
.vc-btn:hover { background: #0096c7; }

/* Nav arrows */
.featured-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.25rem;
}
.feat-nav-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.feat-nav-btn:hover { background: rgba(0,119,182,0.3); border-color: rgba(0,119,182,0.5); }

@media (max-width: 768px) {
  .featured-card.vc { flex: 0 0 240px; }
  .vc-media { height: 340px; }
  /* On touch: always show info */
  .vc-info ul { opacity: 1; transform: translateY(0); }
  .vc-btn { opacity: 1; transform: translateY(0); }
  .featured-card.vc:hover { transform: scale(1.3); }  /* tighter zoom on mobile */
}

/* ============================================================
   SLIM WEATHER TOP BAR (homepage only)
   ============================================================ */
.wx-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2100;
  background: rgba(2,12,27,0.97);
  border-bottom: 1px solid rgba(0,119,182,0.25);
  padding: 0.35rem 1.5rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.wx-topbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.wx-topbar-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  white-space: nowrap;
  text-transform: uppercase;
}
.wx-topbar-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  max-width: 175px;
}
.wx-topbar-select option { background: #020c1b; color: white; }
.wx-topbar-data {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: white;
  flex-wrap: wrap;
}
.wx-topbar-desc { color: rgba(255,255,255,0.6); }
.wx-topbar-stat { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.wx-topbar-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ocean-blue);
  text-decoration: none;
  border: 1px solid rgba(0,119,182,0.4);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  white-space: nowrap;
  transition: all var(--transition);
}
.wx-topbar-link:hover { background: var(--ocean-blue); color: white; }
/* Push nav down on pages with topbar */
body.has-topbar .nav { top: 34px !important; }
body.has-topbar .nav.scrolled { top: 34px !important; }
body.has-topbar .hero { padding-top: calc(var(--nav-h) + 34px) !important; }
body.has-topbar .map-filters { top: calc(var(--nav-h) + 34px) !important; }
body.has-topbar .waiver-progress { top: calc(var(--nav-h) + 34px) !important; }

@media (max-width: 768px) {
  .featured-card { flex: 0 0 220px !important; }
  .featured-img  { height: 270px; }
  .wx-topbar-stat  { display: none; }
  .wx-topbar-desc  { display: none; }
  .wx-topbar { padding: 0.3rem 1rem; }
  /* duplicate removed */
}

/* Auth nav button */
.nav-auth-btn {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
  text-transform: uppercase;
}
.nav-auth-btn:hover { color: white; }

/* Visible ghost Sign In button in nav */
.btn-nav-ghost {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.45rem 1rem;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav-ghost:hover {
  border-color: var(--ocean-blue);
  color: var(--ocean-blue);
  background: rgba(0,119,182,0.08);
}

/* ── NAV SOCIAL ICONS ── */
.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: 1.1rem;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(201,151,58,0.2);
}
.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(213,200,185,0.5);
  transition: color 0.25s, transform 0.2s;
  text-decoration: none;
}
.nav-social-link:hover {
  color: var(--gold);
  transform: translateY(-1px);
}
@media(max-width:768px) {
  .nav-social-icons { display: none; }
}

/* ── Accessibility: screen-reader-only utility ─────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Footer column heading (replaces h4 to fix heading order) ──── */
.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
