/* ================================================================
   ENDURO EXPERIENCES — SAHARA DESIGN SYSTEM
   ================================================================ */

/* ── Google Fonts ──────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────────── */
:root {
  /* Sahara palette */
  --sand:          #D4A857;
  --sand-light:    #E8C97A;
  --sand-dark:     #B8902E;
  --burnt-orange:  #D4602A;
  --terracotta:    #C4532B;
  --dune-beige:    #F5E6C8;
  --night-sky:     #0A0E1A;
  --deep-navy:     #0D1321;
  --charcoal:      #1A1F2E;
  --dark-surface:  #141824;
  --card-bg:       rgba(20, 24, 36, 0.85);
  --glass-bg:      rgba(20, 24, 36, 0.5);
  --glass-border:  rgba(212, 168, 87, 0.15);
  --text-primary:  #F5F0E8;
  --text-secondary: rgba(245, 240, 232, 0.65);
  --text-muted:    rgba(245, 240, 232, 0.4);

  /* Gradients */
  --gradient-sand:    linear-gradient(135deg, #D4A857, #D4602A);
  --gradient-sunset:  linear-gradient(180deg, #0A0E1A 0%, #1A0F0A 50%, #2D1810 100%);
  --gradient-hero:    linear-gradient(180deg, rgba(10, 14, 26, 0.3) 0%, rgba(10, 14, 26, 0.6) 50%, rgba(10, 14, 26, 0.95) 100%);
  --gradient-card:    linear-gradient(145deg, rgba(212, 168, 87, 0.08), rgba(212, 96, 42, 0.05));

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Outfit', sans-serif;

  /* Sizing */
  --header-height: 80px;
  --max-width: 1400px;
  --section-padding: 120px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-smooth: 0.6s var(--ease-out-expo);
  --transition-fast:   0.3s var(--ease-out-quart);
}

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--night-sky);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

/* ── Icons ─────────────────────────────────────────────────────── */
.emoji-icon {
  font-size: 1.1em;
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
  margin-top: -0.1em;
}

/* ── Utility Classes ───────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--sand);
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
  margin: 0 auto;
}

.tours-header {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-sand);
  color: var(--night-sky);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 168, 87, 0.35);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--sand);
  border: 1px solid var(--sand);
}

.btn-outline:hover {
  background: var(--sand);
  color: var(--night-sky);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 168, 87, 0.25);
}

.btn .btn-arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── Scroll Animations ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ── Header / Navigation ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-fast), box-shadow var(--transition-fast), backdrop-filter var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(212, 168, 87, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-sand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
}

.logo:hover .logo-icon {
  transform: rotate(10deg) scale(1.05);
}

.logo-text-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-sand);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--sand-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ── Hero Section ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 80px;
}

.hero-content .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title span {
  display: block;
}

.hero-title .highlight {
  background: var(--gradient-sand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-slide-counter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 20px;
}

.hero-slide-counter .current-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
}

.hero-slide-counter .slide-dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-slide-counter .dot {
  width: 24px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.hero-slide-counter .dot.active {
  width: 40px;
  background: var(--sand);
}

/* Hero Bottom Cards */
.hero-bottom-cards {
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212, 168, 87, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.hero-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  padding: 36px 32px;
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-sand);
  transition: width var(--transition-smooth);
}

.hero-card:hover::before {
  width: 100%;
}

.hero-card:hover {
  background: rgba(30, 34, 50, 0.95);
}

.hero-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-card .card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
}

.hero-card:hover .card-link {
  gap: 14px;
}

/* ── Popular Tours Section ─────────────────────────────────────── */
.popular-tours {
  padding: var(--section-padding) 0;
}

.tours-header {
  text-align: center;
  margin-bottom: 60px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tour-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.tour-card:hover img {
  transform: scale(1.1);
}

.tour-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 26, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: background var(--transition-fast);
}

.tour-card:hover .tour-card-overlay {
  background: linear-gradient(180deg, rgba(212, 96, 42, 0.1) 0%, rgba(10, 14, 26, 0.95) 100%);
}

.tour-card-label {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.tour-card-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tour-card-sub::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--sand);
}

/* ── Video / CTA Section ───────────────────────────────────────── */
.video-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  inset: 0;
}

.video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.85) 0%, rgba(10, 14, 26, 0.5) 100%);
}

.video-content {
  position: relative;
  z-index: 2;
  padding: var(--section-padding) 0;
}

