/*
 * GREENOUGH'S GUIDE SERVICE - Master Stylesheet
 * =============================================
 *
 * PSYCHOLOGICAL TACTICS (20+):
 * 1. Color Psychology - Navy (trust/authority), Teal (clarity/calm), Gold (premium/action)
 * 2. Typography Hierarchy - Display font creates authority, body font ensures readability
 * 3. Social Proof Integration - Kansas City Star, Resort recommendations embedded throughout
 * 4. Scarcity/Urgency - "Prime dates fill up months in advance" messaging
 * 5. Loss Aversion - "Don't let your vacation become the trip you wished you had gone fishing"
 * 6. Enrollment Questions - "Would that be worth a phone call?" psychological commitment
 * 7. Authority Signals - USCG Licensed, Commercially Insured badges
 * 8. Reciprocity - Free local knowledge, education before booking
 * 9. Anchoring - Half-day price shown first to anchor expectations
 * 10. Commitment/Consistency - Multi-step booking form creates investment
 * 11. Liking - Personal story, approachable photography
 * 12. Consensus - "1000s of happy clients" counters
 * 13. Unity - "Local guide who knows every cove" - insider positioning
 * 14. Storytelling - "The best show in Branson" narrative hook
 * 15. Challenger Insight - "Table Rock fishes completely different than your home water"
 * 16. Paradox of Choice - Only 3 trip options to reduce decision paralysis
 * 17. Peak-End Rule - Gallery/reviews placed for memorable impression
 * 18. Mere Exposure - Consistent branding increases familiarity/trust
 * 19. Processing Fluency - Clean design, clear hierarchy reduces cognitive load
 * 20. Embodied Cognition - Immersive imagery creates mental simulation
 * 21. Emotional Contagion - Smiling clients in photos transfer positive emotion
 *
 * VISUAL TACTICS (20+):
 * 1. Hero Gradient - Dynamic background responds to cursor (desktop)
 * 2. Wave Dividers - Organic section transitions evoke water/nature
 * 3. Glass Morphism - Modern frosted glass effects
 * 4. 3D Card Transforms - Perspective transforms on hover
 * 5. Parallax Scrolling - Multi-layer depth on scroll
 * 6. Animated Counters - Numbers count up on scroll visibility
 * 7. Blob Animations - Organic floating shapes in background
 * 8. Micro-interactions - Button press states, hover effects
 * 9. Staggered Reveals - Elements fade/slide in sequence
 * 10. Progressive Disclosure - FAQ accordions, multi-step forms
 * 11. Floating Elements - Subtle animation creates life
 * 12. Image Treatments - Rounded corners, shadow depth
 * 13. Responsive Typography - clamp() for fluid sizing
 * 14. Grid Systems - Consistent spacing and alignment
 * 15. Color Transitions - Smooth hover state changes
 * 16. Icon Integration - Emoji and SVG icons for visual interest
 * 17. Progress Indicators - Booking form progress bar
 * 18. Card Elevation - Shadow hierarchy shows importance
 * 19. Whitespace Management - Breathing room for content
 * 20. Mobile-First Approach - Touch-friendly targets, simplified layouts
 * 21. WebGL Water Effects - Three.js animated water scene in hero
 * 22. Particle Systems - Floating fish/bubble particles
 * 23. Scroll-Triggered Animations - GSAP ScrollTrigger integration
 *
 * MARKETING TACTICS (20+):
 * 1. SEO-Optimized Structure - Schema.org, semantic HTML
 * 2. Local SEO - Branson, Table Rock Lake, Lake Taneycomo keywords
 * 3. FAQ Schema - Structured data for search features
 * 4. Clear CTA Hierarchy - Primary/secondary button distinction
 * 5. Phone Number Prominence - Click-to-call everywhere
 * 6. Trust Badges - USCG, Insurance, Press mentions
 * 7. Testimonial Integration - Social proof throughout
 * 8. Species-Specific Landing Pages - Long-tail keyword targeting
 * 9. Content Marketing - Educational FAQ/blog content
 * 10. Mobile CTA Persistence - Sticky booking button
 * 11. Contact Form Optimization - Progressive fields reduce abandonment
 * 12. Value Proposition - "All equipment included" messaging
 * 13. Pricing Transparency - Clear pricing builds trust
 * 14. Deposit/Cancellation Policy - Reduces booking friction
 * 15. Resort Pickup Mention - Removes logistics barrier
 * 16. Gift Certificate Upsell - Additional revenue stream
 * 17. Facebook Integration - Social proof and community
 * 18. Press Mentions - Third-party validation
 * 19. Sponsor Logos - Association with respected brands
 * 20. Privacy Policy - Trust and compliance
 * 21. Accessibility - Skip links, focus states, semantic HTML
 * 22. Core Web Vitals - Performance optimization for rankings
 */

