/* =============================================================
   LONI'S JOURNEYS — GLOBAL DESIGN SYSTEM
   Theme: Navy #091540 | Gold #FFC72C | Cyan #38bdf8
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:          #091540;
  --navy-mid:      #0d1f5c;
  --navy-light:    #1C377A;
  --gold:          #FFC72C;
  --gold-dark:     #E8A800;
  --cyan:          #38bdf8;
  --cyan-dark:     #0ea5e9;
  --white:         #FFFFFF;
  --off-white:     #F8F6F0;
  --gray-muted:    rgba(255,255,255,0.65);
  --gray-subtle:   rgba(255,255,255,0.12);
  --border:        rgba(255,255,255,0.10);
  --transition:    all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.25);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.40);
  --radius-sm:     12px;
  --radius-md:     20px;
  --radius-lg:     40px;
  --radius-full:   9999px;
  --section-pad:   7rem 0;
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body, h1, h2, h3, h4, h5, h6,
p, a, span, button, input, select, textarea {
  font-family: 'Poppins', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p { line-height: 1.8; color: var(--gray-muted); }

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

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

section { width: 100%; position: relative; padding: var(--section-pad); }

/* ── Scroll Progress Bar ───────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  z-index: 999999;
  transition: width 0.1s linear;
}

/* ─────────────────────────────────────────────────────────────
   PRELOADER — Cinematic Curtain
   ───────────────────────────────────────────────────────────── */
#loni-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1),
              opacity  0.6s ease;
}

#loni-preloader.exit {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  z-index: 2;
  position: relative;
}

/* Animated Logo Mark */
.preloader-logo-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--cyan);
  margin: 0 auto 24px;
  animation: spinRing 1.2s linear infinite;
}

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

.preloader-brand {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--white);
  overflow: hidden;
}

.preloader-brand .word-loni {
  display: inline-block;
  animation: slideUpIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(40px);
}

.preloader-brand .word-journeys {
  display: inline-block;
  color: var(--gold);
  animation: slideUpIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
  transform: translateY(40px);
  margin-left: 10px;
}

@keyframes slideUpIn {
  to { opacity: 1; transform: translateY(0); }
}

.preloader-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 12px;
  animation: fadeIn 0.7s ease 0.5s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Progress bar inside preloader */
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 20px auto 0;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  border-radius: 2px;
  animation: barFill 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  width: 0%;
}

@keyframes barFill {
  to { width: 100%; }
}

/* Curtain panels */
.preloader-curtain {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  background: var(--navy-mid);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.1s;
}

.preloader-curtain.left  { left: 0; transform-origin: left; }
.preloader-curtain.right { right: 0; transform-origin: right; }

#loni-preloader.exit .preloader-curtain.left  { transform: translateX(-100%); }
#loni-preloader.exit .preloader-curtain.right { transform: translateX(100%); }

/* Old framer preloader - hide if present */
#framer-preloader { display: none !important; }

/* ─────────────────────────────────────────────────────────────
   LAYOUT UTILITIES
   ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold) !important; }
.text-cyan   { color: var(--cyan) !important; }

/* ─────────────────────────────────────────────────────────────
   TOP BAR
   ───────────────────────────────────────────────────────────── */
.top-bar {
  width: 100%;
  background: var(--navy-mid);
  color: var(--gray-muted);
  font-size: 0.72rem;
  padding: 0.5rem 0;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  z-index: 9998;
  position: relative;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar i { margin-right: 6px; color: var(--gold); }

.top-bar-social a {
  color: var(--gray-muted);
  font-size: 0.8rem;
  margin-left: 10px;
  transition: color 0.3s;
}

.top-bar-social a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   NAVIGATION — Fixed, Full-Width
   ───────────────────────────────────────────────────────────── */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: var(--navy);
  z-index: 99999;
  border-bottom: 1px solid var(--border);
  transition: all 0.35s ease;
}

