/* =============================================
   Sherpa Expedition & Trekking - Global Styles
   ============================================= */

/* CSS Variables */
:root {
  --primary: #044b7f;
  --primary-dark: #033560;
  --accent: #d25c65;
  --accent-dark: #b94550;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a2e;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --border: #e0e0e0;
  --shadow: 0 2px 15px rgba(0,0,0,0.1);
  --shadow-hover: 0 5px 25px rgba(0,0,0,0.15);
  --radius: 8px;
  --max-width: 1300px;
  --transition: 0.3s ease;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

:focus-visible {
  outline: 3px solid #f4a261;
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   Topbar
   ============================================= */
.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-left a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar-left a:hover {
  color: var(--accent);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar-right a {
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 0.8rem;
  transition: background var(--transition);
}

.topbar-right a:hover {
  background: rgba(255,255,255,0.15);
}

.btn-pay-online {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 4px !important;
  padding: 4px 14px !important;
}

.btn-pay-online:hover {
  background: var(--accent-dark) !important;
}

/* =============================================
   Header / Navigation
   ============================================= */
.header {
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

.logo span {
  line-height: 1.2;
}

.logo small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-medium);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav > li {
  position: relative;
}

/* The mega dropdown centers itself on the whole header, not on this
   narrow trigger, so it must not create its own positioning context. */
.main-nav > li.mega-parent {
  position: static;
}

.main-nav > li > a {
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  transition: all var(--transition);
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--primary);
  background: rgba(4,75,127,0.06);
}

.nav-arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

.main-nav > li:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-white);
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
}

.main-nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: all var(--transition);
}

.dropdown a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 25px;
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 900px;
  max-width: min(900px, 92vw);
  max-height: calc(100vh - var(--header-height) - 70px);
  overflow-y: auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  padding: 26px 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
}

.mega-parent:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 24px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mega-row:nth-child(2) {
  grid-template-columns: repeat(3, 1fr);
}

.mega-row:last-child {
  grid-template-columns: repeat(3, 1fr);
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.mega-col h5 {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px dotted var(--border);
}

.mega-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--text-dark);
  transition: all var(--transition);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.mega-col a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.mega-col a.view-all {
  color: var(--accent);
  font-weight: 600;
  margin-top: 6px;
  font-size: 0.74rem;
}

.mega-col a.view-all:hover {
  color: var(--accent-dark);
}

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

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* Search */
.nav-search {
  position: relative;
}

.nav-search input {
  width: 190px;
  padding: 9px 38px 9px 16px;
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  border-radius: 22px;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: all var(--transition);
}

.nav-search input::placeholder {
  color: var(--text-light);
}

.nav-search input:focus {
  border-color: var(--primary);
  background: #fff;
  width: 240px;
  box-shadow: 0 0 0 4px rgba(4,75,127,0.08);
}

.nav-search button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-medium);
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Search results dropdown */
.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 360px;
  max-width: 90vw;
  max-height: 420px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  z-index: 200;
  padding: 8px;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.search-result-item:hover,
.search-result-item.active {
  background: var(--bg-light);
}

.search-result-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.search-result-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-title mark {
  background: rgba(210,92,101,0.18);
  color: var(--accent-dark);
  border-radius: 2px;
  padding: 0 1px;
}

.search-result-category {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.search-result-price {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.search-empty {
  padding: 16px 14px;
  font-size: 0.85rem;
  color: var(--text-medium);
  text-align: center;
  line-height: 1.6;
}

.search-empty a {
  color: var(--primary);
  font-weight: 600;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/HERO.webp') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,17,33,0.55) 0%, rgba(3,17,33,0.2) 40%, rgba(3,17,33,0.35) 70%, rgba(3,17,33,0.6) 100%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
  z-index: 1;
}

/* Mountains SVG background */
.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  z-index: 1;
}

.mountain-layer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* Animated clouds */
.clouds-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  filter: blur(1px);
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud-1 {
  width: 120px;
  height: 40px;
  top: 20%;
  animation: cloudMove 25s linear infinite;
}

.cloud-1::before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 20px;
}

.cloud-1::after {
  width: 70px;
  height: 45px;
  top: -20px;
  left: 40px;
}

.cloud-2 {
  width: 160px;
  height: 50px;
  top: 35%;
  animation: cloudMove 35s linear infinite;
  animation-delay: -10s;
  opacity: 0.7;
}