/* ======================
   CSS CUSTOM PROPERTIES
   ====================== */
:root {
  /* Primary Colors */
  --color-navy: #1B3A5C;
  --color-navy-light: #2A5080;
  --color-navy-deep: #0D1F33;

  /* Accent Colors */
  --color-teal: #4ECDC4;
  --color-teal-dark: #3AAFA8;
  --color-teal-muted: #8ED8D0;
  --color-gold: #E8A838;
  --color-gold-dark: #C88A20;

  /* Neutral Colors */
  --color-bg: #FAFAF8;
  --color-bg-warm: #F5F0E8;
  --color-bg-sand: #E8D5B7;
  --color-cream: #FFF8F0;
  --color-white: #FFFFFF;

  /* Text Colors */
  --color-text: #1A2A3A;
  --color-text-light: #4A5A6A;
  --color-text-muted: #7A8A9A;
  --color-charcoal: #2C2C2C;

  /* Semantic Colors */
  --color-success: #4CAF50;
  --color-error: #E63946;
  --color-coral: #E07A5F;

  /* Typography */
  --font-display: 'Alfa Slab One', serif;
  --font-body: 'Nunito Sans', sans-serif;

  /* Font Sizes */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 18px;
  --text-lg: 21px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 42px;
  --text-4xl: 56px;
  --text-5xl: 75px;

  /* Spacing */
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;
  --space-96: 96px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(27,58,92,0.08);
  --shadow-md: 0 4px 20px rgba(27,58,92,0.1);
  --shadow-lg: 0 8px 40px rgba(27,58,92,0.14);
  --shadow-xl: 0 16px 60px rgba(27,58,92,0.18);
  --shadow-3d: 0 6px 0 rgba(27,58,92,0.2);
  --shadow-float: 0 20px 50px rgba(27,58,92,0.2);

  /* Transitions */
  --transition-quick: all 0.2s cubic-bezier(0.4,0,0.2,1);
  --transition-medium: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.5s cubic-bezier(0.4,0,0.2,1);

  /* Glass Effects */
  --glass-light: rgba(255,255,255,0.6);
  --glass-dark: rgba(27,58,92,0.15);
  --glass-border: rgba(255,255,255,0.3);
  --glass-blur: blur(20px);

  /* Breakpoints (for reference) */
  --breakpoint-mobile: 768px;
  --breakpoint-tablet: 1024px;
}

