/* ===================================
   PRASHANT ADVENTURE - VIBRANT ADVENTURE THEME
   Expert UI/UX Design
   =================================== */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
  /* Vibrant Adventure Color Palette */
  --adventure-orange: #ff6b35;
  --adventure-sunset: #f7931e;
  --adventure-gold: #ffb400;
  --adventure-teal: #00bfa6;
  --adventure-sky: #00b4d8;
  --adventure-forest: #2d6a4f;
  --adventure-coral: #ff7f7f;

  /* Primary Colors */
  --primary: #ff6b35;
  --primary-light: #ff8c5a;
  --primary-dark: #e55a2b;
  --secondary: #00bfa6;
  --accent: #ffb400;

  /* Neutral Palette - Light & Fresh */
  --dark: #1a1a2e;
  --gray-900: #2d3436;
  --gray-800: #4a4a5a;
  --gray-700: #636e72;
  --gray-600: #7f8c8d;
  --gray-500: #95a5a6;
  --gray-400: #bdc3c7;
  --gray-300: #dfe6e9;
  --gray-200: #f1f5f9;
  --gray-100: #f8fafc;
  --white: #ffffff;
  --cream: #fff9f0;

  /* Typography */
  --font-display: "Sora", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  /* Gradients */
  --gradient-adventure: linear-gradient(
    135deg,
    #ff6b35 0%,
    #f7931e 50%,
    #ffb400 100%
  );
  --gradient-ocean: linear-gradient(135deg, #00b4d8 0%, #00bfa6 100%);
  --gradient-sunset: linear-gradient(135deg, #ff6b35 0%, #ff7f7f 100%);
  --gradient-forest: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 8px 30px rgba(255, 107, 53, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--cream);
  overflow-x: hidden;
}

/* ===================================
   IMMERSIVE ADVENTURE ATMOSPHERE
   =================================== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    #87ceeb 0%,
    #fdb99b 40%,
    #ff8c42 70%,
    #ff6b35 100%
  );
  overflow: hidden;
}

/* Mountain Silhouettes */
.animated-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background:
    linear-gradient(
      135deg,
      transparent 40%,
      #2d6a4f 40%,
      #2d6a4f 45%,
      transparent 45%
    ),
    linear-gradient(
      225deg,
      transparent 40%,
      #1a4731 40%,
      #1a4731 45%,
      transparent 45%
    ),
    linear-gradient(
      160deg,
      transparent 30%,
      #2d6a4f 30%,
      #2d6a4f 35%,
      transparent 35%
    ),
    linear-gradient(
      200deg,
      transparent 35%,
      #1a4731 35%,
      #1a4731 40%,
      transparent 40%
    );
  background-size:
    300px 100%,
    400px 100%,
    250px 100%,
    350px 100%;
  background-position:
    0% bottom,
    20% bottom,
    50% bottom,
    80% bottom;
  background-repeat: repeat-x;
  opacity: 0.15;
}

/* Sun/Moon Glow */
.animated-bg::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(255, 200, 87, 0.8) 0%,
    rgba(255, 200, 87, 0.3) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: sunPulse 4s ease-in-out infinite;
}

@keyframes sunPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 180, 0, 0.6) 0%,
    transparent 70%
  );
  top: 5%;
  right: 10%;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 191, 166, 0.5) 0%,
    transparent 70%
  );
  bottom: 30%;
  left: 5%;
  animation-delay: 7s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.5) 0%,
    transparent 70%
  );
  top: 40%;
  right: 30%;
  animation-delay: 14s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}

