/* ============================================
   COLOMBIA MOTO XPERIENCE – Landing Page CSS
   Design System & Complete Styles
   ============================================ */

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

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --deep-navy: #1a2332;
  --navy-light: #243044;
  --navy-lighter: #2d3b52;
  --adventure-orange: #e8651a;
  --orange-hover: #ff7a2e;
  --orange-glow: rgba(232, 101, 26, 0.3);
  --sky-cyan: #3bb4c1;
  --cyan-hover: #4dd0de;
  --cyan-glow: rgba(59, 180, 193, 0.25);
  --cloud-white: #f5f7fa;
  --pure-white: #ffffff;
  --mist-gray: #8a95a5;
  --text-light: #c5cdd8;
  --forest-green: #2d8a4e;
  --whatsapp-green: #25d366;
  --whatsapp-hover: #20bf5b;
  --star-gold: #fbbf24;
  --danger-red: #ef4444;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, rgba(26,35,50,0.85) 0%, rgba(26,35,50,0.4) 50%, rgba(26,35,50,0.7) 100%);
  --gradient-dark: linear-gradient(180deg, #1a2332 0%, #0f1721 100%);
  --gradient-card: linear-gradient(135deg, rgba(36,48,68,0.6) 0%, rgba(26,35,50,0.8) 100%);
  --gradient-orange: linear-gradient(135deg, #e8651a 0%, #ff8c42 100%);
  --gradient-cyan: linear-gradient(135deg, #3bb4c1 0%, #5de0ec 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;
  
  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --glass-border: 1px solid rgba(255,255,255,0.1);
  
  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.4);
  --shadow-glow-orange: 0 0 40px rgba(232,101,26,0.2);
  --shadow-glow-cyan: 0 0 40px rgba(59,180,193,0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll; /* Prevent horizontal jumps by always showing vertical scrollbar */
}

body {
  font-family: var(--font-body);
  background: var(--deep-navy);
  color: var(--cloud-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; /* Momentum scrolling for mobile */
}

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

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

ul, ol {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky-cyan);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--sky-cyan);
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--mist-gray);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translate3d(0, 20px, 0); /* Use translate3d for better performance */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: transform, opacity;
  backface-visibility: hidden; /* Prevent flickering */
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--pure-white);
  box-shadow: 0 4px 20px var(--orange-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,101,26,0.4);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--pure-white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  font-size: 1.1rem;
  padding: 18px 42px;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cloud-white);
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--sky-cyan);
  color: var(--sky-cyan);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--gradient-cyan);
  color: var(--deep-navy);
  font-weight: 700;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--cyan-glow);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* --- Glass Card --- */
.glass-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.glass-card:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 1;
}

/* Brush stroke bottom edge */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%231a2332' d='M0,32L48,37.3C96,43,192,53,288,48C384,43,480,21,576,16C672,11,768,21,864,32C960,43,1056,53,1152,53.3C1248,53,1344,43,1392,37.3L1440,32L1440,80L1392,80C1344,80,1248,80,1152,80C1056,80,960,80,864,80C768,80,672,80,576,80C480,80,384,80,288,80C192,80,96,80,48,80L0,80Z'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: cover;
  z-index: 2;
}

.hero-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.hero-lang {
  position: absolute;
  top: 32px;
  right: 24px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-lang a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all var(--transition-fast);
  color: rgba(255,255,255,0.7);
}

.hero-lang a.active {
  background: var(--adventure-orange);
  border-color: var(--adventure-orange);
  color: var(--pure-white);
}

.hero-lang a:hover:not(.active) {
  border-color: var(--pure-white);
  color: var(--pure-white);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  letter-spacing: -0.5px;
}

.hero-content h1 .highlight {
  color: var(--adventure-orange);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.hero-stars {
  color: var(--star-gold);
  letter-spacing: 2px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  width: 100px;
  margin: 0 auto;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scroll-bounce 2s infinite ease-in-out;
  will-change: transform;
  pointer-events: none;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
}

.scroll-indicator .arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ======================
   SECTION 2: TRUST BAR
   ====================== */
.trust-bar {
  padding: 50px 0;
  background: var(--deep-navy);
  position: relative;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  background: var(--gradient-glass);
  border: var(--glass-border);
  transition: all var(--transition-base);
}

.trust-item:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.trust-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--pure-white);
  margin-bottom: 4px;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--mist-gray);
  font-weight: 500;
}

/* ======================
   SECTION 3: HOW IT WORKS
   ====================== */
.how-it-works {
  padding: var(--section-padding);
  background: var(--gradient-dark);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 20%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky-cyan), transparent);
  opacity: 0.3;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--deep-navy);
  position: relative;
  box-shadow: 0 0 30px var(--cyan-glow);
  transition: all var(--transition-base);
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 50px var(--cyan-glow);
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--pure-white);
}

.step-card p {
  color: var(--mist-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ======================
   SECTION 4: TOURS
   ====================== */
.tours-section {
  padding: var(--section-padding);
  background: var(--deep-navy);
  position: relative;
}

/* Brush stroke top divider */
.tours-section::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%230f1721' d='M0,32L60,26.7C120,21,240,11,360,10.7C480,11,600,21,720,32C840,43,960,53,1080,48C1200,43,1320,21,1380,10.7L1440,0L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'/%3E%3C/svg%3E") no-repeat center top;
  background-size: cover;
  z-index: 1;
}

.tours-header {
  text-align: center;
  margin-bottom: 60px;
}

.tours-header .section-subtitle {
  margin: 0 auto;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tour-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  group: tour;
}

.tour-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.tour-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-bg img {
  transform: scale(1.08);
}

.tour-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.tour-card:hover .tour-card-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.3) 100%);
}