/* ======================
   RESET & BASE STYLES
   ====================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
}

img, svg, video, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ======================
   KEYFRAME ANIMATIONS
   ====================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes wave {
  0% {
    d: path('M0,64 C160,96 320,32 480,64 C640,96 800,32 960,64 L960,120 L0,120Z');
  }
  50% {
    d: path('M0,64 C160,32 320,96 480,64 C640,32 800,96 960,64 L960,120 L0,120Z');
  }
  100% {
    d: path('M0,64 C160,96 320,32 480,64 C640,96 800,32 960,64 L960,120 L0,120Z');
  }
}

@keyframes blob {
  0%, 100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  }
  50% {
    border-radius: 55% 45% 30% 70% / 40% 65% 35% 60%;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* ======================
   SKIP LINK - ACCESSIBILITY
   ====================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-quick);
}

.skip-link:focus {
  top: 16px;
}

/* ======================
   HEADER & NAVIGATION
   ====================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px clamp(16px, 5vw, 80px);
  transition: var(--transition-medium);
}

.header--scrolled {
  padding: 10px clamp(16px, 5vw, 80px);
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  cursor: pointer;
  text-decoration: none;
}

.header__logo-img {
  height: 42px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--color-navy);
}

/* Desktop Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-24);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-24);
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: var(--transition-quick);
}

.nav__link:hover,
.nav__link.active {
  font-weight: 700;
  color: var(--color-navy);
  border-bottom-color: var(--color-teal);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: var(--transition-quick);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Navigation Panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--color-bg);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: var(--transition-medium);
  padding: 80px var(--space-24) var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--color-bg-warm);
  transition: var(--transition-quick);
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  color: var(--color-navy);
}

/* Mobile CTA Bar */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: var(--space-8) var(--space-16);
  display: none;
  gap: var(--space-8);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-cta.visible {
  display: flex;
}

.mobile-cta__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 20px;
  text-decoration: none;
}

/* ======================
   BUTTONS
   ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-16) var(--space-32);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  min-height: 48px;
  min-width: 44px;
  text-decoration: none;
  transition: var(--transition-quick);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-navy-deep);
  border: none;
  box-shadow: 0 4px 0 var(--color-gold-dark);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--color-gold-dark);
}

.btn--primary:active {
  transform: translateY(4px);
  box-shadow: none;
}

.btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
  box-shadow: 0 4px 0 var(--color-bg-sand);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--color-bg-sand);
}

.btn--secondary:active {
  transform: translateY(4px);
  box-shadow: none;
}

.btn--white {
  background: var(--color-white);
  color: var(--color-navy);
  border: none;
  box-shadow: 0 4px 0 rgba(255,255,255,0.3);
}

.btn--small {
  padding: 10px 22px;
  font-size: var(--text-sm);
}

.btn--large {
  padding: var(--space-16) var(--space-48);
  font-size: var(--text-md);
}

.btn--full {
  width: 100%;
}

/* ======================
   GLASS MORPHISM
   ====================== */
.glass {
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-24);
}

.glass--dark {
  background: var(--glass-dark);
}

/* ======================
   SECTIONS
   ====================== */
.section {
  padding: clamp(48px, 8vw, 96px) clamp(16px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}

.section--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.section--alt {
  background: var(--color-bg-warm);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-48);
}

.section__eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-8);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--color-navy);
  line-height: 1.2;
}

.section--dark .section__title {
  color: var(--color-white);
}

.section__subtitle {
  font-size: var(--text-md);
  color: var(--color-text-light);
  max-width: 600px;
  margin: var(--space-16) auto 0;
  line-height: 1.8;
}

