/* =============================================
   TrekkwithVishal – Light Blue Design System v2
   ============================================= */

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

/* ── CSS Variables ── */
:root {
  --blue: #1565c0;
  --blue-dark: #0d47a1;
  --blue-mid: #1976d2;
  --blue-light: #42a5f5;
  --blue-pale: #e3f2fd;
  --blue-bg: #f0f7ff;

  --orange: #e8630a;
  --orange-light: #ff7c24;

  --white: #ffffff;
  --off-white: #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-400: #94a3b8;
  --grey-600: #475569;
  --dark: #0f172a;
  --black: #000000;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-xs: 0 1px 4px rgba(21, 101, 192, 0.08);
  --shadow-sm: 0 2px 12px rgba(21, 101, 192, 0.10);
  --shadow-md: 0 4px 24px rgba(21, 101, 192, 0.14);
  --shadow-lg: 0 8px 40px rgba(21, 101, 192, 0.18);
  --shadow-xl: 0 16px 64px rgba(21, 101, 192, 0.22);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  height: 80px;
  width: auto;
  animation: pulse 1.5s infinite ease-in-out;
  filter: brightness(0) invert(1);
}

@keyframes pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(0.85);
    opacity: 0.7;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--grey-600);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--grey-100);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-light);
  border-radius: 3px;
}

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 88px 0;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--blue-mid);
}

.section-title .accent {
  color: var(--orange);
}

.section-sub {
  font-size: 1rem;
  color: var(--grey-400);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.75;
}

/* ── Chip / pill tag ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.chip-blue {
  background: var(--blue-pale);
  color: var(--blue-dark);
}

.chip-orange {
  background: #fff3e0;
  color: #e65100;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.35);
}

.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(21, 101, 192, 0.45);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 99, 10, 0.35);
}

.btn-orange:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue-pale);
}

.btn-outline-blue:hover {
  background: var(--blue-pale);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-green {
  background: #2e7d32;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
}

.btn-green:hover {
  background: #1b5e20;
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--grey-100);
  color: var(--dark);
  border: 2px solid var(--grey-200);
}

.btn-ghost:hover {
  background: var(--blue-pale);
  border-color: var(--blue-light);
  color: var(--blue);
}

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

#navbar.scrolled,
#navbar.menu-open {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-200);
  box-shadow: 0 2px 20px rgba(21, 101, 192, 0.08);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

#navbar:not(.scrolled):not(.menu-open) .nav-logo-img {
  filter: brightness(0) invert(1);
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 3px 12px rgba(21, 101, 192, 0.3);
}

.nav-logo .logo-text {
  line-height: 1.1;
}

.nav-logo .brand {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition);
}

#navbar.scrolled .nav-logo .brand,
#navbar.menu-open .nav-logo .brand {
  color: var(--dark);
}

.nav-logo .tagline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

#navbar.scrolled .nav-logo .tagline,
#navbar.menu-open .nav-logo .tagline {
  color: var(--grey-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 7px 14px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

#navbar.scrolled .nav-links a {
  color: var(--grey-600);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active {
  background: var(--blue-pale);
  color: var(--blue);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 3px 14px rgba(232, 99, 10, 0.4);
}

.btn-book:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#navbar.scrolled .nav-hamburger span,
#navbar.menu-open .nav-hamburger span {
  background: var(--dark);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0f172a;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-top: 80px;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0px;
  transition: var(--transition);
  padding: 5px 20px;
  line-height: 1.1;
  text-align: center;
}

.nav-mobile-menu a:hover {
  color: var(--orange);
  background: rgba(255, 255, 255, 0.04);
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 5%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: heroZoom 20s infinite alternate linear;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(13, 71, 161, 0.72) 0%,
      rgba(21, 101, 192, 0.45) 40%,
      rgba(13, 71, 161, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.hero-title .accent {
  color: var(--orange);
}

.hero-title .blue-glow {
  color: #90caf9;
}

.hero-tagline {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: float-ud 2.2s ease-in-out infinite;
}

.scroll-indicator .mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.scroll-indicator .mouse-inner {
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scroll-wheel 1.6s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes float-ud {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* ── Stats Bar ── */
.hero-stats {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-top: 3px solid var(--blue-pale);
  padding: 28px 0;
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.08);
}

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

.stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid var(--grey-200);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.stat-num span {
  color: var(--orange);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ═══════════════════════════════
   BROTHERS – DUO CARDS
═══════════════════════════════ */
#brothers {
  background: var(--off-white);
}

.insta-profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

.duo-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.duo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  opacity: 0;
  transition: var(--transition);
}

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

.duo-card:hover::before {
  opacity: 1;
}

.duo-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 4px;
  /* Space for the gradient ring */
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  flex-shrink: 0;
  box-shadow: 0 12px 32px rgba(220, 39, 67, 0.15);
  transition: var(--transition);
  position: relative;
}

.duo-avatar::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--white);
  border-radius: 50%;
  z-index: 1;
}

.duo-avatar img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-sizing: border-box;
}

.duo-card:hover .duo-avatar {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 16px 40px rgba(220, 39, 67, 0.25);
}

.duo-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.duo-id {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--dark);

  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.duo-followers {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.duo-followers svg {
  width: 16px;
  height: 16px;
}

.btn-sm-insta {
  padding: 12px 28px;
  font-size: 0.95rem;
  align-self: flex-start;
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
  transition: var(--transition);
}

.btn-sm-insta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
  color: white;
}

/* ═══════════════════════════════
   WHY US – light cards on white bg
═══════════════════════════════ */
#why-us {
  background: var(--white);
}

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

.why-card {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-pale);
}

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

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--blue);
  transform: scale(1.05);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 9px;
}

.why-desc {
  font-size: 0.86rem;
  color: var(--grey-400);
  line-height: 1.7;
}

/* ═══════════════════════════════
   TREK CARDS
═══════════════════════════════ */
.treks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.trek-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-pale);
}

.trek-thumb {
  position: relative;
  height: 210px;
  overflow: hidden;
}

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

.trek-card:hover .trek-thumb img {
  transform: scale(1.07);
}

.trek-difficulty {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.diff-easy {
  background: rgba(255, 255, 255, 0.9);
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.diff-moderate {
  background: rgba(255, 255, 255, 0.9);
  color: #e65100;
  border: 1px solid #ffcc80;
}

.diff-hard {
  background: rgba(255, 255, 255, 0.9);
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

.trek-body {
  padding: 20px;
}

.trek-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.trek-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.1;
}

.trek-desc {
  font-size: 0.83rem;
  color: var(--grey-400);
  line-height: 1.63;
  margin-bottom: 12px;
}

.trek-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.trek-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--grey-400);
}

.trek-meta-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}

.trek-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 13px;
}

.trek-price span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--grey-400);
  font-family: var(--font-body);
}

.trek-card .btn {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════
   TABS
═══════════════════════════════ */
.category-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--grey-600);
  background: var(--grey-100);
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tab-btn:hover {
  border-color: var(--blue-light);
  color: var(--blue);
}

.tab-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.3);
}

/* ═══════════════════════════════
   TREKS SWIPER CAROUSEL
═══════════════════════════════ */
.treks-swiper {
  padding-bottom: 52px !important;
}

.treks-swiper .swiper-button-prev,
.treks-swiper .swiper-button-next {
  color: var(--blue);
  background: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  top: 38%;
}

.treks-swiper .swiper-button-prev::after,
.treks-swiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 900;
}

.treks-swiper .swiper-pagination-bullet-active {
  background: var(--blue);
}

.trek-carousel-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.trek-carousel-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-pale);
}

.tcc-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.trek-carousel-card:hover .tcc-thumb img {
  transform: scale(1.08);
}

.tcc-emoji {
  font-size: 3.5rem;
  line-height: 1;
}

.tcc-body {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tcc-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.tcc-desc {
  font-size: 0.8rem;
  color: var(--grey-400);
  line-height: 1.62;
  flex: 1;
  margin-bottom: 14px;
}

.tcc-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  align-self: flex-start;
  transition: var(--transition);
}

.trek-carousel-card:hover .tcc-wa {
  background: #1db954;
}

/* ═══════════════════════════════
   GALLERY – keeps dark bg for drama
═══════════════════════════════ */
#gallery {
  background: var(--dark);
}

#gallery .section-title {
  color: var(--white);
}