/* Floating Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 10%;
  animation-duration: 15s;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  width: 3px;
  height: 3px;
  left: 25%;
  animation-duration: 18s;
  animation-delay: 2s;
}
.particle:nth-child(3) {
  width: 5px;
  height: 5px;
  left: 40%;
  animation-duration: 12s;
  animation-delay: 4s;
}
.particle:nth-child(4) {
  width: 3px;
  height: 3px;
  left: 55%;
  animation-duration: 20s;
  animation-delay: 1s;
}
.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 70%;
  animation-duration: 16s;
  animation-delay: 3s;
}
.particle:nth-child(6) {
  width: 6px;
  height: 6px;
  left: 85%;
  animation-duration: 14s;
  animation-delay: 5s;
}
.particle:nth-child(7) {
  width: 3px;
  height: 3px;
  left: 15%;
  animation-duration: 22s;
  animation-delay: 6s;
}
.particle:nth-child(8) {
  width: 4px;
  height: 4px;
  left: 60%;
  animation-duration: 17s;
  animation-delay: 8s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-20vh) rotate(360deg);
    opacity: 0;
  }
}

/* ===================================
   NAVIGATION - Clean & Vibrant
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  padding: 0.75rem 1.5rem;
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-adventure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.08);
}

.nav-link.active {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.1);
  font-weight: 600;
}

.nav-cta {
  margin-left: 0.75rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--gradient-adventure);
  border: none;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-base);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   HERO SECTION - Immersive Adventure
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  position: relative;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.6s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.badge-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease 0.1s both;
  text-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-title-gradient {
  background: linear-gradient(135deg, #ffe066 0%, #ffb400 50%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  color: var(--white);
  background: var(--gradient-adventure);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  color: var(--gray-700);
  background: var(--white);
  border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-card {
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-adventure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--gray-400);
  border-radius: 11px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 0.3;
  }
}

.scroll-text {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   ADVENTURE TYPES SHOWCASE
   =================================== */
.adventure-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.adventure-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.875rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  min-width: 85px;
}

.adventure-type:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  background: linear-gradient(
    180deg,
    var(--white) 0%,
    rgba(255, 107, 53, 0.05) 100%
  );
}

.adventure-icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform var(--transition-base);
}

.adventure-type:hover .adventure-icon {
  transform: scale(1.15);
  animation: bounceIcon 0.4s ease;
}

@keyframes bounceIcon {
  0%,
  100% {
    transform: scale(1.15);
  }
  50% {
    transform: scale(1.25);
  }
}

.adventure-type span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.adventure-type:hover span {
  color: var(--primary);
}

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

/* ===================================
   ADVENTURE ELEMENTS (Floating)
   =================================== */
.adventure-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.compass {
  top: 15%;
  right: 10%;
  width: 80px;
  height: 80px;
  opacity: 0.7;
  animation:
    compassSpin 15s linear infinite,
    floatGentle 6s ease-in-out infinite;
}

@keyframes compassSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatGentle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.bird {
  font-size: 1.5rem;
  opacity: 0.6;
  animation: birdFly 12s linear infinite;
}

.bird-1 {
  top: 20%;
  left: -50px;
  animation-delay: 0s;
}

.bird-2 {
  top: 35%;
  left: -50px;
  animation-delay: 6s;
}

@keyframes birdFly {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(calc(100vw + 100px)) translateY(-50px);
    opacity: 0;
  }
}

.cloud {
  font-size: 2rem;
  opacity: 0.4;
  animation: cloudDrift 30s linear infinite;
}

.cloud-1 {
  top: 10%;
  left: -100px;
}

.cloud-2 {
  top: 25%;
  left: -100px;
  animation-delay: 15s;
  font-size: 2.5rem;
}

@keyframes cloudDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 150px));
  }
}

.trail-path {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.5) 50%,
    transparent 100%
  );
  border-radius: 2px;
  animation: trailPulse 2s ease-in-out infinite;
}

@keyframes trailPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scaleX(1.2);
  }
}

/* ===================================
   HERO BADGE (Enhanced)
   =================================== */
.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 2rem 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.6s ease;
}

.badge-icon {
  font-size: 1.1rem;
  animation: iconWobble 3s ease-in-out infinite;
}

@keyframes iconWobble {
  0%,
  100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.badge-pulse {
  position: absolute;
  right: 12px;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: badgePulse 2s ease-out infinite;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 191, 166, 0.5);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(0, 191, 166, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 191, 166, 0);
  }
}