.navbar-custom.scrolled {
  z-index: 99999;
  background: rgba(9, 21, 64, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.navbar-custom > .nav-inner {
  width: 100%;
  height: 75px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Brand */
.nav-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.3s;
}

.nav-brand-link:hover { color: var(--gold); }

.nav-brand-link i {
  color: var(--gold);
  font-size: 1.4rem;
  animation: pulse-slow 3s ease-in-out infinite;
}

@keyframes pulse-slow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.85; }
}

/* Desktop Menu */
.nav-desktop-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex: 1;
  justify-content: center;
}

.nav-desktop-menu a {
  color: rgba(255,255,255,0.80);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-desktop-menu a:hover,
.nav-desktop-menu a.active { color: var(--gold); }

/* Nav Right / CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta i { color: var(--gold); font-size: 1rem; }

.nav-cta-text { font-size: 0.68rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; display: block; line-height: 1; margin-bottom: 3px; }

/* Mobile Toggle */
.nav-mobile-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  transition: color 0.3s;
}

.nav-mobile-btn:hover { color: var(--white); }

/* Mobile Dropdown */
.nav-mobile-dropdown {
  display: none;
  width: 100%;
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 1.5rem 5%;
}

.nav-mobile-dropdown.open { display: block; }

.nav-mobile-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.nav-mobile-dropdown ul li a {
  display: block;
  padding: 0.75rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.nav-mobile-dropdown ul li a:hover { color: var(--gold); background: rgba(255,199,44,0.08); }

/* ─────────────────────────────────────────────────────────────
   HERO HEADER SPACING
   ───────────────────────────────────────────────────────────── */
body.has-topbar header.hero,
body.has-topbar header#home {
  padding-top: calc(75px + 35px + 2rem);
}

header.hero,
header#home {
  padding-top: calc(75px + 2rem);
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

header.hero .container,
header#home .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────
   SCROLL INDICATOR (Home Hero)
   ───────────────────────────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
}

.scroll-indicator-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-indicator-arrow i { color: var(--gold); font-size: 0.9rem; }

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS — Rounded Gold (Global)
   ───────────────────────────────────────────────────────────── */
.btn,
.btn-primary,
button[type="submit"],
input[type="submit"],
a.btn,
a.btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0.85rem 2rem !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  border-radius: var(--radius-full) !important;
  border: 2px solid var(--gold) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 6px 20px rgba(255, 199, 44, 0.25) !important;
  white-space: nowrap;
}

.btn:hover,
.btn-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
a.btn:hover,
a.btn-primary:hover {
  background: var(--white) !important;
  color: var(--navy) !important;
  border-color: var(--white) !important;
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 12px 30px rgba(255,255,255,0.2) !important;
}

.btn:active,
.btn-primary:active {
  transform: translateY(-1px) scale(0.98) !important;
}

.btn-outline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0.85rem 2rem !important;
  background: transparent !important;
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  border-radius: var(--radius-full) !important;
  border: 2px solid var(--gold) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.btn-outline:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: translateY(-3px) !important;
}

/* Watch Video / Secondary */
.btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0.75rem 1.8rem !important;
  background: transparent !important;
  color: var(--navy) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  border-radius: var(--radius-full) !important;
  border: 2px solid rgba(255,255,255,0.35) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: var(--cyan) !important;
  color: var(--cyan) !important;
  transform: translateY(-2px) !important;
}

/* ─────────────────────────────────────────────────────────────
   SUBTITLE LABEL
   ───────────────────────────────────────────────────────────── */
.subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.subtitle::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--navy);
}

/* ─────────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
   ───────────────────────────────────────────────────────────── */
.rvl-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  will-change: opacity, transform;
}