.cloud-2::before {
  width: 60px;
  height: 55px;
  top: -30px;
  left: 30px;
}

.cloud-2::after {
  width: 80px;
  height: 50px;
  top: -25px;
  left: 55px;
}

.cloud-3 {
  width: 100px;
  height: 35px;
  top: 15%;
  animation: cloudMove 30s linear infinite;
  animation-delay: -18s;
  opacity: 0.5;
}

.cloud-3::before {
  width: 40px;
  height: 40px;
  top: -20px;
  left: 15px;
}

.cloud-3::after {
  width: 55px;
  height: 38px;
  top: -18px;
  left: 35px;
}

.cloud-4 {
  width: 90px;
  height: 30px;
  top: 45%;
  animation: cloudMove 40s linear infinite;
  animation-delay: -5s;
  opacity: 0.6;
}

.cloud-4::before {
  width: 35px;
  height: 35px;
  top: -18px;
  left: 12px;
}

.cloud-4::after {
  width: 50px;
  height: 32px;
  top: -15px;
  left: 30px;
}

@keyframes cloudMove {
  0% { left: -200px; }
  100% { left: 110%; }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  padding: 0 20px;
}

/* Homepage hero: left-aligned layout with trust stats */
.hero-home {
  justify-content: flex-start;
  text-align: left;
}

.hero-home .hero-inner {
  width: 100%;
}

.hero-home .hero-content {
  max-width: 620px;
  padding: 0;
  text-align: left;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.28);
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.4);
}

.hero-stat span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.85;
  margin-top: 2px;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 5;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
}

.hero-scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { opacity: 1; top: 7px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 7px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 26px;
}

.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 700;
  text-shadow: 2px 3px 14px rgba(0,0,0,0.45);
  margin-bottom: 22px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.32rem;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 38px;
  opacity: 0.95;
  line-height: 1.5;
}

/* Hero buttons: refined, professional treatment (scoped to hero only) */
.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.hero-buttons .btn::after {
  content: '\2192';
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.hero-buttons .btn:hover::after {
  transform: translateX(4px);
}

.hero-buttons .btn-primary {
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(210,92,101,0.45);
}

.hero-buttons .btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(210,92,101,0.55);
}

.hero-buttons .btn-outline {
  border: 1.5px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}

.hero-buttons .btn-outline:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Page hero (inner pages) */
.page-hero {
  height: 45vh;
  min-height: 300px;
}

.page-hero .hero-content h1 {
  font-size: 2.8rem;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(210,92,101,0.4);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.btn-blue {
  background: var(--primary);
  color: #fff;
}

.btn-blue:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* =============================================
   Section Styles
   ============================================= */
.section {
  padding: 80px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-medium);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-title .accent-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* =============================================
   Reviews / Testimonials
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 15px;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: var(--text-dark);
}

.review-source {
  font-size: 0.8rem;
  color: var(--text-light);
}

.tripadvisor-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #00af87;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 8px;
}

/* =============================================
   Welcome Section
   ============================================= */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.welcome-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  background: url('../images/bienvenidos.webp') center/cover no-repeat;
  position: relative;
}

.welcome-image::after {
  display: none;
}