/* Hero Title Enhanced */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.title-smaller {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title-gradient {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(
    135deg,
    #ffecd2 0%,
    #fcb69f 30%,
    #ff8c42 60%,
    #ff6b35 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 25px rgba(255, 200, 100, 0.6))
    drop-shadow(0 2px 10px rgba(255, 180, 0, 0.4));
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    filter: drop-shadow(0 4px 25px rgba(255, 200, 100, 0.6))
      drop-shadow(0 2px 10px rgba(255, 180, 0, 0.4));
  }
  50% {
    filter: drop-shadow(0 8px 35px rgba(255, 220, 120, 0.8))
      drop-shadow(0 4px 15px rgba(255, 200, 50, 0.5));
  }
}

/* Adventure Buttons */
.btn-adventure {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffb400 100%);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-adventure:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
  z-index: 1;
}

.btn-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  animation: packBounce 2s ease-in-out infinite;
}

@keyframes packBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.btn-trail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.btn-adventure:hover .btn-trail {
  transform: scaleX(1);
}

.btn-outline-adventure {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s ease;
}

.btn-outline-adventure:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

/* ===================================
   ADVENTURE MILESTONES
   =================================== */
.adventure-milestones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 3rem auto 0;
  max-width: 700px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.milestone:first-child {
  border-radius: 50px 0 0 50px;
}

.milestone:last-child {
  border-radius: 0 50px 50px 0;
}

.milestone:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.2);
}

.milestone:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.milestone-icon {
  font-size: 1.75rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.milestone-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.milestone-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.milestone-text {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.milestone-trail {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.milestone:hover .milestone-trail {
  opacity: 1;
}

/* ===================================
   TERRAIN SHOWCASE
   =================================== */
.terrain-showcase {
  margin-top: 3rem;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.terrain-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.terrain-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.terrain-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  min-width: 100px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.terrain-type:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.terrain-icon-wrap {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terrain-icon {
  font-size: 2rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.terrain-type:hover .terrain-icon {
  transform: scale(1.2);
  animation: terrainBounce 0.5s ease;
}

@keyframes terrainBounce {
  0%,
  100% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1.35);
  }
}

.terrain-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.4) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.terrain-type:hover .terrain-glow {
  opacity: 1;
}

.terrain-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.terrain-difficulty {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* Scroll Indicator Enhanced */
.scroll-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

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

.scroll-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: 4rem 1.5rem;
}

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

.section-gradient {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

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

.section-header {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 2.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 0.95rem;
  color: var(--gray-600);
}

/* ===================================
   EXPEDITION CARDS - Enhanced Adventure Style
   =================================== */
.expeditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.expedition-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.expedition-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-adventure);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 10;
}

.expedition-card:hover::before {
  transform: scaleX(1);
}

.expedition-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(255, 107, 53, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 107, 53, 0.2);
}

.expedition-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Adventure overlay on image */
.expedition-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  transition: opacity 0.3s ease;
}

.expedition-image::after {
  content: "🧭";
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 1.5rem;
  opacity: 0.8;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.4s ease;
}

.expedition-card:hover .expedition-image::after {
  transform: rotate(360deg) scale(1.2);
  opacity: 1;
}

/* Difficulty ribbon - corner element */
.expedition-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.expedition-badge.ongoing {
  background: linear-gradient(135deg, var(--secondary) 0%, #00d4aa 100%);
  color: var(--white);
}

.expedition-badge.ongoing::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.expedition-badge.upcoming {
  background: linear-gradient(135deg, var(--accent) 0%, #ffc857 100%);
  color: var(--dark);
}

.expedition-badge.upcoming::before {
  content: "⭐";
  font-size: 0.8rem;
}

.expedition-content {
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Trail line decoration */
.expedition-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gray-200) 20%,
    var(--gray-200) 80%,
    transparent 100%
  );
}

.expedition-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.625rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.expedition-card:hover .expedition-title {
  color: var(--primary);
  background: var(--gradient-adventure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expedition-description {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
  flex-grow: 1;
}

.expedition-details {
  display: flex;
  gap: 1.25rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.03) 0%,
    rgba(255, 180, 0, 0.03) 100%
  );
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 107, 53, 0.15);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
}