#gallery .section-sub {
  color: rgba(255, 255, 255, 0.45);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 71, 161, 0.75) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
#testimonials {
  background: var(--blue-bg);
}

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

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  position: relative;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 22px;
  font-family: Georgia, serif;
  font-size: 72px;
  color: var(--blue-pale);
  line-height: 1;
  z-index: 0;
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.testi-star {
  color: #f5a623;
  font-size: 1rem;
}

.testi-text {
  font-size: 0.88rem;
  color: var(--grey-600);
  line-height: 1.75;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--blue);
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.88rem;
}

.testi-info {
  font-size: 0.72rem;
  color: var(--grey-400);
}

/* ═══════════════════════════════
   COMMUNITY SECTION
═══════════════════════════════ */
#community {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
}

.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.community-text .section-title {
  color: var(--white);
}

.insta-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.insta-post {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--blue-dark);
}

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

.insta-post:hover img {
  transform: scale(1.1);
}

.insta-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 71, 161, 0.55);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-post:hover .insta-post-overlay {
  opacity: 1;
}

.insta-post-overlay svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.insta-accounts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.insta-account-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: var(--transition);
}

.insta-account-link:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

.insta-account-link .insta-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insta-account-link .insta-av svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.insta-account-link .insta-username {
  font-weight: 700;
  font-size: 0.9rem;
}

.insta-account-link .insta-followers {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════
   CTA SECTION
═══════════════════════════════ */
#cta {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cta_mountain_bg.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.86) 0%, rgba(21, 101, 192, 0.72) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
}

.cta-content .section-title {
  color: var(--white);
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 10px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  font-size: 1rem;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
#contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--grey-400);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-item-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item-text strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.84rem;
}

.contact-item-text span {
  color: var(--grey-400);
  font-size: 0.82rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 15px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.12);
}

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

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

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 24px;
}

.footer-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-top-center {
  margin-bottom: 24px;
}

.footer-logo-center img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 12px;
  filter: brightness(0) invert(1);
}

.footer-desc-center {
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.footer-nav-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.footer-nav-center a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.footer-nav-center a:hover {
  color: var(--orange);
}

.footer-bottom-center {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* ═══════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════ */
#float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: wa-entry 0.6s 1s ease both;
}

@keyframes wa-entry {
  from {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

#float-wa:hover {
  transform: scale(1.12);
}

#float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.22);
  animation: wa-pulse 2s ease-in-out infinite;
}

@keyframes wa-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  70% {
    transform: scale(1.3);
    opacity: 0;
  }
}

#float-wa svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  position: relative;
  z-index: 1;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 71, 161, 0.82) 0%, rgba(13, 71, 161, 0.65) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 60px;
}

.page-header-content .section-title {
  color: var(--white);
  margin-bottom: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
  transition-delay: 0.4s;
}

.fade-up:nth-child(6) {
  transition-delay: 0.5s;
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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


}

@media(max-width:900px) {
  .treks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insta-profiles-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .duo-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
    gap: 24px;
  }

  .btn-sm-insta {
    align-self: center;
  }

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

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

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

  .community-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stats-grid .stat-item:nth-child(3) {
    border-top: 1px solid var(--grey-200);
  }

  .stats-grid .stat-item:nth-child(4) {
    border-top: 1px solid var(--grey-200);
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex !important;
    z-index: 1001;
  }

  .nav-right .btn-book {
    padding: 6px 10px;
    font-size: 0.68rem;
  }

  /* Shrink logo on mobile */
  .nav-logo-img {
    height: 32px;
  }

  .nav-logo .brand {
    font-size: 0.85rem;
  }

  #navbar {
    padding: 6px 0;
  }
}

@media(max-width:600px) {
  .section-pad {
    padding: 60px 0;
  }

  .hero-content {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .hero-title {
    font-size: 2.6rem;
    line-height: 1.05;
    margin-bottom: 10px;
  }

  .hero-tagline {
    font-size: 0.72rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    white-space: nowrap; /* Force single line */
  }

  .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    margin-bottom: 16px;
    white-space: nowrap; /* Force single line */
  }

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

  .duo-avatar {
    width: 140px;
    height: 140px;
  }

  .duo-id {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

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

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

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    margin: 0;
  }
}