.welcome-text h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.welcome-text .since {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.welcome-text p {
  color: var(--text-medium);
  margin-bottom: 15px;
  line-height: 1.7;
}

/* =============================================
   Destinations Grid
   ============================================= */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.destination-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.destination-img {
  height: 300px;
  background: linear-gradient(135deg, #1a3a5c, #044b7f, #87CEEB);
  position: relative;
  overflow: hidden;
}

.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.destination-badges span {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-departure {
  background: var(--accent);
  color: #fff;
}

.badge-private {
  background: var(--primary);
  color: #fff;
}

.badge-group {
  background: #27ae60;
  color: #fff;
}

.destination-body {
  padding: 18px;
}

.destination-body h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.destination-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.destination-meta span {
  font-size: 0.75rem;
  padding: 3px 8px;
  background: var(--bg-light);
  border-radius: 4px;
  color: var(--text-medium);
  font-weight: 500;
}

.difficulty-moderate {
  background: #fff3cd !important;
  color: #856404 !important;
}

.destination-body > p {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destination-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.destination-price {
  font-size: 0.85rem;
  color: var(--text-medium);
}

.destination-price strong {
  color: var(--accent);
  font-size: 1.1rem;
}

.destination-reviews {
  font-size: 0.78rem;
  color: #f5a623;
  font-weight: 500;
}

.destination-actions {
  display: flex;
  gap: 8px;
}

.destination-actions .btn {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  padding: 8px 10px;
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   Trip of the Month
   ============================================= */
.trip-month-card {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trip-month-image {
  background: linear-gradient(135deg, #1a3a5c, #044b7f, #87CEEB);
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.trip-month-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.trip-month-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trip-month-info h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.trip-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
}

.trip-duration {
  color: var(--text-medium);
  margin-bottom: 20px;
}

.trip-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.trip-detail-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--text-medium);
}

/* =============================================
   Why Choose Us
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-point {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(4,75,127,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
}

.why-point h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.why-point p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.why-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 450px;
  background: linear-gradient(135deg, #044b7f, #1a5276, #2d6a9f);
  position: relative;
}

/* =============================================
   Expedition Section
   ============================================= */
.expedition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.expedition-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 400px;
}

.collage-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.collage-item:first-child {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #1a3a5c, #2d6a9f);
}

.collage-item:nth-child(2) {
  background: linear-gradient(135deg, #044b7f, #87CEEB);
}

.collage-item:nth-child(3) {
  background: linear-gradient(135deg, #2d6a9f, #1a3a5c);
}

.expedition-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.expedition-text p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* =============================================
   Team Section
   ============================================= */
.team-section {
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.team-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  opacity: 0.9;
  line-height: 1.7;
}

/* =============================================
   Blog Cards
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-image {
  height: 200px;
  position: relative;
}

.blog-card-image .placeholder-img {
  width: 100%;
  height: 100%;
}

.blog-card-body {
  padding: 25px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-card-body h3 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more:hover {
  color: var(--accent);
  gap: 8px;
}

/* =============================================
   Partners / Associations
   ============================================= */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.partner-logo {
  width: 120px;
  height: 60px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-light);
  text-align: center;
  padding: 5px;
  border: 1px solid var(--border);
}

/* =============================================
   Newsletter
   ============================================= */
.newsletter {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

.newsletter h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.newsletter p {
  opacity: 0.9;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 0.95rem;
}

.newsletter-form button {
  padding: 12px 25px;
  background: var(--accent);
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent-dark);
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--bg-dark);
  color: #ccc;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-col a {
  display: block;
  color: #aaa;
  font-size: 0.85rem;
  padding: 4px 0;
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #aaa;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.footer-contact-item .icon {
  color: var(--accent);
  min-width: 18px;
}

.footer-international {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-international h4 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.international-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.international-item {
  text-align: center;
  font-size: 0.85rem;
}

.international-item .flag {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.international-item strong {
  color: #fff;
  display: block;
}

.footer-bottom {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.payment-methods {
  display: flex;
  gap: 10px;
  align-items: center;
}

.payment-methods span {
  background: rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #aaa;
}

.footer-copyright {
  text-align: center;
  padding: 15px 0;
  font-size: 0.8rem;
  color: #777;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* =============================================
   Trek / Package Cards
   ============================================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}

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

.package-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.package-image .placeholder-img {
  width: 100%;
  height: 100%;
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.badge-easy { background: #27ae60; }
.badge-moderate { background: #f39c12; }
.badge-difficult { background: #e74c3c; }
.badge-strenuous { background: #8e44ad; }

.package-body {
  padding: 25px;
}

.package-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.package-body h3 a:hover {
  color: var(--primary);
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.package-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.package-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
}

.package-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

.package-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.package-rating .stars {
  color: #f5a623;
}

.package-actions {
  display: flex;
  gap: 10px;
}

.package-actions .btn {
  flex: 1;
  padding: 10px;
  font-size: 0.85rem;
  text-align: center;
}

/* =============================================
   Blog List (full page)
   ============================================= */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-list-item {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition);
}

.blog-list-item:hover {
  transform: translateY(-3px);
}

.blog-list-image {
  height: 100%;
  min-height: 250px;
}

.blog-list-image .placeholder-img {
  width: 100%;
  height: 100%;
}

.blog-list-body {
  padding: 30px 30px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-list-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-list-body h3 a:hover {
  color: var(--primary);
}

.blog-list-body p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.pagination a:hover,
.pagination .active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* =============================================
   About Page
   ============================================= */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.about-content h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: var(--primary);
}

.about-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
  align-items: center;
}

.about-image {
  height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.mission-card, .vision-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--bg-light);
}

.mission-card h3, .vision-card h3 {
  margin-top: 0;
}

/* =============================================
   Contact Page
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--bg-white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary);
}

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

.contact-info-item .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(4,75,127,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-info-item strong {
  display: block;
  margin-bottom: 3px;
}

.contact-info-item span {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.contact-form-card {
  background: var(--bg-white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

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

.captcha-box {
  border: 1px solid var(--border);
  padding: 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  margin-bottom: 20px;
}

.captcha-box input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

/* =============================================
   Why Us Page
   ============================================= */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-us-card {
  padding: 35px;
  border-radius: var(--radius);
  background: var(--bg-white);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.why-us-card:hover {
  transform: translateY(-5px);
}

.why-us-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(4,75,127,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.why-us-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.why-us-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* =============================================
   Expedition Page
   ============================================= */
.expedition-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.expedition-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 15px;
}

.peak-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.peak-category {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition);
}

.peak-category:hover {
  transform: translateY(-5px);
}

.peak-category-header {
  padding: 20px;
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.peak-category-header h3 {
  font-size: 1.3rem;
}

.peak-category-body {
  padding: 20px;
}

.peak-category-body a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-medium);
  transition: all var(--transition);
}

.peak-category-body a:last-child {
  border-bottom: none;
}

.peak-category-body a:hover {
  color: var(--primary);
  padding-left: 8px;
}

/* =============================================
   Package Detail Page
   ============================================= */
.package-detail {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}

.package-main {
  min-width: 0;
}

.package-main h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.package-main h3 {
  font-size: 1.2rem;
  margin: 25px 0 10px;
  color: var(--primary);
}

.package-main p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 15px;
}

.package-main ul, .package-main ol {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 25px;
}

.package-main li {
  margin-bottom: 6px;
}

/* Trip Facts Sidebar */
.trip-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.trip-facts {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trip-facts-header {
  background: var(--primary);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.trip-facts-header .price {
  font-size: 2rem;
  font-weight: 700;
}

.trip-facts-header .price small {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.8;
}

.trip-facts-body {
  padding: 20px;
}

.trip-fact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.trip-fact-item:last-child {
  border-bottom: none;
}

.trip-fact-item .label {
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trip-fact-item .value {
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

.trip-facts-actions {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trip-facts-actions .btn {
  text-align: center;
  width: 100%;
}

/* Group Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}

.pricing-table th,
.pricing-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.pricing-table tr:nth-child(even) {
  background: var(--bg-light);
}

.pricing-table tr:hover {
  background: rgba(4,75,127,0.05);
}

/* Itinerary */
.itinerary-list {
  margin: 20px 0;
}

.itinerary-day {
  padding: 18px 20px;
  border-left: 3px solid var(--primary);
  margin-bottom: 12px;
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: all var(--transition);
}

.itinerary-day:hover {
  border-left-color: var(--accent);
  box-shadow: var(--shadow);
}

.itinerary-day .day-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.itinerary-day .day-title span {
  color: var(--primary);
  font-weight: 700;
}

.itinerary-day .day-desc {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Includes / Excludes */
.includes-excludes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 20px 0;
}

.includes-list, .excludes-list {
  padding: 25px;
  border-radius: var(--radius);
  background: var(--bg-light);
}

.includes-list h3, .excludes-list h3 {
  margin-top: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid;
  margin-bottom: 15px;
}

.includes-list h3 {
  color: #27ae60;
  border-color: #27ae60;
}

.excludes-list h3 {
  color: #e74c3c;
  border-color: #e74c3c;
}

.includes-list li::marker {
  color: #27ae60;
}

.excludes-list li::marker {
  color: #e74c3c;
}

/* Equipment Checklist */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.equipment-category {
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.equipment-category h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.equipment-category ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.equipment-category li {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* FAQs Accordion */
.faq-list {
  margin: 20px 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 15px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-light);
  transition: all var(--transition);
}

.faq-question:hover {
  background: rgba(4,75,127,0.05);
}

.faq-question .faq-toggle {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform var(--transition);
}

.faq-item.active .faq-question {
  background: var(--primary);
  color: #fff;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #fff;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 500px;
}

.faq-answer p {
  font-size: 0.9rem;
  margin: 0;
}

/* Reviews on Detail Page */
.review-item {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 15px;
  background: var(--bg-white);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 600;
  color: var(--text-dark);
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.review-stars {
  color: #f5a623;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.gallery-item {
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}

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

.gallery-item .placeholder-img {
  width: 100%;
  height: 100%;
}

/* Enquiry Form (sidebar) */
.enquiry-form {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 25px;
  margin-top: 20px;
}

.enquiry-form h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 15px;
  text-align: center;
}

.enquiry-form .form-group {
  margin-bottom: 12px;
}

.enquiry-form .form-group input,
.enquiry-form .form-group select,
.enquiry-form .form-group textarea {
  padding: 10px 12px;
  font-size: 0.85rem;
}

.enquiry-form textarea {
  height: 80px;
}

/* Good to Know */
.good-to-know {
  margin: 20px 0;
}

.good-to-know .info-item,
.gtk-item {
  padding: 15px 20px;
  margin-bottom: 10px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}

.good-to-know .info-item h4,
.gtk-item h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.good-to-know .info-item p,
.gtk-item p {
  font-size: 0.88rem;
  margin: 0;
}

/* Reviews */
.reviews-summary {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.reviews-score {
  font-size: 2.5rem;
  font-weight: 700;
  color: #27ae60;
}

.reviews-summary p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.review-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.review-location,
.review-date {
  font-size: 0.78rem;
  color: var(--text-medium);
  margin-right: 10px;
}

.review-item .review-stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 8px;
}

.review-item h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-style: italic;
}

.review-item > p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

/* Sidebar Benefits */
.sidebar-benefits {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.benefit-item {
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

.benefit-item:last-child {
  border-bottom: none;
}

/* Package Detail Tabs */
.package-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.package-tab {
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.package-tab:hover {
  color: var(--primary);
}

.package-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Map container */
.map-container {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 20px 0;
  background: linear-gradient(135deg, #e8f4f8, #d4e6f1, #aed6f1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container .map-placeholder {
  text-align: center;
  color: var(--text-medium);
}

.map-container .map-placeholder .icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Package detail responsive */
@media (max-width: 1024px) {
  .package-detail {
    grid-template-columns: 1fr 300px;
  }

  .includes-excludes {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .package-detail {
    grid-template-columns: 1fr;
  }

  .trip-sidebar {
    position: static;
    order: -1;
  }

  .package-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0;
  }

  .package-tab {
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 0.85rem;
  }

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

  .gallery-item {
    height: 150px;
  }
}

/* =============================================
   Placeholder Images
   ============================================= */
.placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder-mountain {
  background: linear-gradient(180deg, #87CEEB 0%, #5BA3D9 30%, #3B7DD8 45%, #044b7f 55%, #1a5276 65%, #2C3E50 80%, #1a1a2e 100%);
}

.placeholder-trek {
  background: linear-gradient(135deg, #2d6a9f 0%, #1a5276 40%, #27ae60 70%, #2ecc71 100%);
}

.placeholder-expedition {
  background: linear-gradient(135deg, #1a1a2e 0%, #044b7f 30%, #87CEEB 60%, #ffffff 95%);
}

.placeholder-blog-1 {
  background: linear-gradient(135deg, #e74c3c, #c0392b, #e67e22);
}

.placeholder-blog-2 {
  background: linear-gradient(135deg, #2ecc71, #27ae60, #1abc9c);
}

.placeholder-blog-3 {
  background: linear-gradient(135deg, #3498db, #2980b9, #8e44ad);
}

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

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

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

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

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .topbar {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right var(--transition);
    overflow-y: auto;
    align-items: stretch;
    gap: 0;
    z-index: 1000;
  }

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

  .main-nav > li > a {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 15px;
    background: var(--bg-light);
    border-radius: 0;
  }

  .dropdown.active {
    display: block;
  }

  .nav-search {
    margin-top: 15px;
  }

  .nav-search input {
    width: 100%;
  }

  .nav-search input:focus {
    width: 100%;
  }

  .search-results {
    position: fixed;
    top: calc(var(--header-height) + 6px);
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    max-height: calc(100vh - var(--header-height) - 20px);
  }

  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-home {
    justify-content: center;
    text-align: center;
  }

  .hero-home .hero-content {
    max-width: 100%;
    text-align: center;
  }

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

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .hero-scroll-cue {
    display: none;
  }

  .page-hero {
    height: 35vh;
    min-height: 250px;
  }

  .page-hero .hero-content h1 {
    font-size: 2rem;
  }

  .welcome-grid,
  .why-grid,
  .expedition-grid,
  .about-grid,
  .trip-month-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-item {
    grid-template-columns: 1fr;
  }

  .blog-list-body {
    padding: 20px;
  }

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

  .packages-grid,
  .blog-grid,
  .reviews-grid,
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .peak-categories {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

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

  .mission-vision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .section-title h2 {
    font-size: 1.4rem;
  }

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

  .international-grid {
    gap: 15px;
  }
}

/* =============================================
   Peaks Interactive Map
   ============================================= */

.peaks-map-container {
  margin-top: 40px;
}

.peaks-map-img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   WhatsApp Floating Button
   ============================================= */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

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

/* =============================================
   Form honeypot (spam trap, hidden from real visitors)
   ============================================= */

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* =============================================
   Print / Download PDF button (package pages)
   ============================================= */

.btn-print {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-print:hover {
  background: var(--primary);
  color: #fff;
}

@media print {
  .topbar,
  .header,
  .whatsapp-float,
  .package-tabs,
  .trip-sidebar,
  .newsletter,
  .footer,
  .hero .clouds-container,
  .hero .hero-mountains {
    display: none !important;
  }

  .hero {
    height: auto;
    min-height: 0;
    color: #111;
    padding: 30px 0;
  }

  .hero-bg,
  .hero-bg::after {
    display: none !important;
  }

  .hero-content h1,
  .hero-content p {
    text-shadow: none;
    color: #111;
  }

  .package-detail {
    display: block;
  }

  .tab-content {
    display: block !important;
    page-break-inside: avoid;
    margin-bottom: 25px;
  }

  .tab-content h2 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 6px;
  }

  body {
    font-size: 12pt;
  }

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

/* Accessibility and navigation hardening */
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 14px;
  color: #fff;
  background: var(--primary-dark);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-navigation {
  display: flex;
  align-items: center;
}

.main-nav > li > .nav-toggle {
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.main-nav > li > .nav-toggle:hover,
.main-nav > li > .nav-toggle:focus-visible,
.main-nav > li.open > .nav-toggle {
  color: var(--primary);
  background: rgba(4,75,127,0.06);
}

.main-nav > li:focus-within .dropdown,
.main-nav > li.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-parent:focus-within .mega-dropdown,
.mega-parent.open .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.main-nav > li.open .nav-arrow,
.main-nav > li:focus-within .nav-arrow {
  transform: rotate(180deg);
}

.hamburger {
  border: 0;
  background: transparent;
}

body.nav-open {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  text-align: left;
}

.form-privacy {
  margin: 12px 0 16px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.form-privacy label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-privacy input {
  width: auto;
  margin-top: 4px;
  flex: 0 0 auto;
}

.form-privacy a {
  color: var(--primary);
  text-decoration: underline;
}

[aria-invalid="true"] {
  border-color: #b42318 !important;
  box-shadow: 0 0 0 1px #b42318;
}

[hidden] {
  display: none !important;
}

@media (max-width: 768px) {
  .site-navigation {
    margin-left: auto;
  }

  .logo-img {
    height: 56px;
  }

  .main-nav {
    width: min(300px, 100vw);
    padding-top: 130px;
  }

  .nav-search {
    display: none;
  }

  body.nav-open .nav-search {
    position: fixed;
    top: 74px;
    right: 20px;
    z-index: 1002;
    display: block;
    width: min(260px, calc(100vw - 40px));
    margin: 0;
  }

  body.nav-open .nav-search input,
  body.nav-open .nav-search input:focus {
    width: 100%;
  }

  body.nav-open .search-results {
    top: 120px;
  }

  .main-nav > li > .nav-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .main-nav > li.open > .dropdown,
  .dropdown.active {
    display: block;
  }

  .mega-dropdown,
  .mega-parent:focus-within .mega-dropdown,
  .mega-parent.open .mega-dropdown {
    position: static;
    display: none;
    width: auto;
    max-width: none;
    max-height: none;
    padding: 12px 15px;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: var(--bg-light);
  }

  .mega-dropdown.active,
  .mega-parent.open .mega-dropdown {
    display: block;
  }

  .mega-row,
  .mega-row:nth-child(2),
  .mega-row:last-child {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