.rvl-reveal.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.rvl-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.rvl-scale.is-visible {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.rvl-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.rvl-left.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.rvl-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.rvl-right.is-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Stagger delays */
.rvl-d1 { transition-delay: 0.1s !important; }
.rvl-d2 { transition-delay: 0.2s !important; }
.rvl-d3 { transition-delay: 0.3s !important; }
.rvl-d4 { transition-delay: 0.4s !important; }
.rvl-d5 { transition-delay: 0.5s !important; }
.rvl-d6 { transition-delay: 0.6s !important; }

/* ─────────────────────────────────────────────────────────────
   HERO ANIMATIONS (Index)
   ───────────────────────────────────────────────────────────── */
@keyframes zoom-in-spring {
  0%   { opacity: 0; transform: scale(0.7); }
  70%  { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

.animate-zoom-in-spring {
  animation: zoom-in-spring 1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up { animation: fade-in-up 0.8s ease both; }

@keyframes fade-in-up-short {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up-short { animation: fade-in-up-short 0.6s ease both; }

.btn-hover-scale:hover { transform: scale(1.06) !important; }

/* ─────────────────────────────────────────────────────────────
   DARK SECTION / CONTENT BLOCKS
   ───────────────────────────────────────────────────────────── */
.dark-section {
  background: var(--navy);
  background-size: cover;
  background-position: center;
  position: relative;
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,21,64,0.75), rgba(9,21,64,0.85));
  z-index: 0;
}

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

.content-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.content-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,189,248,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.content-block:hover {
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.content-block:hover::before { opacity: 1; }

.icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.content-block:hover .icon-wrapper {
  background: var(--cyan);
  color: var(--navy);
}

/* ─────────────────────────────────────────────────────────────
   ADVENTURE BLOCKS (Alternating Layout)
   ───────────────────────────────────────────────────────────── */
.adventure-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
}

.adv-content h2,
.adv-content h3 { color: var(--white); }

.adv-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

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

.adv-image:hover img { transform: scale(1.05); }

/* Pill Image Containers */
.pill-img-container {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  border-radius: 200px;
  overflow: hidden;
}

.pill-img-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pill-img-container:hover img { transform: scale(1.07); }

.horizontal-pill { padding-bottom: 65%; border-radius: 200px; }

/* ─────────────────────────────────────────────────────────────
   GALLERY SLIDER
   ───────────────────────────────────────────────────────────── */
.gallery-slider-container {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.gallery-slider-item {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}

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

.gallery-slider-item.active img { transform: scale(1.06); }

.gallery-slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 3rem 2rem;
  background: linear-gradient(to top, rgba(9,21,64,0.95) 0%, transparent 100%);
}

.gallery-slider-caption h3 {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.gallery-slider-caption p {
  font-size: 0.9rem;
  color: var(--gray-muted);
  max-width: 600px;
}

.gallery-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(9,21,64,0.7);
  border: 1px solid var(--border);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.gallery-slider-arrow:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.gallery-slider-arrow.prev { left: 1.5rem; }
.gallery-slider-arrow.next { right: 1.5rem; }

.gallery-slider-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.gallery-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────────────────────
   ADVENTURE CARDS (Homepage Grid)
   ───────────────────────────────────────────────────────────── */
.adventure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.adventure-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.adventure-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.adventure-card-img { position: relative; }

.adventure-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.adventure-card:hover .adventure-card-img img { transform: scale(1.06); }

.adventure-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.adventure-card-content { padding: 1.5rem; }

.adventure-card-content h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.adventure-card-content p {
  color: var(--gray-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.adventure-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap 0.3s;
}

.adventure-card-link:hover { gap: 10px; color: var(--white); }

/* ─────────────────────────────────────────────────────────────
   STEP INDICATOR (Side)
   ───────────────────────────────────────────────────────────── */
.step-indicator {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 100;
}

.step-item {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-item::after {
  content: '';
  width: 16px;
  height: 1px;
  background: currentColor;
  border-radius: 2px;
  transition: width 0.3s;
}

.step-item.active { color: var(--gold); }
.step-item.active::after { width: 28px; }

/* ─────────────────────────────────────────────────────────────
   TIMELINE (Methodology)
   ───────────────────────────────────────────────────────────── */
.timeline-path {
  position: relative;
  padding: 3rem 0;
}

.timeline-path::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
  transform: translateX(-50%);
}

.timeline-point {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 6rem;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  background: var(--cyan);
  border-radius: 50%;
  justify-self: center;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(56, 189, 248, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.timeline-content-left { text-align: right; }
.timeline-content-right { text-align: left; }

.timeline-image-left img,
.timeline-image-right img {
  width: 100%;
  border-radius: var(--radius-md);
  max-height: 280px;
  object-fit: cover;
}

/* ─────────────────────────────────────────────────────────────
   BLOG CARDS
   ───────────────────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,199,44,0.3);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.blog-card:hover .blog-image img { transform: scale(1.06); }

.blog-content { padding: 1.8rem; }

.blog-category {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--gray-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.blog-read-more {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.blog-read-more:hover { gap: 10px; color: var(--white); }

.blog-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────────────────────────
   CONTACT FORM
   ───────────────────────────────────────────────────────────── */
.contact-section { padding: 4rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(255,255,255,0.03); }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--gray-muted); margin-bottom: 0.5rem; letter-spacing: 0.5px; text-transform: uppercase; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,199,44,0.05);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Contact list */
.contact-list { list-style: none; padding: 0; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 0.9rem;
}
.contact-list li i { color: var(--gold); width: 18px; flex-shrink: 0; }
.contact-list li a { color: var(--gray-muted); transition: color 0.3s; }
.contact-list li a:hover { color: var(--gold); }

/* Light Contact Theme (Yellow bg) */
.contact-light h2, .contact-light .subtitle, .contact-light p { color: var(--navy) !important; }
.contact-light .subtitle::before { background: var(--navy) !important; }
.contact-light .subtitle { color: var(--navy) !important; }
.contact-light .contact-list li, .contact-light .contact-list li a { color: var(--navy) !important; font-weight: 500; }
.contact-light .contact-list li i { color: var(--navy) !important; }
.contact-light label { color: var(--navy) !important; font-weight: 700; }
.contact-light input, .contact-light select, .contact-light textarea { background: rgba(255,255,255,0.6) !important; color: var(--navy) !important; border-color: rgba(9,21,64,0.15) !important; font-weight: 500; }
.contact-light input:focus, .contact-light select:focus, .contact-light textarea:focus { border-color: var(--navy) !important; background: rgba(255,255,255,0.95) !important; }
.contact-light .btn { background: var(--navy) !important; color: var(--white) !important; border-color: var(--navy) !important; }
.contact-light .btn:hover { background: var(--white) !important; color: var(--navy) !important; border-color: var(--white) !important; box-shadow: 0 10px 25px rgba(9,21,64,0.2) !important; }

/* ─────────────────────────────────────────────────────────────
   YOUTUBE MODAL
   ───────────────────────────────────────────────────────────── */
.yt-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 21, 64, 0.93);
  backdrop-filter: blur(10px);
  z-index: 999990;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.yt-modal-overlay.open { display: flex; }

.yt-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  background: #000;
}

.yt-modal-box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.yt-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.3s, background 0.3s;
}

.yt-modal-close:hover { color: var(--gold); background: rgba(255,255,255,0.1); }

/* ─────────────────────────────────────────────────────────────
   VISUAL EVIDENCE GRID (Adventure)
   ───────────────────────────────────────────────────────────── */
.visual-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  gap: 1rem;
  margin-top: 3rem;
}

.grid-item-featured {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding-bottom: 0 !important;
}

.grid-item-wide {
  grid-column: span 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding-bottom: 0 !important;
}

.grid-item-square {
  border-radius: var(--radius-md);
  overflow: hidden;
  padding-bottom: 0 !important;
}

.grid-item-full {
  grid-column: span 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding-bottom: 0 !important;
  height: 220px;
}

.visual-evidence-grid .pill-img-container img {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ─────────────────────────────────────────────────────────────
   BLOCKQUOTE
   ───────────────────────────────────────────────────────────── */
blockquote {
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER — Standardized Navy
   ───────────────────────────────────────────────────────────── */
.site-footer {
  width: 100%;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
  overflow: hidden;
  box-sizing: border-box;
}

.site-footer .container { max-width: 100%; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand i { color: var(--gold); }

.footer-brand {

.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }

.footer-col ul li { margin-bottom: 0.65rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a i { width: 16px; color: var(--gold); font-size: 0.75rem; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: wrap; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   BOOK PAGE — Themes Grid
   ───────────────────────────────────────────────────────────── */
.theme-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.theme-card:hover {
  border-color: rgba(255,199,44,0.3);
  transform: translateY(-5px);
  background: rgba(255,199,44,0.04);
}

.theme-card .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.theme-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.theme-card p {
  font-size: 0.85rem;
  color: var(--gray-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   CORPORATE / PRESS
   ───────────────────────────────────────────────────────────── */
.press-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}

.press-card:hover {
  border-color: rgba(56,189,248,0.35);
  transform: translateY(-6px);
}

.press-card i {
  font-size: 2.5rem;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  display: block;
}

.press-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.1rem; }
.press-card p  { font-size: 0.88rem; color: var(--gray-muted); }

/* ─────────────────────────────────────────────────────────────
   CAREGIVER / LIFE-PLANNING / MENTORSHIP PAGES
   ───────────────────────────────────────────────────────────── */
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(255,199,44,0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ─────────────────────────────────────────────────────────────
   SECTION BACKGROUNDS
   ───────────────────────────────────────────────────────────── */
.bg-navy      { background: var(--navy) !important; }
.bg-navy-mid  { background: var(--navy-mid) !important; }
.bg-navy-light { background: var(--navy-light) !important; }
.bg-white     { background: var(--white) !important; color: var(--navy) !important; }
.bg-subtle    { background: rgba(255,255,255,0.03) !important; }

/* ─────────────────────────────────────────────────────────────
   NEWSLETTER / EMAIL CTA
   ───────────────────────────────────────────────────────────── */
.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input[type="email"]:focus { border-color: var(--gold); }
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Tablet & Mobile
   ───────────────────────────────────────────────────────────── */

/* ── 1200px ── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── 992px ── */
@media (max-width: 992px) {
  :root { --section-pad: 5rem 0; }

  .nav-desktop-menu { display: none; }
  .nav-cta          { display: none; }
  .nav-mobile-btn   { display: flex; }

  .navbar-custom { top: 0 !important; }

  header.hero,
  header#home {
    padding-top: 85px;
    min-height: 85vh;
  }

  .grid-2        { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3        { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .adventure-grid { grid-template-columns: repeat(2, 1fr); }
  .adventure-block { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
  .timeline-point  { grid-template-columns: 1fr; gap: 1rem; }
  .timeline-path::before { display: none; }
  .timeline-content-left  { text-align: left; }
  .step-indicator { display: none; }
  .visual-evidence-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .grid-item-featured,
  .grid-item-wide,
  .grid-item-full { grid-column: span 2; height: 260px; }
  .grid-item-square { height: 260px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 6vw, 2.5rem); }
}

/* ── 600px ── */
@media (max-width: 600px) {
  :root { --section-pad: 3.5rem 0; }
  .container { padding: 0 4%; }
  .grid-3        { grid-template-columns: 1fr; }
  .grid-4        { grid-template-columns: 1fr; }
  .adventure-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-social { justify-content: flex-start; }
  .visual-evidence-grid { grid-template-columns: 1fr; }
  .grid-item-featured,
  .grid-item-wide,
  .grid-item-full { grid-column: span 1; }
  blockquote { font-size: 1.1rem; }
  .contact-section { padding: 2rem; }
}

/* ── 400px ── */
@media (max-width: 400px) {
  .btn, .btn-primary, a.btn, a.btn-primary {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.72rem !important;
  }
}