.tour-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.tour-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-duration {
  background: rgba(59,180,193,0.2);
  color: var(--sky-cyan);
  border: 1px solid rgba(59,180,193,0.3);
}

.badge-difficulty-low {
  background: rgba(45,138,78,0.2);
  color: #4ade80;
  border: 1px solid rgba(45,138,78,0.3);
}

.badge-difficulty-high {
  background: rgba(232,101,26,0.2);
  color: var(--adventure-orange);
  border: 1px solid rgba(232,101,26,0.3);
}

.badge-difficulty-extreme {
  background: rgba(239,68,68,0.2);
  color: var(--danger-red);
  border: 1px solid rgba(239,68,68,0.3);
}

.tour-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--pure-white);
}

.tour-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--adventure-orange);
}

.tour-price span {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--mist-gray);
}

.tour-card-cta {
  margin-top: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.tour-card:hover .tour-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ======================
   SECTION 5: GALLERY / VIDEO
   ====================== */
.gallery-section {
  padding: 80px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 24px;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 350px;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}

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

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

.video-container {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-card);
  border: var(--glass-border);
}

.video-container video,
.video-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================
   SECTION 6: TESTIMONIALS
   ====================== */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--deep-navy);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  padding: 36px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--adventure-orange);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  color: var(--star-gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--deep-navy);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--pure-white);
}

.testimonial-origin {
  font-size: 0.8rem;
  color: var(--mist-gray);
}

/* ======================
   SECTION 7: WHY COLOMBIA
   ====================== */
.why-colombia {
  padding: var(--section-padding);
  background: var(--gradient-dark);
  position: relative;
}

.why-colombia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.why-colombia-text h2 {
  margin-bottom: 24px;
}

.why-features {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-glass);
  border: var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.why-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--pure-white);
}

.why-feature p {
  font-size: 0.9rem;
  color: var(--mist-gray);
  line-height: 1.6;
}

.why-colombia-visual {
  position: relative;
}

.why-colombia-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.why-colombia-visual::after {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--sky-cyan);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}

/* ======================
   SECTION 8: FLEET
   ====================== */
.fleet-section {
  padding: var(--section-padding);
  background: var(--deep-navy);
  position: relative;
}

.fleet-header {
  text-align: center;
  margin-bottom: 60px;
}

.fleet-header .section-subtitle {
  margin: 0 auto;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fleet-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.fleet-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--transition-base);
}

.fleet-card:hover .fleet-card-img {
  transform: scale(1.05);
}

.fleet-card-img img {
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.fleet-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.fleet-card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--adventure-orange);
}

.fleet-card-price span {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--mist-gray);
}

/* ======================
   SECTION 9: FAQ
   ====================== */
.faq-section {
  padding: var(--section-padding);
  background: var(--gradient-dark);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--glass-border);
  background: var(--gradient-glass);
  transition: all var(--transition-base);
}

.faq-item.active {
  border-color: rgba(59,180,193,0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--cloud-white);
  transition: color var(--transition-fast);
  user-select: none;
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(59,180,193,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--sky-cyan);
}

.faq-item.active .faq-icon {
  background: var(--sky-cyan);
  color: var(--deep-navy);
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--mist-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ======================
   SECTION 10: CTA / FORM
   ====================== */
.cta-section {
  padding: var(--section-padding);
  background: var(--deep-navy);
  position: relative;
  overflow: hidden;
}

/* Background decorative element */
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 16px;
}

.cta-content .section-subtitle {
  margin: 0 auto 40px;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-input,
.form-select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  color: var(--cloud-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-base);
  outline: none;
}

.form-input::placeholder {
  color: var(--mist-gray);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--sky-cyan);
  background: rgba(59,180,193,0.05);
  box-shadow: 0 0 0 3px rgba(59,180,193,0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a95a5' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select option {
  background: var(--deep-navy);
  color: var(--cloud-white);
}

.form-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.form-note {
  font-size: 0.85rem;
  color: var(--mist-gray);
  margin-top: 8px;
}

.form-note svg {
  vertical-align: middle;
  margin-right: 4px;
}

/* ======================
   FOOTER
   ====================== */
.footer {
  padding: 40px 0;
  background: #0f1721;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  width: 100px;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  color: var(--mist-gray);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--sky-cyan);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ======================
   FLOATING WHATSAPP BUTTON
   ====================== */


/* ======================
   COUNTER ANIMATION
   ====================== */
.counter {
  display: inline-block;
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */

/* Tablet */
@media (max-width: 1024px) {
  .tours-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .why-colombia-grid {
    gap: 40px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }
  
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps-grid::before {
    display: none;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tour-card {
    aspect-ratio: 16/9;
  }

  .tour-card-cta {
    opacity: 1;
    transform: translateY(0);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .why-colombia-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-colombia-visual {
    order: -1;
  }
  
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .gallery-item {
    flex: 0 0 280px;
    height: 200px;
  }

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

  .hero-cta-group .btn {
    width: 100%;
    max-width: 320px;
  }

  .scroll-indicator {
    bottom: 90px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  :root {
    --section-padding: 56px 0;
    --container-padding: 0 16px;
  }
  
  .trust-bar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-item {
    padding: 16px 12px;
  }

  .trust-number {
    font-size: 1.4rem;
  }

  .trust-label {
    font-size: 0.75rem;
  }
  
  .glass-card {
    padding: 24px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .btn-whatsapp {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .hero-logo {
    width: 90px;
    top: 16px;
    left: 16px;
  }

  .hero-lang {
    top: 20px;
    right: 16px;
  }

  .hero-lang a {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}

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

  .fade-in, .fade-in-left, .fade-in-right, .scale-in {
    opacity: 1;
    transform: none;
  }

  .stagger-children > * {
    opacity: 1;
    transform: none;
  }
}