.detail-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  padding: 2px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 4px;
}

.btn-book {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: var(--gradient-adventure);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-book::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-book:hover::before {
  left: 100%;
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-book .btn-icon {
  transition: transform 0.3s ease;
}

.btn-book:hover .btn-icon {
  transform: translateX(4px);
}

/* ===================================
   BLOG CARDS - Enhanced Adventure Style
   =================================== */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-adventure);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.blog-card:hover::after {
  transform: scaleX(1);
}

.blog-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.blog-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 60%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.blog-image::after {
  content: "📖";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  opacity: 0.7;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.4s ease;
}

.blog-card:hover .blog-image::after {
  transform: scale(1.2) rotate(-10deg);
  opacity: 1;
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-date::before {
  content: "📅";
  font-size: 0.875rem;
}

.blog-category {
  padding: 0.3rem 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1) 0%,
    rgba(255, 180, 0, 0.1) 100%
  );
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.625rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--primary);
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
  flex-grow: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.blog-link:hover {
  border-bottom-color: var(--primary);
  gap: 0.75rem;
}

.blog-link .btn-icon {
  transition: transform 0.3s ease;
}

.blog-link:hover .btn-icon {
  transform: translateX(4px);
}

/* ===================================
   BLOG DETAIL PAGE - Premium Design
   =================================== */
.blog-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 1.5rem 3rem;
  overflow: hidden;
}

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

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.3) 0%,
    rgba(26, 26, 46, 0.7) 60%,
    rgba(26, 26, 46, 0.95) 100%
  );
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blog-hero-category {
  padding: 0.375rem 1rem;
  background: var(--gradient-adventure);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-hero-date,
.blog-hero-read {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.blog-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-hero-excerpt {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.blog-author {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem 0.625rem 0.625rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-adventure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

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

.author-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.author-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Blog Article Layout */
.blog-article {
  padding: 3rem 1.5rem;
  background: var(--white);
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
}

/* Table of Contents */
.blog-toc {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.toc-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 0.5rem;
}

.toc-list a {
  font-size: 0.85rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.375rem 0;
}

.toc-list a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

/* Main Content */
.blog-content-main {
  max-width: 700px;
}

.blog-content-main section {
  margin-bottom: 3rem;
}

.blog-lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--gray-700);
  padding-left: 1.5rem;
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
}

.blog-content-main h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.blog-content-main p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.blog-content-main ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.blog-content-main li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

/* Callout Box */
.blog-callout {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.05) 0%,
    rgba(255, 180, 0, 0.05) 100%
  );
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  margin: 1.5rem 0;
}

.blog-callout.warning {
  border-left-color: #ef4444;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.05) 0%,
    rgba(239, 68, 68, 0.02) 100%
  );
}

.callout-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.callout-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-700);
}

/* Gear Grid */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.gear-item {
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.gear-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.gear-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.gear-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  display: block;
  margin-bottom: 0.25rem;
}

.gear-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Numbered List */
.numbered-list {
  margin: 1.5rem 0;
}