.video-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 500px;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--sand);
  background: rgba(212, 168, 87, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

.play-btn:hover {
  background: var(--sand);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(212, 168, 87, 0.4);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--sand);
  margin-left: 3px;
  transition: fill var(--transition-fast);
}

.play-btn:hover svg {
  fill: var(--night-sky);
}

/* ── About / Info Section ──────────────────────────────────────── */
.about-section {
  padding: var(--section-padding) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--sand);
  border-radius: 20px;
  opacity: 0.3;
  z-index: -1;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.stat-item {
  padding: 24px;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all var(--transition-fast);
}

.stat-item:hover {
  border-color: var(--sand);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 168, 87, 0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Expeditions Section ───────────────────────────────────────── */
.expeditions-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--night-sky) 0%, var(--dark-surface) 50%, var(--night-sky) 100%);
}

.expedition-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.expedition-card { display: flex; flex-direction: column; 
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-fast);
  position: relative;
}

.expedition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-sand);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  transform-origin: left;
}

.expedition-card:hover::before {
  transform: scaleX(1);
}

.expedition-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 87, 0.3);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.expedition-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.expedition-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.expedition-card:hover .expedition-card-image img {
  transform: scale(1.08);
}

.expedition-card-body { display: flex; flex-direction: column; height: 100%; 
  padding: 32px 28px;
}

.expedition-duration {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 168, 87, 0.12);
  border: 1px solid rgba(212, 168, 87, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}

.expedition-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.expedition-route {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.expedition-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.expedition-feature {
  padding: 6px 14px;
  background: rgba(245, 240, 232, 0.05);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.expedition-card .btn {
  width: 100%;
  justify-content: center;
}

/* ── Camp Section ──────────────────────────────────────────────── */
.camp-section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.camp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.camp-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.camp-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all var(--transition-fast);
}

.camp-feature:hover {
  border-color: rgba(212, 168, 87, 0.3);
  transform: translateX(8px);
}

.camp-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(212, 168, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.camp-feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.camp-feature-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.camp-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.camp-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.camp-image-wrapper:hover img {
  transform: scale(1.05);
}

.camp-image-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(10, 14, 26, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.camp-image-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.camp-image-badge h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

.camp-image-badge p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ── Gallery Section ───────────────────────────────────────────── */
.gallery-section {
  padding: var(--section-padding) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(10, 14, 26, 0.4);
}

.gallery-item-overlay .zoom-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 168, 87, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-item-overlay .zoom-icon {
  transform: scale(1);
}

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 168, 87, 0.15);
  border: 1px solid rgba(212, 168, 87, 0.3);
  color: var(--sand);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--sand);
  color: var(--night-sky);
}

/* ── Contact Section ───────────────────────────────────────────── */
.contact-section {
  padding: var(--section-padding) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all var(--transition-fast);
}

.contact-card:hover {
  border-color: rgba(212, 168, 87, 0.3);
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(212, 168, 87, 0.1);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  background: rgba(212, 168, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(20px);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form .form-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(212, 168, 87, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(212, 168, 87, 0.1);
  background: var(--dark-surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 300px;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--sand-light);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-payment {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-payment span {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 6px 14px;
  background: rgba(245, 240, 232, 0.05);
  border-radius: 6px;
}

/* ── Page Banner (for inner pages) ─────────────────────────────── */
.page-banner {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-banner .hero-bg img {
  animation: none;
}

.page-banner .hero-overlay {
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.4) 0%, rgba(10, 14, 26, 0.9) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-banner-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
}

/* ── Tours Detail Section ──────────────────────────────────────── */
.rental-options {
  padding: var(--section-padding) 0;
}

.rental-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.rental-card { display: flex; flex-direction: column; align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.rental-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-sand);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.rental-card:hover::after {
  transform: scaleX(1);
}

.rental-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 87, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.rental-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(212, 168, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.rental-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.rental-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── Safety Section ────────────────────────────────────────────── */
.safety-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--dark-surface) 0%, var(--night-sky) 100%);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.safety-card { display: flex; flex-direction: column; align-items: center;
  padding: 36px 28px;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  text-align: center;
  transition: all var(--transition-fast);
}

.safety-card:hover {
  border-color: rgba(212, 168, 87, 0.3);
  transform: translateY(-6px);
}

.safety-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(212, 168, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.safety-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.safety-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Map Section ───────────────────────────────────────────────── */
.map-section {
  padding: 0 0 var(--section-padding);
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 16/7;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.8) contrast(1.1) saturate(0.5) hue-rotate(15deg);
}

/* ── Parallax particles bg ─────────────────────────────────────── */
.sand-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sand-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(212, 168, 87, 0.15);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(100px); opacity: 0; }
}

/* ── Custom Cursor Dot ─────────────────────────────────────────── */
.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s;
  opacity: 0.6;
}