/* ======================
   HERO SECTION
   ====================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px clamp(16px, 5vw, 80px) clamp(48px, 8vw, 96px);
  background: linear-gradient(170deg, var(--color-bg) 0%, var(--color-bg-warm) 30%, rgba(232, 213, 183, 0.27) 100%);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/branson-fishing.jpg') center/cover;
  opacity: 0.1;
}

.hero__blob {
  position: absolute;
  opacity: 0.2;
  animation: blob 18s ease-in-out infinite;
}

.hero__blob--1 {
  top: -15%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(27, 58, 92, 0.13));
}

.hero__blob--2 {
  bottom: -20%;
  left: -8%;
  width: 450px;
  height: 450px;
  background: linear-gradient(45deg, rgba(27, 58, 92, 0.13), rgba(78, 205, 196, 0.2));
  animation-delay: 4s;
  animation-duration: 22s;
  opacity: 0.15;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, var(--color-navy) 39px, var(--color-navy) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, var(--color-navy) 39px, var(--color-navy) 40px);
  background-size: 40px 40px;
}

.hero__content {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-48);
  align-items: center;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-24);
  animation: fadeUp 0.8s ease-out both;
}

.hero__eyebrow-icon {
  font-size: var(--text-sm);
}

.hero__eyebrow-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-light);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  color: var(--color-navy);
  max-width: 800px;
  margin-bottom: var(--space-24);
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero__title-accent {
  color: var(--color-teal);
}

.hero__subtitle {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 600px;
  margin-bottom: var(--space-32);
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.hero__cta {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
  margin-bottom: var(--space-32);
  animation: fadeUp 0.8s ease-out 0.6s both;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-24);
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.8s both;
}

.hero__trust-item {
  font-size: var(--text-sm);
  font-weight: 600;
}

.hero__image {
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.hero__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ======================
   PAGE HERO (Interior Pages)
   ====================== */
.page-hero {
  padding: 140px clamp(16px, 5vw, 80px) var(--space-48);
  background: linear-gradient(170deg, var(--color-bg), var(--color-bg-warm));
  text-align: center;
}

.page-hero__eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-8);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--color-navy);
  margin-bottom: var(--space-24);
  line-height: 1.1;
}

.page-hero__subtitle {
  font-size: var(--text-md);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ======================
   WAVE DIVIDER
   ====================== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider--flip {
  transform: rotate(180deg);
}

.wave-divider svg {
  width: 100%;
  height: clamp(40px, 6vw, 80px);
  display: block;
}

.wave-divider__path {
  animation: wave 8s ease-in-out infinite;
}

/* ======================
   CARDS
   ====================== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

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

.card--3d {
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card__content {
  padding: var(--space-24);
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-navy);
  margin-bottom: var(--space-8);
}

.card__subtitle {
  font-size: var(--text-sm);
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: var(--space-12);
}

.card__text {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-light);
}

/* Service Cards */
.service-card {
  text-align: center;
  padding: var(--space-32);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-16);
  font-size: 1.5rem;
}

/* Trip Cards */
.trip-card {
  padding: var(--space-32);
  border: 1px solid var(--color-bg-warm);
  position: relative;
}

.trip-card--featured {
  background: var(--color-navy);
  color: var(--color-white);
  border: 2px solid var(--color-teal);
}

.trip-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-navy-deep);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
}

.trip-card__price {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-teal);
}

.trip-card--featured .trip-card__price {
  color: var(--color-teal);
}

.trip-card__includes {
  list-style: none;
  margin: var(--space-24) 0;
}

.trip-card__includes li {
  font-size: var(--text-sm);
  line-height: 1.8;
  display: flex;
  gap: var(--space-8);
}

.trip-card__includes li::before {
  content: '✓';
  color: var(--color-teal);
}

/* Stat Cards */
.stat-card {
  text-align: center;
  padding: var(--space-24);
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--color-teal);
}

.stat-card__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Review Cards */
.review-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-24);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-teal);
}

.review-card--press {
  border-left-color: var(--color-gold);
}

.review-card__stars {
  color: var(--color-gold);
  font-size: var(--text-lg);
  margin-bottom: var(--space-12);
}

.review-card__quote {
  font-size: var(--text-base);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-16);
}

.review-card__author {
  font-weight: 700;
  font-size: var(--text-sm);
}

.review-card__location {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  margin-left: var(--space-8);
}

/* ======================
   GRIDS
   ====================== */
.grid {
  display: grid;
  gap: var(--space-24);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ======================
   FAQ ACCORDION
   ====================== */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-24) 0;
  cursor: pointer;
}

.faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__question {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--color-teal);
  flex: 1;
  padding-right: var(--space-16);
}