.numbered-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.numbered-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.numbered-item .number {
  width: 36px;
  height: 36px;
  background: var(--gradient-adventure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.numbered-item strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.numbered-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* Tips Grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.tip-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.tip-number {
  position: absolute;
  top: -10px;
  right: 15px;
  width: 28px;
  height: 28px;
  background: var(--gradient-adventure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}

.tip-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.tip-card p {
  font-size: 0.85rem;
  margin: 0;
}

/* Blog CTA */
.blog-cta {
  padding: 2rem;
  background: var(--gradient-adventure);
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--white);
  margin: 2rem 0;
}

.blog-cta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.blog-cta .btn-adventure {
  background: var(--white);
  color: var(--primary);
}

.blog-cta .btn-adventure:hover {
  background: var(--cream);
}

/* Share Section */
.blog-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.share-label {
  font-weight: 600;
  color: var(--gray-600);
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}
.share-btn.twitter {
  background: #1da1f2;
  color: white;
}
.share-btn.whatsapp {
  background: #25d366;
  color: white;
}
.share-btn.copy {
  background: var(--gray-200);
  color: var(--gray-700);
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Blog Detail */
@media (max-width: 900px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-toc {
    position: static;
    margin-bottom: 2rem;
  }

  .toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .toc-list li {
    margin: 0;
  }

  .toc-list a {
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
  }
}

@media (max-width: 600px) {
  .blog-hero {
    min-height: 50vh;
    padding: 5rem 1rem 2rem;
  }

  .blog-hero-meta {
    gap: 0.5rem;
  }

  .gear-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .blog-author {
    padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  }

  .author-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-adventure);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.contact-form {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* ===================================
   BOOKING MODAL - Premium UI
   =================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 85vh;
  background: var(--white);
  border-radius: var(--radius-xl);
  animation: modalSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Custom scrollbar for modal body */
.modal-body {
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

@keyframes modalSlide {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal Header with Gradient */
.modal-header {
  background: var(--gradient-adventure);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
}

.modal-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.modal-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

/* Modal Body */
.modal-body {
  padding: 1.5rem;
}

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

.modal-body .form-group {
  margin-bottom: 1rem;
}

.modal-body .form-group label {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.modal-body .form-group input,
.modal-body .form-group textarea {
  padding: 0.625rem 0.875rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
  margin-top: 0.5rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--dark);
  padding: 2.5rem 1.5rem 1.5rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--gray-400);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--gradient-adventure);
  color: var(--white);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===================================
   MOBILE BOTTOM NAV - Enhanced
   =================================== */
.mobile-nav-bottom {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 0.5rem 0;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  z-index: 999;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-nav-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  padding: 0.5rem 0.75rem;
  color: var(--gray-500);
  text-decoration: none;
  transition: all var(--transition-base);
  border-radius: var(--radius-md);
}

.mobile-nav-item.active {
  color: var(--primary);
}

.mobile-nav-item.active .mobile-nav-icon {
  transform: scale(1.1);
}

.mobile-nav-icon {
  width: 22px;
  height: 22px;
  transition: transform var(--transition-base);
}

.mobile-nav-label {
  font-size: 0.65rem;
  font-weight: 600;
}

/* ===================================
   FAB & SCROLL PROGRESS
   =================================== */
.fab-container {
  position: fixed;
  bottom: 85px;
  right: 1rem;
  z-index: 998;
}

.fab {
  width: 52px;
  height: 52px;
  background: var(--gradient-adventure);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-base);
}

.fab:hover {
  transform: translateY(-3px) scale(1.05);
}

.fab-icon {
  width: 22px;
  height: 22px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-adventure);
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
}

/* ===================================
   RESPONSIVE - Comprehensive
   =================================== */

/* Tablet Landscape & Desktop Small */
@media (max-width: 1024px) {
  .hero-container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .adventure-milestones {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .milestone {
    border-radius: var(--radius-lg) !important;
    flex: 1;
    min-width: 180px;
  }

  .milestone:not(:last-child)::after {
    display: none;
  }

  .terrain-grid {
    gap: 0.5rem;
  }

  .terrain-type {
    min-width: 90px;
    padding: 0.75rem 1rem;
  }

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

/* Tablet Portrait & Large Phones */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }

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

  .nav-link {
    width: 100%;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 107, 53, 0.1);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .mobile-nav-bottom {
    display: block;
  }

  body {
    padding-bottom: 75px;
  }

  /* Hero Adjustments */
  .hero {
    padding: 5rem 1rem 2rem;
    min-height: auto !important;
  }

  .hero-container {
    padding: 0;
  }

  .hero-badge {
    padding: 0.5rem 1rem;
    margin-bottom: 1.25rem;
  }

  .badge-text {
    font-size: 0.65rem;
  }

  .title-smaller {
    font-size: 1rem;
  }

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

  .hero-description {
    font-size: 0.9rem;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .btn-adventure,
  .btn-outline-adventure {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  /* Adventure Milestones - Stack on mobile */
  .adventure-milestones {
    flex-direction: column;
    gap: 0.75rem;
    max-width: 280px;
  }

  .milestone {
    width: 100%;
    border-radius: var(--radius-lg) !important;
    justify-content: center;
    padding: 1rem 1.25rem;
  }

  .milestone-icon {
    font-size: 1.5rem;
  }

  .milestone-number {
    font-size: 1.25rem;
  }

  /* Terrain Grid - 2 columns on mobile */
  .terrain-showcase {
    margin-top: 2rem;
  }

  .terrain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .terrain-type {
    min-width: auto;
    padding: 0.75rem 0.5rem;
  }

  .terrain-icon {
    font-size: 1.5rem;
  }

  .terrain-name {
    font-size: 0.7rem;
  }

  .terrain-difficulty {
    display: none;
  }

  /* Floating Elements - Hide some for performance */
  .compass {
    width: 50px;
    height: 50px;
    top: 10%;
    right: 5%;
  }

  .bird,
  .cloud {
    display: none;
  }

  /* Scroll indicator */
  .scroll-indicator {
    display: none;
  }

  /* Cards Grid */
  .expeditions-grid,
  .blogs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .expedition-card,
  .blog-card {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Contact */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .contact-card {
    padding: 1rem;
    text-align: center;
  }

  .contact-icon {
    margin: 0 auto 0.5rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

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

  .fab-container {
    bottom: 85px;
    right: 0.75rem;
  }

  .fab {
    width: 48px;
    height: 48px;
  }

  /* Section padding */
  .section {
    padding: 3rem 1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* Medium Phones */
@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .logo-icon {
    font-size: 1.25rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .hero {
    padding: 4.5rem 0.75rem 1.5rem;
  }

  .hero-badge {
    padding: 0.4rem 0.875rem;
  }

  .badge-icon {
    font-size: 0.9rem;
  }

  .title-smaller {
    font-size: 0.9rem;
  }

  .hero-title-gradient {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .adventure-milestones {
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .milestone {
    padding: 0.875rem 1rem;
    gap: 0.5rem;
  }

  .milestone-number {
    font-size: 1.125rem;
  }

  .milestone-text {
    font-size: 0.6rem;
  }

  /* Terrain - 2 columns on small phones */
  .terrain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .terrain-type {
    padding: 0.625rem;
  }

  .terrain-icon {
    font-size: 1.25rem;
  }

  .terrain-name {
    font-size: 0.65rem;
  }

  .terrain-icon-wrap {
    width: 40px;
    height: 40px;
  }

  /* Cards */
  .expedition-image,
  .blog-image {
    height: 160px;
  }

  .expedition-content,
  .blog-content {
    padding: 1.25rem;
  }

  .expedition-title {
    font-size: 1.1rem;
  }

  .expedition-description {
    font-size: 0.85rem;
  }

  .expedition-details {
    flex-wrap: wrap;
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .btn-book {
    padding: 0.875rem;
  }

  /* Contact cards stacked */
  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .modal-content {
    margin: 0.5rem;
    max-height: 90vh;
  }

  .modal-header {
    padding: 1.5rem 1rem 1rem;
  }

  .modal-body {
    padding: 1rem;
  }

  /* Mobile nav */
  .mobile-nav-item {
    padding: 0.375rem 0.5rem;
  }

  .mobile-nav-icon {
    width: 20px;
    height: 20px;
  }

  .mobile-nav-label {
    font-size: 0.6rem;
  }
}

/* Small Phones */
@media (max-width: 360px) {
  .hero-title-gradient {
    font-size: 1.75rem;
  }

  .title-smaller {
    font-size: 0.8rem;
  }

  .adventure-milestones {
    gap: 0.5rem;
  }

  .milestone {
    padding: 0.75rem;
  }

  .milestone-icon {
    font-size: 1.25rem;
  }

  .milestone-number {
    font-size: 1rem;
  }

  .btn-adventure,
  .btn-outline-adventure {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .terrain-type {
    padding: 0.5rem;
  }

  .terrain-icon {
    font-size: 1.1rem;
  }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto !important;
    padding: 5rem 1rem 1.5rem;
  }

  .hero-title-gradient {
    font-size: 2rem;
  }

  .adventure-milestones {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .milestone {
    flex: 1;
    min-width: 150px;
  }

  .terrain-showcase {
    margin-top: 1.5rem;
  }

  .scroll-indicator {
    display: none;
  }
}

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

  .compass,
  .bird,
  .cloud,
  .orb {
    animation: none !important;
  }
}

/* ===================================
   ENHANCED ANIMATIONS - Engaging First Impression
   =================================== */

/* Stagger animation for cards */
.expedition-card,
.blog-card,
.contact-card,
.terrain-type,
.milestone {
  opacity: 0;
  transform: translateY(40px);
  animation: cardReveal 0.6s ease forwards;
}

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

/* Stagger delays */
.expedition-card:nth-child(1),
.blog-card:nth-child(1),
.terrain-type:nth-child(1),
.milestone:nth-child(1) {
  animation-delay: 0.1s;
}
.expedition-card:nth-child(2),
.blog-card:nth-child(2),
.terrain-type:nth-child(2),
.milestone:nth-child(2) {
  animation-delay: 0.2s;
}
.expedition-card:nth-child(3),
.blog-card:nth-child(3),
.terrain-type:nth-child(3),
.milestone:nth-child(3) {
  animation-delay: 0.3s;
}
.expedition-card:nth-child(4),
.terrain-type:nth-child(4) {
  animation-delay: 0.4s;
}
.expedition-card:nth-child(5),
.terrain-type:nth-child(5) {
  animation-delay: 0.5s;
}
.expedition-card:nth-child(6),
.terrain-type:nth-child(6) {
  animation-delay: 0.6s;
}

/* Enhanced card hover with glow */
.expedition-card:hover {
  box-shadow:
    0 25px 50px rgba(255, 107, 53, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.blog-card:hover {
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Image zoom on card hover */
.expedition-card:hover .expedition-image,
.blog-card:hover .blog-image {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

.expedition-image,
.blog-image {
  transition: transform 0.6s ease;
}

/* Section header entrance */
.section-header {
  opacity: 0;
  transform: translateY(30px);
  animation: sectionReveal 0.8s ease forwards;
}

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

/* Section tag with subtle bounce */
.section-tag {
  animation: tagBounce 2s ease-in-out infinite;
}

@keyframes tagBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Hero elements entrance animation */
.hero-badge {
  animation: slideDown 0.6s ease 0.2s backwards;
}

.hero-title {
  animation: slideDown 0.6s ease 0.3s backwards;
}

.hero-description {
  animation: slideDown 0.6s ease 0.4s backwards;
}

.hero-buttons {
  animation: slideDown 0.6s ease 0.5s backwards;
}

.adventure-milestones {
  animation: slideDown 0.6s ease 0.6s backwards;
}

.terrain-showcase {
  animation: slideDown 0.6s ease 0.7s backwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient text animation for hero */
.hero-title-gradient {
  background-size: 200% auto;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* Floating button animation */
.btn-adventure {
  animation: floatButton 3s ease-in-out infinite;
}

@keyframes floatButton {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.btn-adventure:hover {
  animation: none;
  transform: translateY(-3px);
}

/* Contact card icons pulse */
.contact-icon {
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
  background: var(--gradient-adventure);
  color: var(--white);
}

/* Smooth transitions for all interactive elements */
button,
a,
.btn,
.nav-link,
.expedition-card,
.blog-card,
.contact-card,
.terrain-type,
.milestone {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading state animation */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Gradient border animation for cards on focus */
.expedition-card:focus-within,
.blog-card:focus-within {
  outline: none;
  box-shadow:
    0 0 0 3px var(--cream),
    0 0 0 5px var(--primary),
    0 25px 50px rgba(255, 107, 53, 0.2);
}

/* Better touch feedback for mobile */
@media (hover: none) {
  .expedition-card:active,
  .blog-card:active,
  .terrain-type:active,
  .btn:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}