.cursor-dot.hovered {
  width: 14px;
  height: 14px;
  background: var(--burnt-orange);
}

.cursor-ring.hovered {
  width: 55px;
  height: 55px;
  border-color: var(--burnt-orange);
  opacity: 0.4;
}

/* ── Loading Screen ────────────────────────────────────────────── */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--night-sky);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  opacity: 0;
  animation: loadFadeIn 1s ease forwards;
}

.loading-bar {
  width: 200px;
  height: 2px;
  background: rgba(212, 168, 87, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: var(--gradient-sand);
  border-radius: 2px;
  animation: loadFill 1.8s var(--ease-out-expo) forwards;
}

@keyframes loadFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes loadFill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── About Page Specifics ──────────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--sand), rgba(212, 168, 87, 0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -48px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sand);
  border: 3px solid var(--night-sky);
  box-shadow: 0 0 0 3px rgba(212, 168, 87, 0.3);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--sand);
  margin-bottom: 8px;
}

.timeline-item h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Scroll to top ─────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--sand);
  border-color: var(--sand);
}

.scroll-top:hover svg {
  stroke: var(--night-sky);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--sand);
  stroke-width: 2;
  fill: none;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .expedition-cards { grid-template-columns: repeat(2, 1fr); }
  .rental-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 992px) {
  :root { --section-padding: 80px; }

  .about-grid,
  .camp-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content .container {
    grid-template-columns: 1fr;
  }

  .hero-slide-counter {
    flex-direction: row;
    align-items: center;
    padding-bottom: 0;
  }

  .hero-slide-counter .slide-dots {
    flex-direction: row;
  }

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

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

  .hero-cards-grid {
    grid-template-columns: 1fr;
  }

  .video-section {
    min-height: 450px;
  }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px; }
  .container { padding: 0 20px; }

  /* Reduce animation intensity for smoother mobile experience */
  .reveal {
    transform: translateY(30px);
  }
  .reveal-left {
    transform: translateX(-30px);
  }
  .reveal-right {
    transform: translateX(30px);
  }

  /* Hamburger menu */
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80vw;
    max-width: 300px;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition-smooth);
    border-left: 1px solid var(--glass-border);
    overscroll-behavior: contain;
  }

  .nav-menu.open { right: 0; }

  .nav-link {
    font-size: 1.1rem;
    letter-spacing: 3px;
    padding: 8px 0;
  }

  /* Header */
  .header-inner {
    padding: 0 16px;
  }

  .logo img {
    height: 40px !important;
  }

  .logo {
    font-size: 1.1rem;
    gap: 8px;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-slide-counter .current-num {
    font-size: 2.5rem;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Grids go single column */
  .tours-grid,
  .expedition-cards,
  .rental-cards {
    grid-template-columns: 1fr;
  }

  .safety-grid { 
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .safety-grid::-webkit-scrollbar {
    display: none;
  }
  .safety-grid > .safety-card {
    min-width: 85%;
    width: 85%;
    max-width: 85%;
    white-space: normal;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.span-2 { grid-column: span 1; }

  /* Hero bottom cards */
  .hero-card {
    padding: 24px 20px;
  }

  /* About stats */
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

  .about-grid {
    gap: 40px;
  }

  .about-image {
    aspect-ratio: 16/10;
  }

  .about-image-accent {
    display: none;
  }

  /* Camp section */
  .camp-grid {
    gap: 40px;
  }

  .camp-image-wrapper {
    aspect-ratio: 16/10;
  }

  .camp-feature:hover {
    transform: none;
  }

  /* Expeditions */
  .expedition-card:hover {
    transform: none;
  }

  .expedition-card-body {
    padding: 24px 20px;
  }

  /* Video / CTA section */
  .video-section {
    min-height: 400px;
  }

  .video-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 24px;
  }

  .play-btn {
    width: 64px;
    height: 64px;
  }

  .play-btn svg {
    width: 20px;
    height: 20px;
  }

  /* Contact */
  .contact-grid {
    gap: 40px;
  }

  .contact-card {
    padding: 18px;
    gap: 14px;
  }

  .contact-card:hover {
    transform: none;
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 32px 24px;
  }

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

  /* Page banner */
  .page-banner {
    height: 40vh;
    min-height: 280px;
  }

  .page-banner-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .page-banner-content {
    padding-bottom: 36px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-payment {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .footer-payment span {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  /* Rental cards */
  .rental-card {
    padding: 28px 20px;
  }

  .rental-card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }

  .rental-card:hover {
    transform: none;
  }

  /* Safety cards */
  .safety-card {
    padding: 28px 20px;
  }

  .safety-card-icon {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .safety-card:hover {
    transform: none;
  }

  /* Disable custom cursor on touch */
  .cursor-dot, .cursor-ring { display: none; }

  /* Lightbox mobile */
  .lightbox-img {
    max-width: 95vw;
    max-height: 75vh;
    border-radius: 8px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  /* WhatsApp + scroll-top positions (avoid overlap) */
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  /* Disable parallax on hero bg for mobile performance */
  .hero-bg img {
    animation: none;
    transform: scale(1.05);
  }

  /* Loading screen — shorter bar */
  .loading-bar {
    width: 160px;
  }
}

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

  /* Hero */
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .hero-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Contact form */
  .contact-form { padding: 24px 16px; }

  .contact-form h3 {
    font-size: 1.4rem;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }

  .section-label::before {
    width: 24px;
  }

  /* Buttons — bigger touch targets */
  .btn {
    padding: 14px 28px;
    font-size: 0.82rem;
    min-height: 48px;
  }

  /* About stats 2x2 */
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-item {
    padding: 16px;
  }

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

  .stat-label {
    font-size: 0.75rem;
  }

  /* Camp features */
  .camp-feature {
    padding: 16px;
    gap: 14px;
  }

  .camp-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.1rem;
  }

  .camp-feature-text h4 {
    font-size: 0.9rem;
  }

  .camp-feature-text p {
    font-size: 0.8rem;
  }

  /* Camp image badge */
  .camp-image-badge {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 14px 16px;
    gap: 12px;
  }

  .camp-image-badge-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .camp-image-badge h5 {
    font-size: 0.82rem;
  }

  .camp-image-badge p {
    font-size: 0.7rem;
  }

  /* Expedition features */
  .expedition-feature {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  .expedition-duration {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .expedition-card-title {
    font-size: 1.2rem;
  }

  /* Video section */
  .video-section {
    min-height: 320px;
  }

  /* Footer */
  .footer-col h4 {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }

  .footer-col a {
    font-size: 0.85rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  /* Page banner */
  .page-banner {
    height: 35vh;
    min-height: 240px;
  }

  .page-banner-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .page-banner-subtitle {
    font-size: 0.95rem;
  }

  /* Map */
  .map-wrapper {
    aspect-ratio: 16/10;
    border-radius: 16px;
  }

  /* Gallery */
  .gallery-grid {
    gap: 12px;
  }

  /* Timeline (about page) */
  .timeline {
    padding-left: 40px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item::before {
    left: -36px;
    width: 10px;
    height: 10px;
  }
}

/* ── Touch device optimizations ───────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover transforms that cause jank on touch */
  .tour-card:hover img,
  .about-image:hover img,
  .camp-image-wrapper:hover img,
  .expedition-card:hover .expedition-card-image img {
    transform: none;
  }

  .expedition-card:hover,
  .rental-card:hover,
  .safety-card:hover,
  .stat-item:hover,
  .contact-card:hover,
  .camp-feature:hover {
    transform: none;
  }

  /* Ensure smooth scrolling momentum */
  html {
    -webkit-overflow-scrolling: touch;
  }

  /* Faster transitions on touch */
  .hero-card::before {
    transition: none;
  }

  /* Disable custom cursor entirely */
  .cursor-dot, .cursor-ring {
    display: none !important;
  }
}

/* ── Smooth page transitions ──────────────────────────────────── */
.page-transition {
  animation: pageIn 0.6s var(--ease-out-expo) forwards;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── WhatsApp floating button ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}

/* ── Number counter animation ──────────────────────────────────── */
.count-up {
  display: inline-block;
}

/* Button Alignment Fix */
.expedition-card-body .btn, .rental-card .btn, .tour-card .btn, .safety-card .btn { margin-top: auto !important; }
.expedition-card-body, .rental-card, .tour-card { display: flex; flex-direction: column; align-items: flex-start; height: 100%; }
.rental-card { align-items: stretch; }



/* Lucide Icons */
.lucide {
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.2em;
}