.faq-item__toggle {
  font-size: 24px;
  color: var(--color-teal);
  transition: var(--transition-quick);
}

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

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-medium);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--space-16);
}

/* ======================
   FORMS
   ====================== */
.form-group {
  margin-bottom: var(--space-16);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 4px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-16);
  border: 1px solid var(--color-bg-warm);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  min-height: 48px;
  transition: var(--transition-quick);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
}

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

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-16);
  background: var(--color-bg);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-quick);
  min-height: 48px;
}

.form-radio-label:hover {
  background: rgba(27, 58, 92, 0.05);
}

.form-radio-label.selected {
  background: rgba(27, 58, 92, 0.06);
  border-color: var(--color-navy);
}

.form-radio {
  accent-color: var(--color-navy);
}

/* Progress Bar */
.progress-bar {
  height: 4px;
  background: var(--color-bg-warm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-24);
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-navy), var(--color-teal));
  border-radius: var(--radius-full);
  transition: var(--transition-medium);
}

.progress-bar__info {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

/* ======================
   GALLERY
   ====================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__caption {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-light);
  margin-top: var(--space-8);
  text-align: center;
}

/* ======================
   FOOTER
   ====================== */
.footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-64) clamp(16px, 5vw, 80px) var(--space-24);
}

.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-48);
}

.footer__logo {
  height: 50px;
  margin-bottom: var(--space-16);
}

.footer__description {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer__title {
  font-family: var(--font-display);
  color: var(--color-teal);
  margin-bottom: var(--space-16);
}

.footer__links {
  list-style: none;
}

.footer__links a,
.footer__links span {
  font-size: var(--text-sm);
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition-quick);
}

.footer__links a:hover,
.footer__links span:hover {
  color: var(--color-teal);
}

.footer__phone {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-48);
  padding-top: var(--space-24);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-16);
  align-items: center;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer__credits {
  display: flex;
  gap: var(--space-16);
  align-items: center;
}

.footer__credits span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer__credits a {
  color: var(--color-teal);
  text-decoration: none;
}

/* ======================
   SCROLL REVEAL ANIMATIONS
   ====================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: var(--transition-slow);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: var(--transition-slow);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ======================
   UTILITIES
   ====================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-8 {
  gap: var(--space-8);
}

.gap-16 {
  gap: var(--space-16);
}

.gap-24 {
  gap: var(--space-24);
}

.gap-32 {
  gap: var(--space-32);
}

.gap-48 {
  gap: var(--space-48);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mb-16 {
  margin-bottom: var(--space-16);
}

.mb-24 {
  margin-bottom: var(--space-24);
}

.mb-32 {
  margin-bottom: var(--space-32);
}

.mb-48 {
  margin-bottom: var(--space-48);
}

.mt-16 {
  margin-top: var(--space-16);
}

.mt-24 {
  margin-top: var(--space-24);
}

.mt-48 {
  margin-top: var(--space-48);
}

.max-w-600 {
  max-width: 600px;
}

.max-w-700 {
  max-width: 700px;
}

.max-w-800 {
  max-width: 800px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ======================
   REDUCED MOTION
   ====================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ======================
   RESPONSIVE - TABLET
   ====================== */
@media (max-width: 1024px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero__image {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================
   RESPONSIVE - MOBILE
   ====================== */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-16);
  }

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

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .btn {
    width: 100%;
  }

  .hero__cta {
    flex-direction: column;
  }

  /* Touch-friendly tap targets */
  .form-input,
  .form-textarea,
  .form-select,
  .btn {
    min-height: 44px;
  }

  /* Prevent zoom on input focus */
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 16px !important;
  }
}

/* ======================
   3D WATER SCENE (THREE.JS)
   ====================== */
#water-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

/* ======================
   LIGHTBOX
   ====================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.lightbox__nav--prev {
  left: 20px;
}

.lightbox__nav--next {
  right: 20px;
}
